Sign in to follow this  
gerald

Problem to rename Y-axis label

Recommended Posts

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,B),...

 

 

 

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,B), ..... 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

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 by Guest

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