Должен ли я использовать другую библиотеку вместо ScottPlot.WPF?
Код: Выделить всё
double[] xData = chart.MeasuredData[i].XAxis.ToArray();
double[] yData = chart.MeasuredData[i].YAxis.ToArray();
// Ellipse
for (int data = 0; data < xData.Length; data++)
{
wpfPlotGL.Plot.Add.Ellipse(xData[data], yData[data], 2.9, 2.9);
}
wpfPlotGL.Refresh();
Подробнее здесь: https://stackoverflow.com/questions/791 ... -scottplot