6

在 MS Chart 控件(他们从 Dundas 购买)中,我需要绘制三个系列。

该系列中的两个应该在 Legend 中有条目,但第三个不应该。

我已经尝试了这些代码行,但没有一个工作:

Chart c = new Chart();
ChartArea ca = c.ChartAreas.Add("main");
Legend lg = c.Legends.Add("mainLegend");
Series s1 = c.Series.Add("s1");
Series s2 = c.Series.Add("s2");
Series s3 = c.Series.Add("s3");

// ... populate the 3 series with data...

s1.Legend = "mainLegend";
s2.Legend = "mainLegend";

// I've tried these:
s3.Legend = ""; // gives an error about a nonexistent legend named ''
s3.LegendText = ""; // just shows "s3" in the legend

如何防止该系列出现在图例中?

4

1 回答 1

11

采用:

s3.IsVisibleInLegend = false;

免责声明:仅在 (ASP).Net 4,VS 2010 中测试。您的里程可能会有所不同...

于 2010-02-03T22:15:06.243 回答