Zedgraph上的自定义数据表

时间:2012-06-12 10:12:36

标签: c# markers zedgraph

有没有办法在ZedGraph Control上添加自定义数据表,我使用两个动态标记,当用户更改标记时,需要显示相应的数据点。

// Resize The Plot Area
Rectangle rc = zedGraphControl1.Bounds;
rc.Height = Convert.ToInt32((rc.Height) * 0.85);
rc.Width = rc.Width - 10;

// Link the new phane
Graphics g = zedGraphControl1.CreateGraphics();

pane.ReSize(g, rc);

以上代码是调整绘图区域大小的示例,我想在x轴下面添加数据表或文本。

0 个答案:

没有答案