我正在尝试创建我的数据的可视化表示,我已经填充了点对列表,并且我正在创建我的图表,如下所示:
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();