Hi,
Sure, it is possible. You can download jqChart for ASP.NET Web Forms:
http://www.jqchart.com/Download.aspxand open the sample under the "samples" folder. It show how to bind jqChart to an ObjectDataSource.
Code:<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData"
TypeName="SamplesBrowser.Models.ChartData"></asp:ObjectDataSource>
<jqChart:Chart ID="Chart1" Width="500px" Height="300px" runat="server" DataSourceID="ObjectDataSource1">
<Title Text="Chart Title"></Title>
<Animation Enabled="True" Duration="00:00:01" />
<Axes>
<jqChart:CategoryAxis Location="Bottom" ZoomEnabled="true">
</jqChart:CategoryAxis>
</Axes>
<Series>
<jqChart:ColumnSeries XValuesField="Label" YValuesField="Value1" Title="Column">
</jqChart:ColumnSeries>
<jqChart:LineSeries XValuesField="Label" YValuesField="Value2" Title="Line">
</jqChart:LineSeries>
</Series>
</jqChart:Chart>
With the same way you can bind the chart to a DataView or DataSet. In this case in the XValuesField and YValuesField you need to set the name of the column in your view.
Best,
Ivan Petrov
jqChart Inc.