有什么方法可以在 ZedGraph 控件上添加自定义数据表,我使用两个动态标记,当用户更改标记并且需要显示相应的数据点时。
// 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 轴下方添加数据表或文本。