0

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

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

我的图表可能显示 3-4 系列取决于输入数据,所以我想将点标签的前景色更改为与系列的线条颜色相同。请告诉我是否有办法做到这一点。

4

1 回答 1

2
chartSellInArea.Series["AttaintoForecast"].ChartType = SeriesChartType.Line;
chartSellInArea.Series["AttaintoForecast"].Color = Color.Orange;
chartSellInArea.Series["AttaintoForecast"].IsValueShownAsLabel = true;
chartSellInArea.Series["AttaintoForecast"].LabelBackColor = Color.Orange;
于 2013-02-19T12:19:46.457 回答