Sign in to follow this  
Pallav

my yAxisMaxValue has what is happening?

Recommended Posts

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

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 !

 f157ca06-08a5-43b2-99fe-4560.PNG

how can i fix it ?

thanks for you help again :(

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this