Click here to Skip to main content
15,867,291 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a chart it looks like this
http://imgur.com/XoeCnvO

I want to change Y axis numbering and label it 1% 10% 33.% etc as shown below with out changing the plot.
How do I change it


Required output graph:

http://imgur.com/fJ6bQzk
Posted
Updated 10-Apr-14 23:05pm
v3

1 solution

CustomLabel label1 = new CustomLabel
{
FromPosition = y1,//position on axis.
ToPosition = y2,
Text = "Y%"//value desired
};
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900