idnts Report post Posted May 11, 2008 I have a example for 3D Stacked Column like this <chart yAxisMinValue='0' yAxisMaxValue='100' showSum='1'> <categories> <category label='A1' /> <category label='A2' /> </categories> <dataset seriesName='X' > <set value='0' /> <set value='68.49' /> </dataset> <dataset seriesName='Y' > <set value='0' /> <set value='31.51' /> </dataset> </chart> the yAxisValue is 0 ~ 100, but this example will make the yAxisMaxValue to 110, what's happening ? Share this post Link to post Share on other sites
Pallav Report post Posted May 12, 2008 It's the Flash player rounding problem. One way to solve this would be to set max value as 100.001 Share this post Link to post Share on other sites
idnts Report post Posted May 12, 2008 thanks for your help !! I try to alter my example like this: <chart yAxisMinValue='0' yAxisMaxValue='100.001' showSum='1' decimals='2'> <categories> <category label='A1' /> <category label='A2' /> </categories> <dataset seriesName='X' > <set value='0' /> <set value='68.49' /> </dataset> <dataset seriesName='Y' > <set value='0' /> <set value='31.51' /> </dataset> </chart> it will look like 0 to 100, but the DivLine disappeared ! how can i fix it ? thanks for you help again Share this post Link to post Share on other sites
Pallav Report post Posted May 18, 2008 Just add: adjustDiv='0' Share this post Link to post Share on other sites