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
Show only marks in a graph (asp.net)
-
- Newbie
- Posts: 25
- Joined: Thu Dec 27, 2007 12:00 am
Hi Aytaç,
Here you have an example using a point series. Its marks are shown and the points are hided:
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 25
- Joined: Thu Dec 27, 2007 12:00 am