Using FusionCharts with ASP.NET 2.0 (VB)>> ASP.NET.AJAX Update Panel |
FusionCharts can effectively be used in ASP.NET.AJAX Update Panel to plot dynamic data-driven charts. In this example, we'll show a few basic examples to help you get started. We'll cover the following examples here:
Let's quickly see each of them. Before you go further with this page, we recommend you to please see the previous sections "Basic Examples" and other subsequent pages as we start off from concepts explained in that page. |
All code discussed here is present in Download Package > Code > VB_NET > UpdatePanel folder. |
To use Update Panel you need to have ASP.NET AJAX Extension installed in your machine. You can download it from http://www.asp.net/ajax/downloads. You need to rename the given web.config.ajax to web.config to incorporate the ASP.NET.AJAX extension. |
Creating UpdatePanels |
We will create 3 UpdatePanels:
The design view will look like this : |
![]() |
Let's look at the UpdatePanel code for the FactorySelector: (Sample1.aspx) |
<asp:UpdatePanel ID="FactorySelector" runat="server"> <ContentTemplate> <asp:RadioButtonList ID="RadioButtonList1" runat="server" AutoPostBack="True" Height="40px" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged" Width="400px" RepeatDirection="Horizontal" Style="font-weight: bold; font-size: 14px; font-family: Verdana" ForeColor="#404040"> </asp:RadioButtonList> </ContentTemplate> </asp:UpdatePanel> |
Here we set a code behind function to be called when selection changes. Since AutoPostBack is set to true it will evoke AJAX call. |
The UpdatePanel code that will contain the chart is simpler. |
<asp:UpdatePanel ID="FusionChartsUP" runat="server"> <ContentTemplate> <asp:Panel ID="Panel1" runat="server" Height="350px" Width="440px"> </asp:Panel> s </ContentTemplate> </asp:UpdatePanel> |
Here we place a Panel control where the chart will be loaded. |
Now let's find out what happens in the code-behind (Sample1.aspx.vb) function RadioButtonList1_SelectedIndexChanged() when a Factory is selected : |
'When radio button selection changes i.e., selected factory changes Protected Sub RadioButtonList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) 'Update FusionCharts and gridview with as per selected factory updateChart() End Sub |
It calls UpdateChart() function. Let's trace it: |
Private Sub updateChart() 'Get factory details depending on FactoryID from selected Radio Button 'Create data reader to bind data with GridView 'Create database connection to get data for chart 'Create FusionCharts XML 'Iterate through database 'Create set element End While 'Close chart element 'outPut will store the HTML of the chart rendered as string 'when an ajax call is made we use RenderChartHTML method Else 'When the page is loaded for the first time, we call RenderChart() method to avoid IE's 'Click here to Activate...' message 'Clear panel which will contain the chart 'Add Literal control to Panel which adds the chart from outPut string ' close Data Reader |
In the above code we do the following :
|
Note that we also used InfoSoftGlobal.FusionCharts.RenderChart() method when isPostBack is false. We do this for a specific reason to deal with the Internet Explorer's 'Click Here to Activate Control' message when a page loads for the first time, i.e., no post back is done. |
Thus, the chart gets updated in UpdatePanel, using AJAX, each time a factory is selected from the Radio buttons list. Here goes a screenshot of one instance : |
![]() |
Modified Sample |
We now modify the sample above to insert two charts. One on the left, a pie chart with summary data, showing total production of each Factory in each slice. On clicking a slice, i.e., selecting a Factory, another chart will show up in an UpdatePanel. This chart, a Column2D chart, like the previous example will show the details of the selected Factory. |
Let's see how the design is modified :(Sample2.aspx) |
![]() |
Here, we put only one UpdatePanel i.e., FusionChartsUP that will load up the chart. The HTML code for this remains the same as the previous example. The left part will contain the Pie chart that will load up once, when the page is loaded first. But we have added a small Javascript snippet to this page : |
<script language="javascript" type="text/javascript"> //Call Ajax PostBack Function function updateChart(factoryId){ //Call drillDown C# function by Ajax //we pass the name of the function ('drillDown') to call //and the parameter (i.e., factoryId) to be passed to it //both separated by a delimiter(here we use $, you can use anything) __doPostBack("Panel1","drillDown$" + factoryId); } </script> |
This function is actually invoked when a pie slice is clicked. The factory id is passed to the function. This function used the ASP.NET.AJAX 's function __doPostBack(). This function takes 2 parameters. The first one is name of the control where post-back updates will be reflected. Through the second parameter we pass the name of the code-behind function to be called along with the parameter. This parameter passed to the code-behind script as request variable - __EVENTARGUMENT. |
To know more on how to evoke JavaScript functions from a chart please refer to section Guide for Web Developers >> Drill Down Charts |
Let's now see how the request is treated in the code-behind file Sample2.aspx.vb. |
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ' Show a blank Column2D Chart at first Dim sEventArguments As String = Request("__EVENTARGUMENT") 'extract arguments passed to the HTTP Request |
The above code is executed whenever a page is loaded be is at first or through AJAX call. It does the following :
|
The final output will look like this : |
![]() |