【发布时间】:2017-08-27 14:29:43
【问题描述】:
我正在尝试在运行时从 TDonutSeries 创建一个附加标记。 我在下面使用了这个源代码:
with Series1.Marks.Children.Add do
begin
Shape.Font.Size:= 10;
Shape.ShapeStyle:= fosRectangle;
Shape.Style:= smsPercent;
end;
在这一行
Shape.Style = smsPercent;
我收到此错误: E2003 未声明的标识符:'style'
有什么方法可以设置特定标记项的样式还是我需要使用特定的单位?
【问题讨论】:
标签: delphi charts series vcl teechart