Show only marks in a graph (asp.net)

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Solutions Gallery BV
Newbie
Newbie
Posts: 25
Joined: Thu Dec 27, 2007 12:00 am

Show only marks in a graph (asp.net)

Post by Solutions Gallery BV » Mon Jun 01, 2009 10:50 am

Hi,

We want to show only marks without series in a graph, same like the picture that i sent to your upload page, its name is ShowMarksWithoutSerie.jpg, how can i do this, can you help me ?
(Our application is an asp.net web application)

Thanks,
Aytaç Kargınoğlu

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

Post by Yeray » Mon Jun 01, 2009 1:31 pm

Hi Aytaç,

Here you have an example using a point series. Its marks are shown and the points are hided:

Code: Select all

tChart1.Aspect.View3D = false; 
Steema.TeeChart.Styles.Points points1 = new Steema.TeeChart.Styles.Points(tChart1.Chart);  
points1.ShowInLegend = false; 
points1.Marks.Visible = true; 
points1.Marks.Angle = 90; 
points1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Nothing; 
points1.Add(0, 10, "first point"); 
points1.Add(5, 10, "second point"); 
points1.Add(6, 10, "third point");
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

Solutions Gallery BV
Newbie
Newbie
Posts: 25
Joined: Thu Dec 27, 2007 12:00 am

Post by Solutions Gallery BV » Tue Jun 02, 2009 8:56 am

Hi Yeray,

Thanks for your response. I tried your simple code, it is worked for me :wink:

Thank you
Aytaç Kargınoğlu

Post Reply