如何在c#中滚动图表的AxisX

时间:2014-04-08 08:33:25

标签: c#

我想在特定数字后缩放和滚动我的图表。但它不显示滚动条。 它进入“如果”阻止芽不起作用。

 private void timer1_Tick_1(object sender, EventArgs e)
    {

        fillarray();

        for (int i =1; i <= 5;i += 1)
        {
            chart.Series["MyFunc"].Points.AddXY(myArrayX[i-1], myArrayY[i-1]);
            xmax = myArrayX[i-1];
        }


        if (xmax >=20)
        {

            chart.ChartAreas["draw"].AxisX.ScrollBar.Enabled = true;
            chart.ChartAreas["draw"].AxisX.ScaleView.Zoomable = true;
            chart.ChartAreas["draw"].AxisX.ScaleView.Zoom(0, xmax);



        }

        Controls.Add(this.chart);

    }

0 个答案:

没有答案