This question is locked. New answers and comments are not allowed.
I use C# to implement the chart and bind the data source with a two-dimension array.
However,each series name on the chart can not be changed to the "xxx", it still shows "series 1", "series 2" and "series 3"
I would like to know what can I do to solve the problem above. Thank you.
RadChart1.DataSource = twoDimArray;
RadChart1.DataBind();
……...
RadChart1.Series[0].Name = "xxx";
RadChart1.Series[1].Name = "yyy";
RadChart1.Series[2].Name = "zzz";