With two items retrieved from database Open and PastDue, Horizontal Bar Chart, looking at example in PDF documentation Page #47.
What I want as output is something like
TotalOpen ========================================= 301
TotalPast ========= 13
Problem is that I can't seem to figure out how to get the YColumn Text, the example below is
like the 10th variation
Thanks!
What I want as output is something like
TotalOpen ========================================= 301
TotalPast ========= 13
Problem is that I can't seem to figure out how to get the YColumn Text, the example below is
like the 10th variation
Thanks!
<telerik:RadChart ID="RadChart1" runat="server"
Skin="WebBlue" AutoLayout="true" Height="350px" Width="680px" SeriesOrientation="Horizontal">
<Series>
<telerik:ChartSeries DataYColumn="Open" Name="Total Open"></telerik:ChartSeries>
<telerik:ChartSeries DataYColumn="Past" Name="Total Past"></telerik:ChartSeries>
</Series>
<PlotArea >
<XAxis AutoScale="True">
<Items>
<telerik:ChartAxisItem TextBlock-Text="Open" />
<telerik:ChartAxisItem TextBlock-Text="Past TAT" />
</Items>
</XAxis>
</PlotArea>
<Legend Appearance-Position-AlignedPosition="right" Visible="false"></Legend>
</telerik:RadChart>