rsivamanickam Report post Posted September 17, 2008 Hi All, We have the option to setting the 'Y' axis starting and Ending values to use . The fusion chart automatically divide the intervals like 0, 20, 40, 60, 80, and 100. But i want to give the intervals as am like 0, 10, 20, 30... etc. Thanks, Maalan Share this post Link to post Share on other sites
Arindam Report post Posted September 17, 2008 (edited) Hi, Could you please follow this way? <Chart numDivLines='10' yAxisMaxValue='100' yAxisMinValue='0' > <set value='20' label='class 1' /> <set value='40' label='class 2' /> <set value='90' label='class 3' /> </Chart> Edited September 17, 2008 by Guest Share this post Link to post Share on other sites
rsivamanickam Report post Posted September 18, 2008 Hi, Thanks for your reply. I used that code. The interval working but it not in rounded that what i'm expected. For an eg; <chart palette='2' caption='This Weeks meals plan' xAxisName='Product' yAxisName='Value' showValues='1' formatNumberScale='0' useRoundEdges='1' numberSuffix='%' numDivLines='10' yAxisMaxValue='100' yAxisMinValue='0' adjustDiv='0' yAxisValueDecimals='0' > <set label='A' value='58.1' /> <set label='B' value='67.12' /> <set label='C' value='57.1' /> </chart> it shows the y axis intervals like 0%, 9%, 18%, 27%,.... 91% and 100% i expected the intervals like 0, 10, 20, 30 .... 90 and 100. apart from this i'm using large interval like 0 to 5000 and y axis interval is 500. how to i give the intervals. Thanks, Maalan. Share this post Link to post Share on other sites
Arindam Report post Posted September 18, 2008 Hi, Could you please follow this XML? <chart palette='2' caption='This Weeks meals plan' xAxisName='Product' yAxisName='Value' showValues='1' formatNumberScale='0' useRoundEdges='1' numberSuffix='%' numDivLines='9' yAxisMaxValue='100' yAxisMinValue='0' adjustDiv='0' yAxisValueDecimals='0' > <set label='A' value='58.1' /> <set label='B' value='67.12' /> <set label='C' value='57.1' /> </chart> For 5000 number scale you can use <Chart numDivLines='9' yAxisMaxValue='5000' yAxisMinValue='0' adjustDiv='0' > Share this post Link to post Share on other sites
rsivamanickam Report post Posted September 18, 2008 Hi, The given xml code is working. Thanks a lot. Share this post Link to post Share on other sites