Hi i am working with Ajax Line chart ,bind data to the chart from database. But the chart is not able to bind the data, no error it showing with horizontal line only.
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:LineChart ID="LineChart1" runat="server" ChartHeight="350" ChartWidth="450"
ChartType="Basic" Width="904px" hartTitleColor="#0E426C"
CategoryAxisLineColor="#D08AD9"
ValueAxisLineColor="#D08AD9" BaseLineColor="#A156AB"
ChartTitle="HB Score" >
</asp:LineChart>
..........................................
private static DataTable GetData(string query)
{
DataTable dt = new DataTable();
string constr = ConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString;
using (SqlConnection co ...
Go to the complete details ...