在单击滚动条之前,不会显示图表系列



这是我在 C# 程序中对图表的 init 方法。

private void initGraph()
{  
    chartTrend.Cursor = Cursors.Hand;
    chartTrend.ChartAreas[0].CursorX.LineColor = Color.Red;
    chartTrend.ChartAreas[0].CursorX.LineWidth = 2;
    chartTrend.ChartAreas[0].CursorX.LineDashStyle = ChartDashStyle.Dot;            
    chartTrend.ChartAreas[0].CursorX.IsUserEnabled = true;
    // let us select a portion of chart so then zoom that portion
    chartTrend.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
    chartTrend.ChartAreas[0].CursorX.Interval =1 ;
    chartTrend.ChartAreas[0].CursorX.IntervalType = DateTimeIntervalType.Seconds;
    chartTrend.ChartAreas[0].CursorX.AutoScroll = false;
    chartTrend.ChartAreas[0].AxisY.IsStartedFromZero = true;
    chartTrend.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
    chartTrend.ChartAreas[0].AxisY.ScaleView.Zoomable = false;
    // disable zoom-reset button (only scrollbar's arrows are available)
    chartTrend.ChartAreas[0].AxisX.ScrollBar.ButtonStyle = ScrollBarButtonStyles.SmallScroll;
    chartTrend.ChartAreas[0].AxisX.ScrollBar.IsPositionedInside = true;
    chartTrend.ChartAreas[0].AxisX.ScrollBar.Enabled = true;
    chartTrend.ChartAreas[0].AxisX.ScaleView.SizeType = DateTimeIntervalType.Seconds;           
    chartTrend.ChartAreas[0].AxisX.ScaleView.Size = 528;
}

问题是,当我向图表添加数据时,直到我单击滚动条才会显示它。我什至尝试通过软件移动滚动,但没有奏效。我能做什么?

顺便说一下,这都是initGraph()方法的最后一行。 当我注释掉它时,将显示数据,但以我不感兴趣的方式。

问题是滚动的位置。我明白,当我将数据添加到图表时,它描绘的图表距离我的时间范围开始很远,点击滚动后,它花了正确的时间。所以我决定在添加我的第一个点后移动滚动,最后,问题由这一行解决:

chartTrend.ChartAreas[0].AxisX.ScaleView.Position = chartTrend.ChartAreas[0].AxisX.Minimum;

最新更新