I need to add several DataPoints with three y-Values and one y-Value. Setting multiple yaxiskeys does not work.
OxyPlots DataPoint only accepts two values (x,y)
I've already tried adding multiple DataPoints with the same x-Value...didnt work fine
plot.Points.Add(new DataPoint(X, Y));
plot.YAxisKey = "y";
plot.XAxisKey = "x";
plot.Points.Add(new DataPoint(X, Y1));
plot.YAxisKey = "y1";
plot.Points.Add(new DataPoint(X, Y2));
plot.YAxisKey = "y2";
Any ideas?