Returns the chart HTML code.
Namespace:
TornadoAssembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
| C# |
|---|
public string ASPdbUserChart( bool ChartOnly ) |
| Visual Basic (Declaration) |
|---|
Public Function ASPdbUserChart ( _ ChartOnly As Boolean _ ) As String |
Parameters
- ChartOnly
- Type: System..::.Boolean
True|False(Def) - Returns with title and Css control. Normally for data that needs processing. The exported code can be insertion into a Web Control or your only template. This export is the same as the code going into [[Chart]].
Return Value
Chart HTML Code.
Examples
<script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim Bar As New Tornado.z With Bar .dbQP = "U=15|S=13| PS=10" .dbBarChart = "Label=A,B,C,E,F,G,H,I,J| DataSet0=43,89,21,65,52,157,10,47,76,111" .dbTextHolder = "Title=Bar Chart" Response.Write(.ASPdbUserChart) End With End Sub </script>