Hi,
I am implementing (Framework 4.0's) Chart Control. This is working fine.
<asp:Chart ID="Chart1" runat="server">
<Titles>
<asp:Title Text="User Entry Count">
</asp:Title>
</Titles>
<Legends>
<asp:Legend Alignment="Center" Docking="Bottom" IsTextAutoFit="False" Name="Legend" LegendStyle="Row" />
</Legends>
<Series>
<asp:Series Name="User count" ChartArea="ChartArea1">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1" BorderWidth="0">
<AxisX Interval="1">
</AxisX>
</asp:ChartArea>
</ChartAreas>
...
Go to the complete details ...