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

Disable labels on data series

1 Answer 46 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Rüdiger
Top achievements
Rank 1
Rüdiger asked on 30 Nov 2010, 12:08 AM
Sorry, absolutely new.
1. I can't find how to disable the labels on the data series. How do I show a data series without labels?

2. Where can I find documentation about the object models used in charts, I can't find it. I think about typical MSDN-way of documenting the classes?

Thanks for your help,
RüdI

1 Answer, 1 is accepted

Sort by
0
Evgenia
Telerik team
answered on 01 Dec 2010, 02:39 PM
Hi Rüdiger,

1. To be able to hide DataSeries labels you should set LineSeriesDefinition.ShowItemLabels property to false like this:
DataSeries lineSeries = new DataSeries();
lineSeries.LegendLabel = "TEST";
lineSeries.Definition = new LineSeriesDefinition();
lineSeries.Definition.ShowItemLabels = false;

2. We do provide such information. You can review the object models used in chart from our help topics. For example: http://www.telerik.com/help/silverlight/telerik.windows.controls.charting-telerik.windows.controls.charting.iseriesdefinition_properties.html

Best wishes,
Evgenia
the Telerik team
Browse the videos here>> to help you get started with RadControls for Silverlight
Tags
Chart
Asked by
Rüdiger
Top achievements
Rank 1
Answers by
Evgenia
Telerik team
Share this question
or