|
Change the scaling values on Y axis |
Posted by Mandar Akre on Jan-20-2012 17:16 |
|
Hi,
I have a bar chart with Y axis scale having values in multiples of 1000 (e.g. 2000,4000,6000 etc.). Can you please suggest a way that i can change these to (2k,4k,6k etc.) |
Re: Change the scaling values on Y axis |
Posted by Peter Kwan on Jan-21-2012 00:05 |
|
Hi Mandar,
You may use the format string "{={value}/1000}K" for the y-axis labels. For example, in VB/VBScript:
Call c.yAxis().setLabelFormat("{={value}/1000}K")
Hope this can help.
Regards
Peter Kwan |
Re: Change the scaling values on Y axis |
Posted by Mandar Akre on Jan-24-2012 17:35 |
|
Hi Peter,
It worked!! Thanks again for helping me out. |
|