Marker
Marker class
Represents the marker in a line chart, scatter chart, or radar chart.
class Marker;
Properties
Property | Type | Description |
---|---|---|
border | Line | Readonly. Gets the |
area | Area | Readonly. Gets the |
markerStyle | ChartMarkerType | Represents the marker style. Applies to line chart, scatter chart, or radar chart. |
markerSize | number | Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart. |
markerSizePx | number | Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart. |
foregroundColor | Color | Represents the marker foreground color in a line chart, scatter chart, or radar chart. |
foregroundColorSetType | FormattingType | Gets or sets the marker foreground color set type. |
backgroundColor | Color | Represents the marker background color in a line chart, scatter chart, or radar chart. |
backgroundColorSetType | FormattingType | Gets or sets the marker background color set type. |
Methods
Method | Description |
---|---|
getBorder() | @deprecated. Please use the ‘border’ property instead. Gets the |
getArea() | @deprecated. Please use the ‘area’ property instead. Gets the |
getMarkerStyle() | @deprecated. Please use the ‘markerStyle’ property instead. Represents the marker style. Applies to line chart, scatter chart, or radar chart. |
setMarkerStyle(ChartMarkerType) | @deprecated. Please use the ‘markerStyle’ property instead. Represents the marker style. Applies to line chart, scatter chart, or radar chart. |
getMarkerSize() | @deprecated. Please use the ‘markerSize’ property instead. Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart. |
setMarkerSize(number) | @deprecated. Please use the ‘markerSize’ property instead. Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart. |
getMarkerSizePx() | @deprecated. Please use the ‘markerSizePx’ property instead. Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart. |
setMarkerSizePx(number) | @deprecated. Please use the ‘markerSizePx’ property instead. Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart. |
getForegroundColor() | @deprecated. Please use the ‘foregroundColor’ property instead. Represents the marker foreground color in a line chart, scatter chart, or radar chart. |
setForegroundColor(Color) | @deprecated. Please use the ‘foregroundColor’ property instead. Represents the marker foreground color in a line chart, scatter chart, or radar chart. |
getForegroundColorSetType() | @deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type. |
setForegroundColorSetType(FormattingType) | @deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type. |
getBackgroundColor() | @deprecated. Please use the ‘backgroundColor’ property instead. Represents the marker background color in a line chart, scatter chart, or radar chart. |
setBackgroundColor(Color) | @deprecated. Please use the ‘backgroundColor’ property instead. Represents the marker background color in a line chart, scatter chart, or radar chart. |
getBackgroundColorSetType() | @deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type. |
setBackgroundColorSetType(FormattingType) | @deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type. |
isNull() | Checks whether the implementation object is null. |
border
Readonly. Gets the
border : Line;
area
Readonly. Gets the
area : Area;
markerStyle
Represents the marker style. Applies to line chart, scatter chart, or radar chart.
markerStyle : ChartMarkerType;
markerSize
Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart.
markerSize : number;
markerSizePx
Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart.
markerSizePx : number;
foregroundColor
Represents the marker foreground color in a line chart, scatter chart, or radar chart.
foregroundColor : Color;
foregroundColorSetType
Gets or sets the marker foreground color set type.
foregroundColorSetType : FormattingType;
backgroundColor
Represents the marker background color in a line chart, scatter chart, or radar chart.
backgroundColor : Color;
backgroundColorSetType
Gets or sets the marker background color set type.
backgroundColorSetType : FormattingType;
getBorder()
@deprecated. Please use the ‘border’ property instead. Gets the
getBorder() : Line;
Returns
getArea()
@deprecated. Please use the ‘area’ property instead. Gets the
getArea() : Area;
Returns
getMarkerStyle()
@deprecated. Please use the ‘markerStyle’ property instead. Represents the marker style. Applies to line chart, scatter chart, or radar chart.
getMarkerStyle() : ChartMarkerType;
Returns
setMarkerStyle(ChartMarkerType)
@deprecated. Please use the ‘markerStyle’ property instead. Represents the marker style. Applies to line chart, scatter chart, or radar chart.
setMarkerStyle(value: ChartMarkerType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ChartMarkerType | The value to set. |
getMarkerSize()
@deprecated. Please use the ‘markerSize’ property instead. Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart.
getMarkerSize() : number;
setMarkerSize(number)
@deprecated. Please use the ‘markerSize’ property instead. Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart.
setMarkerSize(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getMarkerSizePx()
@deprecated. Please use the ‘markerSizePx’ property instead. Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart.
getMarkerSizePx() : number;
setMarkerSizePx(number)
@deprecated. Please use the ‘markerSizePx’ property instead. Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart.
setMarkerSizePx(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getForegroundColor()
@deprecated. Please use the ‘foregroundColor’ property instead. Represents the marker foreground color in a line chart, scatter chart, or radar chart.
getForegroundColor() : Color;
Returns
setForegroundColor(Color)
@deprecated. Please use the ‘foregroundColor’ property instead. Represents the marker foreground color in a line chart, scatter chart, or radar chart.
setForegroundColor(value: Color) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | Color | The value to set. |
getForegroundColorSetType()
@deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type.
getForegroundColorSetType() : FormattingType;
Returns
setForegroundColorSetType(FormattingType)
@deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type.
setForegroundColorSetType(value: FormattingType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | FormattingType | The value to set. |
getBackgroundColor()
@deprecated. Please use the ‘backgroundColor’ property instead. Represents the marker background color in a line chart, scatter chart, or radar chart.
getBackgroundColor() : Color;
Returns
setBackgroundColor(Color)
@deprecated. Please use the ‘backgroundColor’ property instead. Represents the marker background color in a line chart, scatter chart, or radar chart.
setBackgroundColor(value: Color) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | Color | The value to set. |
getBackgroundColorSetType()
@deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type.
getBackgroundColorSetType() : FormattingType;
Returns
setBackgroundColorSetType(FormattingType)
@deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type.
setBackgroundColorSetType(value: FormattingType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | FormattingType | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;