OxyPlot - 为什么我不能以编程方式查看系列中的点?
OxyPlot - Why can't I programmatically see points in a series?
我使用 series.Points.AddRange
.
将点数添加到新的 LineSeries
然后将此系列添加到 PlotModel
。
当我执行 plotModel.Series(0).
时,没有 Points
属性 到 select 的点。我该怎么做?
事实证明 Series
属性 是一个通用系列,它没有 Points
的概念(这是有道理的,因为其他类型的系列可能没有) .
要得到 Points
,您需要将 Series
转换为 LineSeries
:
CType(PlotModel.Series(0), LineSeries).Points
((LineSeries)PlotModel.Series(0)).Points
我使用 series.Points.AddRange
.
LineSeries
然后将此系列添加到 PlotModel
。
当我执行 plotModel.Series(0).
时,没有 Points
属性 到 select 的点。我该怎么做?
事实证明 Series
属性 是一个通用系列,它没有 Points
的概念(这是有道理的,因为其他类型的系列可能没有) .
要得到 Points
,您需要将 Series
转换为 LineSeries
:
CType(PlotModel.Series(0), LineSeries).Points
((LineSeries)PlotModel.Series(0)).Points