在ASP.NET图表控件中设置点标签的字体格式

时间:2012-11-19 04:35:00

标签: asp.net charts

我正在使用MS图表控件.net 4.0

CharTemp.Series[seriesName].IsValueShownAsLabel = true;
CharTemp.Series[seriesName].ChartType = System.Web.UI.DataVisualization.Charting.SeriesChartType.Line;

我的图表可能会显示3-4系列依赖于输入数据,因此我想将点标签的Forecolor更改为与系列的线条颜色相同。 请告诉我是否有办法。

1 个答案:

答案 0 :(得分:2)

chartSellInArea.Series["AttaintoForecast"].ChartType = SeriesChartType.Line;
chartSellInArea.Series["AttaintoForecast"].Color = Color.Orange;
chartSellInArea.Series["AttaintoForecast"].IsValueShownAsLabel = true;
chartSellInArea.Series["AttaintoForecast"].LabelBackColor = Color.Orange;