Page 1 of 1

Show only marks in a graph (asp.net)

Posted: Mon Jun 01, 2009 10:50 am
by 13047867
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

Posted: Mon Jun 01, 2009 1:31 pm
by yeray
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");

Posted: Tue Jun 02, 2009 8:56 am
by 13047867
Hi Yeray,

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

Thank you
Aytaç Kargınoğlu