TeeChart for ActiveX, COM and ASP
-
Ash-S
- Newbie
- Posts: 2
- Joined: Wed May 29, 2019 12:00 am
Post
by Ash-S » Tue Sep 03, 2019 2:44 pm
Hi,
I've added a light tool to my chart but I want to set the DrawStyle property to be Before Chart. The property is not mentioned in the documentation and everything I have tried just errors with invalid property. Any ideas?
Code: Select all
ole_tchart.GetChart().Tools().Add(u_tchart.ll_tool_Light)
ole_tchart.GetChart().Tools(0).asLight.DrawStyle = 2
-
Attachments
-
- draw-before-chart.PNG (399.5 KiB) Viewed 20630 times
-
Yeray
- Site Admin
- Posts: 9612
- Joined: Tue Dec 05, 2006 12:00 am
- Location: Girona, Catalonia
-
Contact:
Post
by Yeray » Thu Sep 05, 2019 1:35 pm
Hello,
Here the TLightDrawStyle definition in Delphi (note TeeChart ActiveX is a wrapper from TeeChart VCL):
Code: Select all
TLightDrawStyle=(ldsAfterChart,
ldsBeforeChart,
ldsAfterSeries,
ldsBeforeSeries,
ldsBeforeAxes);
-
Ash-S
- Newbie
- Posts: 2
- Joined: Wed May 29, 2019 12:00 am
Post
by Ash-S » Thu Sep 05, 2019 2:27 pm
Hi,
Thanks but this is not helping.
The problem is not the definitions, it's the property I should be using. According to the VCL reference it should be DrawStyle but I just get an error saying it doesn't exist.
Code: Select all
ole_tchart.GetChart().Tools(0).asLight.DrawStyle
I can't set the Factor or Style property either. When I reference the tool using .asLight I get an object. As it's ActiveX it's impossible to inspect to expose the properties. All other tools I use work fine e.g. .asColorLine or .asScrollPager
I am using a build you sent me a few day's ago which had a bug fix in for Maps & Scroll Pagers. Could this perhaps be another bug?
-
Attachments
-
- draw-style-error.PNG (6.3 KiB) Viewed 20611 times