This is a migrated thread and some comments may be shown as answers.

Getting rid of the PointMark on a line series

4 Answers 66 Views
Chart
This is a migrated thread and some comments may be shown as answers.
JAS J
Top achievements
Rank 1
JAS J asked on 05 May 2010, 06:16 PM
How do you get rid of the pointmark entirely?

thanks,
Jas

4 Answers, 1 is accepted

Sort by
0
JAS J
Top achievements
Rank 1
answered on 07 May 2010, 09:30 PM
Anybody?
0
Accepted
Nikolay
Telerik team
answered on 10 May 2010, 11:52 AM
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 :

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
Nikolay
Telerik team
answered on 12 Oct 2011, 07:41 AM
Hi Jas J,

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 >>
Tags
Chart
Asked by
JAS J
Top achievements
Rank 1
Answers by
JAS J
Top achievements
Rank 1
Nikolay
Telerik team
Share this question
or