X xiaozhangyang Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-06 #1 我在使用TeeChart的Zoom时,我想只允许X轴放大,缩小。保持Y轴不变。在TeeChart中简单设置Zoom的方向值,好像不行。
X xiaozhangyang Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-06 #2 我在使用TeeChart的Zoom时,我想只允许X轴放大,缩小。保持Y轴不变。在TeeChart中简单设置Zoom的方向值,好像不行。
Y yostgxf Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-06 #3 自己创建一条X轴就可以实现。 例: private Blue : TChartAxis; Blue:=TChartAxis.Create(Chart1.CustomAxes); With Blue do begin Axis.Color:=clBlue; StartPosition:=0; EndPosition:=100; end; { associate series } Series1.CustomVertAxis:=blue;
自己创建一条X轴就可以实现。 例: private Blue : TChartAxis; Blue:=TChartAxis.Create(Chart1.CustomAxes); With Blue do begin Axis.Color:=clBlue; StartPosition:=0; EndPosition:=100; end; { associate series } Series1.CustomVertAxis:=blue;
W wufongming Unregistered / Unconfirmed GUEST, unregistred user! 2005-01-06 #4 平移就可以设方向 AllowPanning:=pmVertical 放大 ? 学习.