4 Answers, 1 is accepted
0

JAS J
Top achievements
Rank 1
answered on 07 May 2010, 09:30 PM
Anybody?
0
Accepted
Hello JAS J,
You can hide the point-marks of the series simply by setting the ShowPointMarks property of the series definition to false in the following way :
Hope this helps.
Greetings,
Nikolay
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
You can hide the point-marks of the series simply by setting the ShowPointMarks property of the series definition to false in the following way :
LineSeriesDefinition definition = new LineSeriesDefinition();
definition.ShowPointMarks = false;
Hope this helps.
Greetings,
Nikolay
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

JAS J
Top achievements
Rank 1
answered on 08 Oct 2011, 12:58 AM
This does not seem to work when I create StackedSplineAreaSeriesDefinition
It does not have a ShowPointMarks member.
Is there another way to do this?
0
Hi Jas J,
You can hide the PointMarks in the following manner :
Greetings,
Nikolay
the Telerik team
You can hide the PointMarks in the following manner :
SeriesMapping seriesMapping = new SeriesMapping();
seriesMapping.SeriesDefinition = new StackedSplineAreaSeriesDefinition() { ShowPointMarks = false };
Greetings,
Nikolay
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>