我有一个Delphi图表应用程序,我希望用户从下拉菜单(组合框)中选择他们想要的图表,这很好。
我希望能够将图表x轴(底部轴)标题更改为组合框中文本的标题,但是我似乎无法使其工作。
以下是我使用过的无效代码:
DBChart1.Axes.Bottom.Title.Text := 'Queue: ' + ComboBox1.Selected.Text;
我正在使用TeeChart的TDBChart
将我的数据从数据库映射到图表。
错误消息如下:
[dcc32 Error] charts.pas(56): E2003 Undeclared identifier: 'Text'
[dcc32 Fatal Error] Project2.dpr(5): F2063 Could not compile used unit 'charts.pas'
答案 0 :(得分:6)
您需要的属性名为Caption
,而不是Text
。
DBChart1.Axes.Bottom.Title.Caption := ...
另请注意,问题中写的作业的右侧也是不正确的。你可能想要阅读ComboBox1.Text
。