Apex 5 scatter marker chart dynamic series name - oracle-apex-5

Is there a way to dynamically display the series name in Apex Scatter Marker chart type?
I tried using hidden page item but the chart is not rendering at all.

got it finally by modifying the generated XML:
...
..

Related

Match two trellis pages between two different graphs

I want to have on the same page a pie chart and a bar chart, with trellis pages.
They both have 5 columns as trellis, so 5 different pages that you can visualize by scrolling down.
However, I would like to display the same pages at the same time for both graphs. For instance, let's imagine I'm on the pie chart, I scroll down one page - and so my pie chart is on page2 - I want my bar chart to automatically go to page 2 as well
I tried to use markings but although it links a bit the two graphs, it doesn't change the trellis pages automatically
Does anyone know how to do this ?
as #scsimon mentions, there's no native feature (nor API method, AFAIK) for this using a trellis. however, you can create a Property Control (I'd use a dropdown) in a Text Area, then use the same Document Property to your chart in a Limit By expression.
little more detail, assuming a data table like this:
A B CATEGORY
1 2 red
3 4 red
5 6 green
7 8 green
9 10 blue
11 12 blue
add a Text Area to the page and edit its contents
add a Property Control
click New to create a Document Property, give it a type String and a name category
change Set property value through to Unique values in column and choose the "category" column and click OK
save the Text Area contents
in your Pie Chart's Properties dialog, go to the Data page and look for Limit data using expression. click Edit
set the expression to: [CATEGORY] = "${category}" (don't forget the quotes or the Document Property won't be treated as a string and you'll get an error)
repeat steps 6 & 7 for your other chart
As #scsimon mentioned in the comments, it seems to be impossible. I found a way to have a similar representation though without using trellis visualization, by using text arena
I created a list box that contains the 5 columns I want to visualize, and then I select this list box as the vertical axis variable of the bar chart and the sector size of the pie chart
Then, by clicking on my list box, I can have a synchronized Pie chart and Bar chart (a bit different from what I expected but it also has some advantages like a multiple scale since a new graph is generated independently of the other variables)

Create custom labels under a graph

I've got different series in my project that I'd like to show in my graph. N element of each series are related to one "parent element", and we've got M parent elements to show up. I'm trying to underline this relationship creating a "label" under the x-axis.
Here is what I am trying to do
The Red,Yellow And Blue are the 3 series I'd wish create and as you can see they could have a different amount of point related to the "item". The label I'm trying to create is the one under x axis.
I'm trying to understand how to dynamically create a "label" or "customlabel" item with a simple border propriety under the x-axis. The related code should allow me to set up the initial value and last one, but I'm unable to setup the border.
Dim myLabel As New DataVisualization.Charting.CustomLabel
myLabel.FromPosition = 0
myLabel.ToPosition = 5

rdlc: Display percentage on pie chart

I'm using Visual Studio 2010 reporting to generate a report which has a table and a pie chart. Both work just fine except that for the pie chart, I'm to put the % value on each pie chart slice.
1. Is this even possible?
2. If it is, how do I do it?
Thanks
To put the % value on each pie chart slice do this (as shown here):
On the design surface, right-click on the pie and select Show Data Labels. The data labels should appear within each slice on the pie chart.
On the design surface, right-click on the labels and select Series Label Properties. The Series Label Properties dialog box appears.
Type #PERCENT for the Label data option.
Beware: If you use multiple data fields like this:
you need to move every field to first position and perform above steps as shown here otherwise you end up with only one pie chart slice showing the percentage and the others are blank...

Dundas Dashboards Charts

I am maintaining a product developed on Dundas Dashboards v 2.5. In one of the dashboards they are rendering data in Pie Charts and Bar Charts. For bar charts on the y axis the values appear as Million. I mean 6M , 8M. But in pie charts the value shows up as 6000000 for 6M.
Is there any setting in Bar Charts that displays data as 6M and 8M etc. One more thing to note is that they are using the same dataset to display the data. So, I am assuming that there is some setting at the chart level.
Any ideas and suggestions are appreciated!
Select the bar chart in the dashboard designer. In the property grid, drill into the "Y Axes" property, and from there into the "Scale" property. At the bottom of the Scale properties, there is one property called "Label Format". Copy this value, and paste it into the same property for the pie chart.
See here for more info: http://support.dundas.com/Dashboard3.Chart_Usage.ashx

how to pass array values to dojo pie chart using javascript

Please can any one help me out how to pass array values to the dojo pie chart using javascript..
I need to update the pie chart on fly. on selection on user from gridivew..
I can help with Pie chart:
my_chart.
// let's update data
updateSeries("your series name here", your_data_here).
// finished updating, now let's show the changes
render();
Adding a series with the same name will work too:
my_chart.
// let's update data
addSeries("your series name here", your_data_here).
// finished updating, now let's show the changes
render();