Hi Hans,
The axes don't store information on which series scale on them - you can get this information from the series themselves though. The following code shows how to get the first series that scales on a particular axis:
private NSeriesBase GetSeriesOnAxis(int axisId)
{
NChart chart = nChartControl1.Charts[0];
for (int i = 0; i < chart.Series.Count; i++)
{
NSeriesBase series = chart.Series[i];
if (series.VerticalAxes.Contains<int>(axisId) ||
series.HorizontalAxes.Contains<int>(axisId))
{
return series;
}
}
return null;
}
Hope this helps - let us know if you meet any problems.
Best Regards,
Nevron Support Team