TeeChart的一个简单问题(20分)

  • 主题发起人 主题发起人 hellotao
  • 开始时间 开始时间
H

hellotao

Unregistered / Unconfirmed
GUEST, unregistred user!

有两个fastline: series1, series2,

如何显示一个横坐标上 两个fastline 的不同纵坐标值
 
procedure TMultiAxisScroll.FormCreate(Sender: TObject);
begin
inherited;
Series1.FillSampleValues(100);
Series2.FillSampleValues(100);
Series3.FillSampleValues(100);
Series4.FillSampleValues(100);

{ change the Left axis properties }
With Chart1.LeftAxis do
begin
Axis.Color:=clRed;
StartPosition:=0;
EndPosition:=33;
end;

{ create custom axes. This can be done at design-time
with the chart editor. }
Green:=TChartAxis.Create(Chart1.CustomAxes);
With Green do
begin
Axis.Color:=clGreen;
StartPosition:=33;
EndPosition:=66;
end;

Blue:=TChartAxis.Create(Chart1.CustomAxes);
With Blue do
begin
Axis.Color:=clBlue;
StartPosition:=66;
EndPosition:=100;
end;

{ associate series }
Series1.VertAxis:=aLeftAxis;
Series2.VertAxis:=aLeftAxis;
Series3.CustomVertAxis:=Green;
Series4.CustomVertAxis:=Blue;
end;
 
to : bianlx
详细解释一下可以吗?

 
Chart1.CustomAxes

时什么东西阿?
 
在chart中就可以编辑左右坐标,然后将series1, series2,分别绑定到左右坐标,在程序中
就可以分别显示了
 
to zxj2000:
如何动态绑定啊?
 
多人接受答案了。
 
后退
顶部