Android Question xChart Y axis Range Text

rodmcm

Active Member
Licensed User
Is there away to eliminate Y axis range text for a line graph.. I am using 4 graphs with the same range and ideally only want to see one range
 

klaus

Expert
Licensed User
Longtime User
Sorry, but I don't understand what exactly you want to do.
Do you have 4 xChart objects?
Do you want to hide the y axis scale? This is currently not possible.
Or do you want to hide the Yaxis name? Set the Yaxis name property to an empty string xChart1.
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
Sorry, my bad, it is possible!
Didn't remember that I added the possibility in version 5.5.
You can disable the display of either the X or Y axis scale with the DrawXScale and DrawYScale properties.
You can set those either in the Designer or in the code with Set LineChart1.DrawYScale = False.
 
Upvote 0
Top