|
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/Masterpage_Example/ |
Upload File : |
Imports InfoSoftGlobal
Partial Class _Default
Inherits System.Web.UI.Page
''' <summary>
''' FusionCharts in Master Page
''' </summary>
Public Function GetMonthlyalesChartHtml() As String
'For a head start we have kept the example simple
'You can use complex code to render chart taking data streaming from
'database etc.
'Create the chart - Column 3D Chart with data from Data/Data.xml
Return FusionCharts.RenderChart("../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", "600", "300", False, True)
End Function
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Literal1.Text = GetMonthlyalesChartHtml()
End Sub
End Class