Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Teecharts 中,您可以包含背景图像。在 steema 产品的早期版本中,您可以强制背景图像位于图形面板内。选项(backimageinside = true)仍然存在,但没有显示任何效果。
非常感谢任何帮助。
韩
这对我来说似乎可以正常使用最新的 Pro 版本和 XE4 附带的标准版本。
uses jpeg; procedure TForm1.FormCreate(Sender: TObject); begin Chart1.BackImage.LoadFromFile('C:\tmp\flower.jpg'); Chart1.BackImageInside:=true; end;