0

我正在尝试创建我的数据的可视化表示,我已经填充了点对列表,并且我正在创建我的图表,如下所示:

public void CreateChart(ZedGraphControl zgc)
    {
        GraphPane myPane = zgc.GraphPane;

        //set the title and axis labels
        myPane.Title.Text = "Graph";
        myPane.XAxis.Title.Text = "Width";
        myPane.YAxis.Title.Text = "Height";


        //create curves
        BarItem myCurve = myPane.AddBar("1", pointPairList1, Color.Blue);
        BarItem myCurve2 = myPane.AddBar("2", pointPairList2, Color.Red);

        zgc.AxisChange();

    }

当我调用 CreateChart(chart1) 方法时,图表没有任何更改,甚至标题也没有更新。有人能发现我的错误吗?

回答:

        chart1.AxisChange();
        chart1.Invalidate();
        chart1.Refresh();
4

2 回答 2

2

尝试

    zgc.refresh();

或者

    zgc.invalidate();
于 2013-02-27T18:56:27.690 回答
0

创建一个事件ZedGraphWeb1_RenderGraph,然后将所有代码放入该块中。

于 2013-02-27T11:27:48.260 回答