在 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
如何防止该系列出现在图例中?