2
Answers

C# Charts Change Axis label

Farhan Shariff

Farhan Shariff

11y
7.5k
1
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 without changing the plot.
How do I change it


Required output graph:

http://imgur.com/fJ6bQzk
Answers (2)
0
varun goparaju
NA 2 0 13y
Dataset ds=new Dataset();
ds.ReadXml("path of xml file");
Gridview1.Datasource=ds;
Gridview1.DataBind();