Hi, I'm using Telerik.Web.UI v. 2014.1.403.45
I have a chart in my page to display wind polar data.
The chart is binded to SqlServer data, and the query result data are displayed correctly (i.e. the chart is binded to the data source).
What is not working is the x-axis label data binding: i set the DataLabelsField field to have a textual value displayed, instead of the numeric one, but nothing happens, and the numeric data is not replaced.
<telerik:RadHtmlChart ID="radHtmlChart" runat="server" Width="1024px" Height="768px" Transitions="true">
<PlotArea>
<XAxis StartAngle="90" Reversed="true" Type="Category" Visible="true" DataLabelsField="TXT">
</XAxis>
<Series>
<telerik:PolarAreaSeries Name="WindData" DataAngleField="DEGR" DataRadiusField="NUM">
</telerik:PolarAreaSeries>
</Series>
</PlotArea>
</telerik:RadHtmlChart>
I have a chart in my page to display wind polar data.
The chart is binded to SqlServer data, and the query result data are displayed correctly (i.e. the chart is binded to the data source).
What is not working is the x-axis label data binding: i set the DataLabelsField field to have a textual value displayed, instead of the numeric one, but nothing happens, and the numeric data is not replaced.
<telerik:RadHtmlChart ID="radHtmlChart" runat="server" Width="1024px" Height="768px" Transitions="true">
<PlotArea>
<XAxis StartAngle="90" Reversed="true" Type="Category" Visible="true" DataLabelsField="TXT">
</XAxis>
<Series>
<telerik:PolarAreaSeries Name="WindData" DataAngleField="DEGR" DataRadiusField="NUM">
</telerik:PolarAreaSeries>
</Series>
</PlotArea>
</telerik:RadHtmlChart>