各位仁兄,感谢对用DELPHI进行曲线编程的指教,本人对问题作一点补充,还望赐教!(0分)

  • 主题发起人 主题发起人 myyzg
  • 开始时间 开始时间
M

myyzg

Unregistered / Unconfirmed
GUEST, unregistred user!
本人正在进行一个图表统计方面的编程,希望能通过一个数据库的数据动态地生成一个二维曲线图,如Y代表产量,X代表时间,即通过每天输入的数据动态地生成一个曲线图,以便直观地进行分析。
 
用chart dbchart ....都可以,
dbchart.datasource:=table1;

chart.add(21,x-label,clred);
 
能否提供更详细的答案?
 
Example Pie-Series
Suppose the Series we added was a Pie Series. We could populate the Series in the following way. For the following code to work we should leave the Series name as its default of Series1.
Place a TButton on your Form and go to the OnClick event .
Copy the following code at the Button1.OnClick event:
With Series1do
begin
Add( 40, 'Pencil' , clRed ) ;
Add( 60, 'Paper', clBlue ) ;
Add( 30, 'Ribbon', clGreen ) ;
end;

以上是折自teechart.hlp中 chart例子
 
接受答案了.
 
用DBChart就可以显示出来了啊
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
D
回复
0
查看
1K
DelphiTeacher的专栏
D
后退
顶部