我很抱歉我的英语不好但我现在需要你的帮助。 所以...我正在使用wpf项目,我需要从多个值(点)绘制系列图表。例如:
series1.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(new DateTime(2016, 3, 2, 0, 0, 0)), 12));
series1.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(new DateTime(2016, 3, 5, 0, 0, 0)), 12.5));
series1.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(new DateTime(2016, 3, 8, 0, 0, 0)), 12.8));
series1.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(new DateTime(2016, 3, 10, 0, 0, 0)), 12.4));
series1.Points.Add(new DataPoint(OxyPlot.Axes.DateTimeAxis.ToDouble(new DateTime(2016, 3, 20, 0, 0, 0)), 12.9));
正如我们在底部屏幕中看到的,OxyPlot在X轴线上绘制标签。我需要在线显示Y轴的值。 我该怎么办?感谢。