SImple Question - No answer

TeeChart for ActiveX, COM and ASP
Post Reply
MCD
Newbie
Newbie
Posts: 14
Joined: Fri Nov 15, 2002 12:00 am

SImple Question - No answer

Post by MCD » Fri Nov 16, 2007 4:02 pm

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!!

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Fri Nov 16, 2007 4:56 pm

Hi MCD,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

MCD
Newbie
Newbie
Posts: 14
Joined: Fri Nov 15, 2002 12:00 am

Post by MCD » Fri Nov 16, 2007 5:40 pm

THanks that worked.. can you show me where I can find where this example is in the documentation? I have been searching and reading for nearly 3 hours with no help... I only do ASP code so the other examples look like Greek to me.

Thanks
Jason

Yeray
Site Admin
Site Admin
Posts: 9601
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Mon Nov 19, 2007 8:49 am

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply