如何在我的Oxy图表(系列)上显示y轴的值

时间:2016-10-25 19:50:12

标签: wpf label axis oxyplot

我很抱歉我的英语不好但我现在需要你的帮助。 所以...我正在使用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轴的值。 我该怎么办?感谢。

What I Need to make

1 个答案:

答案 0 :(得分:0)

我建议您使用highcharts。虽然wpf没有正式支持,但您可以在此link找到出路。