Is it possible to display the NameField value in the Tooltip on a RadHtmlChart?
On mouse over I want it to show: "ABC County: 50".
Thanks
On mouse over I want it to show: "ABC County: 50".
Thanks
<telerik:RadHtmlChart runat="server" ID="CaseCountyPieChart" Width="300" DataSourceID="CaseCountyByDateRangeLinqDataSource" Transitions="true"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle Text="Cases by Case County"> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Bottom" Visible="true" /> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <Series> <telerik:PieSeries NameField="county" DataFieldY="caseCount" StartAngle="90"> <LabelsAppearance Position="Circle" DataFormatString="{0}" /> <TooltipsAppearance DataFormatString=" NameField Here: {0}" /> </telerik:PieSeries> </Series> </PlotArea></telerik:RadHtmlChart>