Hi Kevin,
Currently there is no way to get the series that display on a legend, however you can easily loop through the chart/series in the control and check which ones display on that particular legend:
List<NSeriesBase> seriesOnLegend = new List<NSeriesBase>();
for (int i = 0; i < nChartControl1.Charts.Count; i++)
{
NChart chart = nChartControl1.Charts[i];
for (int j = 0; j < chart.Series.Count; j++)
{
NSeriesBase series = chart.Series[j];
NLegend curLegend = series.Legend.DisplayOnLegend;
if (curLegend == null)
{
curLegend = chart.DisplayOnLegend;
}
if (curLegend == myLegend)
{
seriesOnLegend.Add(series);
}
}
}
Hope this helps...
Best Regards,
Nevron Support Team