|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/VB_NET/BasicExample/ |
Upload File : |
Imports InfoSoftGlobal
Partial Class MultiChart
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
'This page demonstrates how you can show multiple charts on the same page.
'For this example, all the charts use the pre-built Data.xml (contained in /Data/ folder)
'However, you can very easily change the data source for any chart.
'IMPORTANT NOTE: Each chart necessarily needs to have a unique ID on the page.
'If you do not provide a unique Id, only the last chart might be visible.
'Here, we've used the ID chart1, chart2 and chart3 for the 3 charts on page.
'Create the chart - Column 3D Chart with data from Data/Data.xml
Literal1.Text = FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "../BasicExample/Data/Data.xml", "", "chart1", "600", "300", False, True)
'This page demonstrates how you can show multiple charts on the same page.
'For this example, all the charts use the pre-built Data.xml (contained in /Data/ folder)
'However, you can very easily change the data source for any chart.
'IMPORTANT NOTE: Each chart necessarily needs to have a unique ID on the page.
'If you do not provide a unique Id, only the last chart might be visible.
'Here, we've used the ID chart1, chart2 and chart3 for the 3 charts on page.
'Now, create a Column 2D Chart
Literal2.Text = FusionCharts.RenderChart("../FusionCharts/Column2D.swf", "../BasicExample/Data/Data.xml", "", "chart2", "600", "300", False, True)
'This page demonstrates how you can show multiple charts on the same page.
'For this example, all the charts use the pre-built Data.xml (contained in /Data/ folder)
'However, you can very easily change the data source for any chart.
'IMPORTANT NOTE: Each chart necessarily needs to have a unique ID on the page.
'If you do not provide a unique Id, only the last chart might be visible.
'Here, we've used the ID chart1, chart2 and chart3 for the 3 charts on page.
'Now, create a Line 2D Chart
Literal3.Text = FusionCharts.RenderChart("../FusionCharts/Line.swf", "../BasicExample/Data/Data.xml", "", "chart3", "600", "300", False, True)
'This page demonstrates how you can show multiple charts on the same page.
'For this example, all the charts use the pre-built Data.xml (contained in /Data/ folder)
'However, you can very easily change the data source for any chart.
'IMPORTANT NOTE: Each chart necessarily needs to have a unique ID on the page.
'If you do not provide a unique Id, only the last chart might be visible.
'Here, we've used the ID chart1, chart2 and chart3 for the 3 charts on page.
'Now, create a Line 2D Chart
Literal4.Text = FusionCharts.RenderChart("../FusionCharts/SSGrid.swf", "../BasicExample/Data/Data.xml", "", "chart4", "600", "300", False, True)
End Sub
End Class