After detailed analysis of the chart tool, I first like to say that it is very very cool. I would like to confirm if the following features are available.
- Make a broken axis chart
- Find the color of a particular series
- Plot data in different format without reformatting
- Change the size of symbols
Note: Let me give an example to explain different format:
Say I have the marks scored by a student in math over a few years,
{
Name: Andrew,
Score: [
{grade:1, mark:98}
{grade:2, mark:99}
{grade:3, mark:100}
{grade:4, mark:77}
]
}
And I wish to plot the graph with ‘x-axis’ as Grades and ‘y-axis’ as the mark scored and ofcourse the series in this example is ‘Andrew’, is it possible to do so without re-formatting the data into:
[{grade:1, Andrew:98}, {grade:2, Andrew:99}, {grade:3, Andrew:100}, {grade:4, Andrew:77}]