How do I hide the data labels in a line chart. I have a simple databound chart and I can't turn of the data labels on either series.
I have the ShowLabels value set to False... I'm using the Q1-2010 beta
| <telerik:RadChart ID="RadChart3" runat="server" Width="800" Height="600px" DataSourceID="ssDatasource" |
| DefaultType="Line" SeriesOrientation="Vertical" Skin="Office2007" > |
| <ChartTitle> |
| <Appearance Position-AlignedPosition="Top"> |
| <FillStyle MainColor=""></FillStyle> |
| </Appearance> |
| <TextBlock Text="Application Usage"> |
| <Appearance TextProperties-Font="Tahoma, 13pt" TextProperties-Color="Black"></Appearance> |
| </TextBlock> |
| </ChartTitle> |
| <Series> |
| <telerik:ChartSeries Name="PeakUsages" Type="Line"> |
| <Appearance ShowLabels="False"> |
| <LabelAppearance Visible="false"></LabelAppearance> |
| </Appearance> |
| </telerik:ChartSeries> |
| <telerik:ChartSeries Name="LicenseCount" Type="Line"> |
| <Appearance ShowLabels="False"> |
| </Appearance> |
| </telerik:ChartSeries> |
| </Series> |
| <Appearance TextQuality="AntiAlias"> |
| </Appearance> |
| <Legend Visible="False"> |
| </Legend> |
| <PlotArea> |
| <Appearance Dimensions-Margins="18%, 5%, 25%, 5%"> |
| <FillStyle MainColor="White" FillType="Solid"></FillStyle> |
| <Border Color="134, 134, 134"></Border> |
| </Appearance> |
| <XAxis LayoutMode="Inside" AutoScale="false" DataLabelsColumn="UsageDate"> |
| <Appearance ValueFormat="ShortDate" MajorGridLines-Visible="false"> |
| <MajorGridLines PenStyle="Solid" Color="209, 222, 227" Visible="False" Width="0"></MajorGridLines> |
| <LabelAppearance RotationAngle="300" Position-AlignedPosition="Top"> |
| </LabelAppearance> |
| <TextAppearance TextProperties-Color="51, 51, 51"></TextAppearance> |
| </Appearance> |
| </XAxis> |
| <YAxis AutoScale="false" IsZeroBased="true" AxisMode="Normal" MinValue="0" MaxValue="35"> |
| <Appearance Color="134, 134, 134" MinorTick-Color="134, 134, 134" MinorTick-Width="0" MajorTick-Color="134, 134, 134"> |
| <MajorGridLines Color="209, 222, 227"></MajorGridLines> |
| <MinorGridLines Color="233, 239, 241"></MinorGridLines> |
| <TextAppearance TextProperties-Color="51, 51, 51"></TextAppearance> |
| </Appearance> |
| </YAxis> |
| </PlotArea> |
| </telerik:RadChart> |
| <br /> |