Ashish sinha Report post Posted May 14, 2014 Hello All, I need to set max value of Y axis up to 100. I am setting it yAxisMaxValue=100. But it is not working. Please help me to resolve this issue. Thanks Ashish Share this post Link to post Share on other sites
Bindhu Report post Posted May 21, 2014 Hi, You have to set sYAxisMaxValue to 100 since it is the secondary axis. Hope this helps! Share this post Link to post Share on other sites
zeoxe Report post Posted June 11, 2014 Hi, I have a chart where a use a fusion chart to compare two entities. But when one entity goes 100% the other goes 0% the max value in y axis tends to move from 110 from 100. The screenshot is attached. Attaching the json data { "chart": { "palette": "2", "caption": "PSI Comparison with previous year", "showlabels": "1", "showvalues": "0", "numbersuffix": "%", "showsum": "1", "decimals": "1", "forcedecimals":"1", "showborder": "1", "borderColor": "4F81BD", "borderThickness":"2", "borderAlpha":"60", "useroundedges": "1", "legendborderalpha": "0", "plotSpacePercent" : "0", "yAxisMinValue" : "0", "yAxisMaxValue" : "100", "xAxisMaxValue" : "100.000001" }, "categories": [ { "category": [] } ], "dataset": [] } Please advice Share this post Link to post Share on other sites
Bindhu Report post Posted June 12, 2014 Hi, We are unable to replicate the issue. Please find attached screen shot. Can you please share your complete JSON data for testing purposes? Also, please let us know the chart dimensions being used. Share this post Link to post Share on other sites
zeoxe Report post Posted June 12, 2014 { "chart":{"palette":"2", "caption":"PSI Comparison with previous year", "showlabels":"1", "labeldisplay":"ROTATE", "labelStep":"5", "showvalues":"0", "numbersuffix":"%", "showsum":"1", "decimals":"1", "forcedecimals":"1", "showborder":"1", "borderColor":"4F81BD", "borderThickness":"2", "borderAlpha":"60", "useroundedges":"1", "legendborderalpha":"0", "plotSpacePercent":"0", "yAxisMinValue":"0", "yAxisMaxValue":"100", "xAxisMinValue":"20", "xAxisMaxValue":"10" }, "categories":[ { "category":[ { "label":"12-Jun-2014" }, { "label":"12-Jun-2013" } ] } ], "dataset":[ { "seriesname":"Completly satisfied", "color":"A3CC52", "showvalues":0, "data":[ { "value":"66.59" }, { "value":"81.53" } ] }, { "seriesname":"Very satisfied", "color":"88B188", "showvalues":0, "data":[ { "value":"25.65" }, { "value":"16.43" } ] }, { "seriesname":"Moderatly satisfied", "color":"E6E65C", "showvalues":0, "data":[ { "value":"6.26" }, { "value":"1.91" } ] }, { "seriesname":"Slightly satisfied", "color":"FF6600", "showvalues":0, "data":[ { "value":"1.49" }, { "value":"0.09" } ] }, { "seriesname":"Not satisfied", "color":"D63333", "showvalues":0, "data":[ { "value":"0.00" }, { "value":"0.05" } ] } ] } Share this post Link to post Share on other sites
Bindhu Report post Posted June 12, 2014 Hi, Thank you for the JSON data. When you add up the values for 12-Jun-2013 series, it adds upto 100.01 and that is why yAxisMaxValue definition is overridden. If the sum value is more than 100 even by 0.001, then the charting engine will override the yAxisMaxValue set and sets the max value to a little higher value to accommodate space for the higher value data plot.Hope this clarifies. Share this post Link to post Share on other sites