0

Is there any way to format DataFieldY on telerik RadHtml Charts?

I tried following code;

RadHtmlChart3.PlotArea.Series[0].DataFieldY = String.Format("{0:0.00}","veriyuzde");

which produced no change.

Also, I used this

RadHtmlChart3.PlotArea.YAxis.LabelsAppearance.DataFormatString = "N";

but it only formats the labels when I want to format the values.

Am I missing something or is it impossible?

Thanks in advance.

4

1 回答 1

0

查看此图表结构图。我认为您要更新的是“系列项目标签”,对吗?

你可以这样做

chart.PlotArea.YAxis.LabelsAppearance.DataFormatString = "{0:0.00}";
于 2013-06-21T16:06:31.497 回答