I have several chart questions.
1) I want to change the label for each series item to "Name" or "TooltipValue". Is this possible?
2) What is the purpose of the TooltipValue? The tooltip always displays XValue,YValue and never displays the value et for TooltipValue.
3) I need to display the Name values for each SeriesItem in alpha order as the Legend. Is this possible?
1) I want to change the label for each series item to "Name" or "TooltipValue". Is this possible?
2) What is the purpose of the TooltipValue? The tooltip always displays XValue,YValue and never displays the value et for TooltipValue.
3) I need to display the Name values for each SeriesItem in alpha order as the Legend. Is this possible?
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server"> <PlotArea> <Series> <telerik:ScatterSeries Name="XXX Data"> <TooltipsAppearance Visible="true" /> <Items> <telerik:SeriesItem XValue="1674" YValue="4.3" TooltipValue="ABC" Name="ABC" /> <telerik:SeriesItem XValue="6468" YValue="3.4" TooltipValue="DEF" Name="DEF"/> <telerik:SeriesItem XValue="3600" YValue="3.4" /> <telerik:SeriesItem XValue="5252" YValue="2.9" /> <telerik:SeriesItem XValue="2612" YValue="1.6" /> <telerik:SeriesItem XValue="1054" YValue="1.3" /> </Items> </telerik:ScatterSeries> </Series> <XAxis MajorTickType="Outside" MinorTickType="Outside" Reversed="false" Step="1000" AxisCrossingValue="0" MinValue="0" MaxValue="7000"> <TitleAppearance Position="Center" RotationAngle="0" Text="Error Count" /> <LabelsAppearance DataFormatString="{0}" RotationAngle="0" /> <MajorGridLines Color="#EFEFEF" Width="1" /> <MinorGridLines Color="#F7F7F7" Width="1" /> </XAxis> <YAxis Color="Black" MajorTickSize="1" MajorTickType="Outside" Reversed="false" MinorTickType="None" MaxValue="8.0" MinValue="0.0" Step="0.5" AxisCrossingValue="0.0"> <TitleAppearance Position="Center" RotationAngle="0" Text="Error Percent" /> <LabelsAppearance DataFormatString="{0}" RotationAngle="0" /> <MajorGridLines Color="#EFEFEF" Width="1" /> <MinorGridLines Color="#F7F7F7" Width="1" /> </YAxis> </PlotArea> <ChartTitle Text="XXX Data"> <Appearance Align="Center" BackgroundColor="White" Position="Top" /> </ChartTitle> <Legend> <Appearance Visible="true" /> </Legend></telerik:RadHtmlChart>