Define Bubble chart for GridChart or standalone mode.

dbQP Abbr: buch
Version: Gold

Namespace:  Tornado
Assembly:  Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)

Syntax

C#
public string dbBubbleChart { get; set; }
Visual Basic (Declaration)
Public Property dbBubbleChart As String

Field Value

Mydb.dbBubbleChart = "Name| X0| Y0| S0, Name39| X39| Y39 ...." (Max 40 sets)
KeywordDescription
NameFieldNameOrNumber providing the Name of the bubble set.
XX values of the bubble set.
YY values of the bubble set.

Remarks

Check HTML dump for defaults.

Overide the values with dbChartParams.

Examples

CopyVB.NET
<script language="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
Dim CSV As String = "F1,F2,F3,F4,F5,F6" & vbCrLf & "-5,0,50,0,80,80" & vbCrLf & "0,-120,200,8,100,70" & vbCrLf
CSV &= "-5,250,150,3,250,150"
Dim util As New Tornado.Util
util.WriteFile("/aspdb/scratch/TestBubble.Csv", CSV)
Dim Area As New Tornado.z
With Area
   .dbQP = "U=5| S=oceanbelow| PS=-1| Ni=none| M=Gc| Q=Select * From TestBubble.Csv| Dt=TEXT| Pv=OLEDB"
   .dbDSN = "/aspdb/scratch"
   Dim Bc As String = "Name0=Bubble Zero| X0=#0#| Y0=#1#| S0=#2#| Name1=Bubble One| X1=#3#| Y1=#4#| S1=#5#|"
   Bc &= "Name2=My Bubble| X2=-7,-5,7| Y2=6,-120,-150| S2=100,150,100|leg=f"
   .dbBubbleChart = Bc
   .dbTextHolder = "Title=Bubble Chart"
   .ASPDBNET()
End With
End Sub
</script>

See Also