The following Data Properties are available for use with the Chart Display Adapter. Click on a link to move directly to that section.
Controls the setup of data pointers in the chart.
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>
Controls the animation settings for each pointer in the data.
Example:
<animation enabled="true" start_time="0" duration="0.5" interpolation_type="Bounce"/>
This is used to add XML content to the Data node of the chart. This is useful if another property will not satisfy your configuration needs. The content will be appended to the Pointer node for each value in your chart. This usually negates the need to use Data Label/Tooltip/Marker/Animation Settings properties.
Example:
<label enabled="true">
<position placement_mode="ByPoint" x="50" y="15"/>
<format>% Complete: {%Value}{numDecimals:1}%</format>
<background enabled="false"/>
</label>
<animation enabled="true" start_time="0" duration="0.5" interpolation_type="Bounce"/>
Controls the label for each pointer in the data.
Example:
<label enabled="true">
<position placement_mode="ByPoint" x="50" y="15"/>
<format>% Complete: {%Value}{numDecimals:1}%</format>
<background enabled="false"/>
</label>
Controls the Markers for each pointer in the data.
Example:
<marker_style name="myMarker" color="Gold">
<marker type="Star5" size="16" />
<states>
<hover>
<marker size="22" />
</hover>
</states>
</marker_style>
Controls the tooltip for each pointer in the data.
Chart Type Example:
<tooltip enabled="true">
<format>{%YValue}</format>
</tooltip>
Gauge Type Example:
<tooltip enabled="true">
<format>{%Value}</format>
</tooltip>