Hello
I am not able to reproduce the mentioned issue. Setting visible false to the series labels, hides them properly on my side. The chart below renders like this - http://screencast.com/t/oU87G5a1UJi
ASPX:
If you want, however, to hide the x-axis labels you should set the visible property in the right place:
Regards,
Danail Vasilev
Telerik
,I am not able to reproduce the mentioned issue. Setting visible false to the series labels, hides them properly on my side. The chart below renders like this - http://screencast.com/t/oU87G5a1UJi
ASPX:
<
telerik:RadHtmlChart
runat
=
"server"
ID
=
"ColumnChart1"
Width
=
"600px"
Height
=
"400px"
>
<
PlotArea
>
<
Series
>
<
telerik:LineSeries
Name
=
"Product 1"
>
<
LabelsAppearance
Visible
=
"false"
></
LabelsAppearance
>
<
SeriesItems
>
<
telerik:CategorySeriesItem
Y
=
"15000"
/>
<
telerik:CategorySeriesItem
Y
=
"23000"
/>
<
telerik:CategorySeriesItem
Y
=
"10000"
/>
</
SeriesItems
>
</
telerik:LineSeries
>
</
Series
>
<
XAxis
>
<
Items
>
<
telerik:AxisItem
LabelText
=
"1"
/>
<
telerik:AxisItem
LabelText
=
"2"
/>
<
telerik:AxisItem
LabelText
=
"3"
/>
</
Items
>
</
XAxis
>
</
PlotArea
>
<
ChartTitle
Text
=
"Product sales for 2011"
>
</
ChartTitle
>
<
Legend
>
<
Appearance
Position
=
"Bottom"
/>
</
Legend
>
</
telerik:RadHtmlChart
>
If you want, however, to hide the x-axis labels you should set the visible property in the right place:
<
XAxis
>
<
LabelsAppearance
Visible
=
"false"
></
LabelsAppearance
>
<
Items
>
<
telerik:AxisItem
LabelText
=
"1"
/>
<
telerik:AxisItem
LabelText
=
"2"
/>
<
telerik:AxisItem
LabelText
=
"3"
/>
</
Items
>
</
XAxis
>
Regards,
Danail Vasilev
Telerik
See What's Next in App Development. Register for TelerikNEXT.