Could someone please explain why the first (jqChart) chart plots no values but the second (MS Chart) chart does when they're both pulling from the same defined SQLDatasource
Code: <jqChart:Chart ID="Chart1" Width="500px" Height="300px" runat="server"
DataSourceID="SDQ">
<Title Text="Chart Title"></Title>
<Animation Enabled="True" DelayTime="00:00:10" />
<Axes>
<jqChart:CategoryAxis Location="Bottom" ZoomEnabled="true">
</jqChart:CategoryAxis>
</Axes>
<Series>
<jqChart:LineSeries YValuesField="Total_FTE" XValuesField="FN" ></jqChart:LineSeries>
</Series>
</jqChart:Chart>
Code:<asp:Chart ID="Chart2" runat="server" DataSourceID="SDQ">
<Series>
<asp:Series ChartArea="ChartArea1" Name="Series1" XValueMember="FN"
YValueMembers="Total_FTE">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
</asp:ChartArea>
</ChartAreas>
</asp:Chart>