Fusioncharts Free Considerations
Fusioncharts Free note The project in the previous period of time to use the Fusioncharts the plug-in, today to open the Web site unexpectedly found a line chart error, Y axis are nanm, after a query on the Internet finally learned why. The original free version of the line chart and the bar chart must be set to the maximum display value, no
Fusioncharts Free Considerations
In the previous period of time to do the project to use the Fusioncharts free plug-in, today to open the site after work to find the line chart error,
Y-axis are nanm, after a query on the Internet finally learned why.
The original free version of the line chart and the column must be set to display the maximum value, otherwise, if the data presented to the chart is all 0 o'clock, there will be a large number of "Nanm" on the y-axis of the chart, that is, to assign the property Yaxismaxvalue, Yaxisminvalue assignment, Otherwise, there will be nanm;
When the data source supplied to the chart is 0, an error is given.
<dataset renderas= ' line ' seriesname= ' number of users ' color= ' f1683c ' anchorbordercolor= ' f1683c ' anchorbgcolor= ' F1683C ' >
<set value= ' 0 '/>
<set value= ' 0 '/>
</dataset>
In addition, JSON-formatted data is not supported in the free version, and only XML-formatted data sources are supported.
Fusioncharts Free Considerations