Hi there
I am trying to add a Chart using wizard but I could not put the labels and values in the right order.
I want the names as Y axis and the total number of users as Labels written inside the bar
any help appreciated
I am trying to add a Chart using wizard but I could not put the labels and values in the right order.
I want the names as Y axis and the total number of users as Labels written inside the bar
any help appreciated
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:dev.EkonomiConnectionString %>" SelectCommand="SELECT COUNT(I.Is_Kayit_Id) as Total, (K.Adi + ' ' + K.Soyadi) isim FROM Is_Kayitlari I LEFT JOIN Kullanicilar K ON K.Kullanici_Id=I.Create_User GROUP BY K.Adi, K.Soyadi ORDER BY Total DESC"></asp:SqlDataSource> <telerik:RadChart ID="RadChart1" runat="server" DataSourceID="SqlDataSource1" SeriesOrientation="Horizontal" Width="800px"> <Series><telerik:ChartSeries Name="Total" DataLabelsColumn="isim" DataYColumn="Total"></telerik:ChartSeries></Series> <PlotArea> <XAxis> <AxisLabel> <Appearance RotationAngle="270"> </Appearance> </AxisLabel> </XAxis> <YAxis> <AxisLabel> <Appearance RotationAngle="0"> </Appearance> </AxisLabel> </YAxis> <YAxis2> <AxisLabel> <Appearance RotationAngle="0"> </Appearance> </AxisLabel> </YAxis2> </PlotArea> </telerik:RadChart>