I have a chart which shows two series, a column series and a line series. The line series should not always be visible. So I created it like this:
<Series> <telerik:ColumnSeries DataFieldY="Emission" Name="Year"> <Appearance> <Overlay Gradient="None"></Overlay> </Appearance> <LabelsAppearance DataFormatString="0.00"> <TextStyle Color="#62BAE4" FontFamily="Tahoma" FontSize="10px" /> </LabelsAppearance> <TooltipsAppearance DataFormatString="0.00" ClientTemplate="#=kendo.format(\'{0:N2}\', dataItem.Emission)# ton co<sub>2</sub>" /> </telerik:ColumnSeries> <telerik:LineSeries DataFieldY="AbsoluteGoalEmission" Name="Goal" Visible="false" > <Appearance> <Overlay Gradient="None"></Overlay> </Appearance> <Appearance FillStyle-BackgroundColor="Green" /> <LabelsAppearance DataFormatString="0.00" Position="Below" Visible="false" > <TextStyle Color="Green" FontFamily="Tahoma" FontSize="10px" /> </LabelsAppearance> </telerik:LineSeries> </Series>
Note how both the lineseries and the labelsappearance are set to Visible="false"
However...... this doesn't hide the label under the x-axis at all (the line series itself is nicely invisible), all it does is make the label grey as if disabled.
I need it to do what it implies: completely hide the label.
What am i missing?