Is it possible to set custom label for the Y axis like in an specific value in the chart
I'm trying the following code:
Telerik.Charting.ChartAxisItem customy;
customy = new ChartAxisItem();
customy.Visible = true;
customy.Value = 0.5;
customy.TextBlock.Text = "Custom 1 ";
this.RadChart1.PlotArea.YAxis2.AddItem(customy);
I'm trying the following code:
Telerik.Charting.ChartAxisItem customy;
customy = new ChartAxisItem();
customy.Visible = true;
customy.Value = 0.5;
customy.TextBlock.Text = "Custom 1 ";
this.RadChart1.PlotArea.YAxis2.AddItem(customy);