gerald Report post Posted March 3, 2010 Hi, I a have a simple question. How to rename the label of the Y-axis? In fact, i have to modelise information in 3 dimension. I need to count object which have 2 value (A,A), or (A,,... value 1 : A,B,C,D,E,F,G Value 2 : A,B,C,D,E,F,G,H,I object = (value1, Value2) In X-axis, i need have the "value 1" and in Y-Axis, i need to have "Value 2". After, i need to count how i have objet(A,A), object(A,, ..... object(E,F), object (G,I) To that, i think the solution is a bubble chart. How can i have A,B,C,D ... values in Y-axis. Thx for your help Share this post Link to post Share on other sites
Guest Madhumita Report post Posted March 3, 2010 (edited) Hello, You can do this using trendlines. If you hide all the y-axis values(by setting showYAxisValues you can use trendlines to display your custom y axis values using the displayValue attribute in the element. e.g. <trendlines> <line startvalue='360' displayValue='E' isTrendZone='0' alpha='0' color='000000' /> <line startvalue='270' displayValue='D isTrendZone='0' alpha='0' color='000000' /> <line startvalue='180' displayValue=C' isTrendZone='0' alpha='0' color='000000' /> <line startvalue='90' displayValue='B' isTrendZone='0' alpha='0' color='000000' /> <line startvalue='0' displayValue='A' isTrendZone='0' alpha='0' color='000000' /> </trendLines> I hope this helps you. Looking forward to your reply. Edited March 3, 2010 by Guest Share this post Link to post Share on other sites