SetDataMarker method: Chart class
Syntax
SetDataMarker(Record_Name.Field_Name1, ...)
Description
Use the SetDataMarker method to set the shape of data markers, which can be used to highlight certain data points on a chart. Data markers can be used only with line charts, bubble charts, and scatter charts.
The String value of this field must be one of these values:
| Value | Description |
|---|---|
|
square |
Square |
|
circle |
Circle |
|
diamond |
Diamond |
|
plus |
Plus sign |
|
triangleDown |
Triangle with tip down |
|
triangleUp |
Triangle with tip up |
|
human |
Human |
|
auto |
Automatically selected by the chart engine |
Parameters
| Parameter | Description |
|---|---|
|
Record_Name.Field_Name1, ... |
Specify the name of the record and one or more fields on that record that contain the data for the data marker types for the chart. Note: The order of fields specified must correspond to the number and order specified by the SetDataYAxis method. |
Returns
None.
Example
&oChart.SetDataMarkerSize(QE_CHART_NPARKS.QE_CHART_MARKER);
Related Topics