I create new series using ASP script: Chart.AddSeries(4) How can I make the size of the points smaller than the default block? I want like a 4 pixel size dot or atleast somewhat smaller than the defaut size.. Running TeeChart Active x ver 6
Documentation is very very hard to follow of course I could be just an idiot but here is what I have so far I have two series and I simply want to make the points smaller:
Chart.AddSeries(1)
Chart.AddSeries(4)
Chart.Series(0).Marks.Visible=False
Chart.Series(0).Color=vbYellow
Chart.Series(0).VerticalAxis=1
Chart.Series(0).Name="Level"
Chart.Series(0).XValues.DateTime = True
Chart.Series(1).Marks.Visible=False
Chart.Series(1).Marks.Visible=False
Chart.Series(1).Color=vbBlue
Chart.Series(1).Name="Parameter"
Thanks!!
SImple Question - No answer
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi MCD,
Yes, you can do this:
Yes, you can do this:
Code: Select all
TChart1.Series(0).asPoint.Pointer.VerticalSize = 4
TChart1.Series(0).asPoint.Pointer.HorizontalSize = 4
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
There is a demo called "Reducing Number of Points" where is used this and there is the "Pointer" demo where does something similar for a Point Series. (Use search option to fins the demos).
Also you can take a look at the help file and look for IPointer property.
Also you can take a look at the help file and look for IPointer property.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |