我在 C# 中使用 MS Chart,当我尝试从图表中检索几乎所有元值时遇到问题,我得到的只是 NaN。几个例子...
void chart_CursorPositionChanged(object sender, CursorEventArgs e)
{
double selectStart = e.NewSelectionStart;
double selectEnd = e.NewSelectionEnd;
}
e.NewSelectionStart and e.NewSelectionEnd both show NaN for their values.
另一个例子...
chart.ChartAreas[0].AxisX.Maximum
也是NaN。但是,如果我将其设置为一个值,图表会正确反映它。任何想法我做错了什么?