I am using Visual Studio 3.5 chart control :
<asp:Chart ID="Chart1" runat="server">
<Series>
<asp:Series Name="Series1" ChartArea="ChartArea1" ChartType="Bar">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
</asp:ChartArea>
</ChartAreas>
</asp:Chart>
and I need to show data in this chart which I will retrieve from SQL Server here what I want to retrieve and show :
select PONumber, CompletionTimeMonths, CreatedOn
from PurchaseOrder;
Now this is the 1ts time I am using chart control; how can I show this?