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

Need to remove labels in chart area of radchart

2 Answers 286 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Kapil
Top achievements
Rank 1
Kapil asked on 13 Sep 2010, 01:45 PM
i am not able to remove labels in chartarea of radchart....the property i can see only related to label is that
LabelFormatBehavior

if i dont have to show labels than what  would i have to do??

Thanks,
Kapil Garg

2 Answers, 1 is accepted

Sort by
0
Giuseppe
Telerik team
answered on 13 Sep 2010, 05:59 PM
Hello Kapil,

You can control the labels visibility per series level -- you need to set the SeriesDefinition.ShowItemLabels property to false.

Hope this helps.


Regards,
Freddie
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
Sudhanshu
Top achievements
Rank 2
answered on 16 Aug 2013, 08:55 AM
If you need to hide the label of Series, there are many ways

1. If your Chart name is "myRadChart1"
myRadChart1.Series[0].Appearance.LabelAppearance.Visible = false;

or
2. If your Chart name is "myRadChart1" and you created a dynamic series named as "myTelerikChartSeries"
myTelerikChartSeries.Appearance.LabelAppearance.Visible = false;

or
3. From Source
<Series> 
<telerik:ChartSeries Name="myTelerikChartSeries" Type="Bar"
 <Appearance ShowLabels="False"
   <LabelAppearance Visible="false"></LabelAppearance> 
</Appearance> 
</telerik:ChartSeries>
</Series>



Tags
Chart
Asked by
Kapil
Top achievements
Rank 1
Answers by
Giuseppe
Telerik team
Sudhanshu
Top achievements
Rank 2
Share this question
or