Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ionic-framework/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Zedgraph上的自定义数据表_C#_Markers_Zedgraph - Fatal编程技术网

C# Zedgraph上的自定义数据表

C# Zedgraph上的自定义数据表,c#,markers,zedgraph,C#,Markers,Zedgraph,有没有办法在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.

有没有办法在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轴下方添加一个数据表或文本。

为什么不在From中使用Datagridview呢?谢谢您的建议,但应用程序需要一个带虚线的表,这在datagrid视图中是不可能的。为什么不在From中使用Datagridview呢?谢谢您的建议,但是应用程序需要一个带虚线的表,而datagrid视图则不可能。