如何更改显示此系列的Legend对象?

时间:2016-06-07 13:57:20

标签: c# charts

Data.Visualization.Charting

我有一个带有2个ChartAreas的图表控件。但所有图例名称都显示在一个Legend对象中。

我知道如何创建第二个Legend对象,但是如何将一个系列与第二个Legend对象相关联,以便我在第二个Legend对象中看到Legend条目?

1 个答案:

答案 0 :(得分:0)

您可以指定哪个Legend包含Series只需设置Series' Legend财产:

Legend L2 = chart1.Legends.Add("L2"); 
someSeries.Legend = "L2";