ZedGraphControl不会自动缩放以使用所有GraphPane

时间:2013-06-04 14:50:45

标签: zedgraph

我正在使用ZedGraphControl,但似乎无法使用完整的GraphPane。 X轴的每一侧都有灰色填充区域。我已经设置了以下内容,但它没有用。

myPane.XAxis.Scale.MinAuto = true;
myPane.XAxis.Scale.MaxAuto = true;

myPane.YAxis.Scale.MinAuto = true;
myPane.YAxis.Scale.MaxAuto = true;

myPane.Y2Axis.Scale.MinAuto = true;
myPane.Y2Axis.Scale.MaxAuto = true;

1 个答案:

答案 0 :(得分:0)

我不确定这是否是您正在寻找的,但可能尝试在ZedGraph控件上设置以下属性

  zedGraphControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((
        System.Windows.Forms.AnchorStyles.Top
        | System.Windows.Forms.AnchorStyles.Bottom) 
        | System.Windows.Forms.AnchorStyles.Left) 
        | System.Windows.Forms.AnchorStyles.Right)));
  zedGraphControl1.AutoSize = true;
  zedGraphControl1.Location = new System.Drawing.Point(0, 0);
  zedGraphControl1.Margin = new System.Windows.Forms.Padding(0);