Specify additional chart properties and override the default ones. This properties holds the chart properties while db???Chart properties holds the chart data.
dbQP Abbr: cp
Version: Gold
Namespace:
TornadoVersion: Gold
Assembly: Tornado (in Tornado.dll) Version: 12.6.0.9 (1.0.0.0)
Syntax
| C# |
|---|
public string dbChartParams { get; set; } |
| Visual Basic (Declaration) |
|---|
Public Property dbChartParams As String |
Field Value
Mydb.dbProp="prop=val| prop=val"See prop and val in Special Topic - Charting.
Remarks
Value of property is case sensitive.
Examples
<script language="VB" runat="server"> Sub Page_Load(Src As Object, E As EventArgs) Dim Ch As New Tornado.z Ch.dbQP = "u=1|s=1|m=gc|d=nwind|q=select ProductName,UnitsInStock," & _ "UnitsInStock as Delta from Products|th=ti=ChicCell Compare" Ch.dbColumnChart = "Legend=t| Label=#0#| Dataset0=#2#" Ch.dbChartParams = "PlotAreaBottom=0.5|legendVertical=t| height=550|" & _ "Width=500| xAxisLabelAngle=90|yAxisTitle=Delta Sales|" & _ "xAxisTitle=Product|yAxisOptions=rotateTitle=true" Ch.dbChicCell = "fi=2|mac=#-1#" Ch.ASPdbNET() End Sub </script>