例如,如何设置时间间隔为5分钟或10分钟。当我在写作的时候
new OxyPlot.Axes.DateTimeAxis()
{
Position = AxisPosition.Bottom,
IntervalType=DateTimeIntervalType.Minutes,
IntervalLength=5
};它不起作用。

发布于 2015-12-19 01:00:34
使用Interval=5而不是IntervalLength=5
https://stackoverflow.com/questions/29628932
复制相似问题