Controls the setup of data pointers in the chart.
Example for a typical Business Data Analysis Output:
<data>
<setup>
<Table>Table1</Table>
<DataName>Group Name</DataName>
<DataY>Group Value</DataY>
</setup>
</data>
Example for a typical Business Data Analysis Output for a gauge chart:
<data>
<setup>
<Table>Table1</Table>
<Name>Group Name</Name>
<DataValue>Group Value</DataValue>
<DataType>ChartType</DataType>
<DataColor>ColorValue</DataColor>
</setup>
</data>
Many of these settings require a column in your provider to be referenced for the value. For instance, DataColor states the name of the column that will be used to control the color of an item within the chart. To accomplish this, you could use Add Column XML in this manner to provide this value:
<AddColumn>
<Column>
<ColumnName>ColorValue</ColumnName>
<ColumnType>System.String</ColumnType>
<Expression>’Red’</Expression>
</Column>
</AddColumn>
Alternatively, the <DataType> node could be specified in the provider like this:
<AddColumn>
<Column>
<ColumnName>ChartType</ColumnName>
<ColumnType>System.String</ColumnType>
<Expression>’Thermometer’</Expression>
</Column>
</AddColumn>
Type: Boolean
Sets whether points in the series can be selected.
Type: String
The color for all series items.
Type: String
Sets the function name for the call type.
Type: String
The source for UpdateView and UpdateChart types - chart name or xml file name, depending on source mode.
Type: String
The source mode for UpdateView and UpdateChart types.
Type: String
The name of the column that will be used to indicate the type of action that will be associated with an item.
• NavigateToURL
• Call
• UpdateChart
• UpdateView
• Scroll
• Zoom
• ScrollView
• ZoomView
Type: String
Sets a URL for NavigateToURL type.
Type: String
Sets a URL Target for NavigateToURL type.
Type: String
The view name to be updated for UpdateView, ScrollView, and ZoomView types.
Type: Boolean
The name of the column that will be used to control whether a point can be selected.
Type: String
The name of the column that will be used as the Type Extra Axis name if one is presented.
Type: Number
The name of the column that will be used as the Close value for OHLC, Candlestick charts.
Type: String
The name of the column that will be used to control the color of an item within the chart.
Type: Number
The name of the column that will be used as the End value for range charts.
Type: Boolean
The name of the column that will be used to indicate if a pie wedge should be exploded.
Type: String
The name of the column that will be used to control the Hatch fill type for chart item.
• BackwardDiagonal
• ForwardDiagonal
• Horizontal
• Vertical
• DashedBackwardDiagonal
• Grid
• DashedForwardDiagonal
• DashedHorizontal
• DashedVertical
• DiagonalCross
• DiagonalBrick
• Divot
• HorizontalBrick
• VerticalBrick
• Checkerboard
• Confetti
• Plaid
• SolidDiamond
• ZigZag
• Weave
• Percent05
• Percent10
• Percent20
• Percent25
• Percent30
• Percent40
• Percent50
• Percent60
• Percent70
• Percent75
• Percent80
• Percent90
Type: Number
The name of the column that will be used as the High value for OHLC, Candlestick charts.
Type: Boolean
The name of the column that will be used to indicate if an element can be hovered.
Type: String
The name of the column that will be used to place an element (marker, connector, or line part) according to linked region centroid.
Type: Number
The name of the column that will be used as the Low value for OHLC, Candlestick charts
Type: String
The name of the column that will be used as the title of an item within the chart.
Type: Number
The name of the column that will be used as the Open value for OHLC, Candlestick charts
Type: Boolean
The name of the column that will be used to indicate if an item should be selected by default.
Type: String
The name of the column that will be used as the shape type to be used when drawing bar chart series.
• Box
• Cylinder
• Pyramid
• Cone
Type: Number
The name of the column that will be used as the Size for bubbles.
Type: Number
The name of the column that will be used as the Start value for range charts
Type: String
The style applied to all series items.
Type: String
The name of the column that will be used to indicate the type of pointer.
• marker
• bar
• thermometer
• tanker
• rangeBar
Type: Boolean
The name of the column that will be used to indicate if a hand cursor will be shown when the mouse cursor moves over the series elements.
Type: String
The name of the column that will be used as the value the pointer is set to according to scale.
Type: String
The name of the column that will be used as the X (argument) for Scatter plot charts.
Type: String
The name of the column that will be used as the Y point value in the chart.
Type: String
The name of the hatch palette to be applied to all of the data series.
Type: String
The hatch fill type for all series items.
Type: Boolean
Defines whether elements can be hovered.
Type: String
The name of the marker palette to be applied to all of the data series.
Type: String
The series name.
Type: String
The name of the color palette to be applied to all of the data series.
Type: String
Use this property to include any extra XML that may be necessary for the configuration of a series.
Type: String
Defines the shape type to be used when drawing bar chart series.
• Box
• Cylinder
• Pyramid
• Cone
Type: Number
The tarting angle for Pie and Doughnut series.
Type: String
The style applied to all series items.
Type: String
The name of the table that data will be retrieved from.
Type: String
The name of the threshold applied to all series and points on the data plot.
Type: String
Controls the type of chart that will be displayed.
• Bar
• RangeBar
• Line
• RangeArea
• RangeSplineArea
• Spline
• Marker
• Area
• SplineArea
• StepLineForward
• StepLineBackward
• StepLineForwardArea
• StepLineBackwardArea
• Bubble
• Candlestick
• OHLC
Type: Boolean
Defines whether hand cursor will be shown when the mouse cursor moves over the series elements.
Type: String
Sets the name of the Y Axis for this series.
Example:
<data>
<setup>
<Table>Table1</Table>
<DataName>Group Name</DataName>
<DataY>Group Value</DataY>
</setup>
</data>