Marker

Marker class

Represents the marker in a line chart, scatter chart, or radar chart.

class Marker;

Properties

PropertyTypeDescription
borderLineReadonly. Gets the border.
areaAreaReadonly. Gets the area.
markerStyleChartMarkerTypeRepresents the marker style. Applies to line chart, scatter chart, or radar chart.
markerSizenumberRepresents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart.
markerSizePxnumberRepresents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart.
foregroundColorColorRepresents the marker foreground color in a line chart, scatter chart, or radar chart.
foregroundColorSetTypeFormattingTypeGets or sets the marker foreground color set type.
backgroundColorColorRepresents the marker background color in a line chart, scatter chart, or radar chart.
backgroundColorSetTypeFormattingTypeGets or sets the marker background color set type.

Methods

MethodDescription
getBorder()@deprecated. Please use the ‘border’ property instead. Gets the border.
getArea()@deprecated. Please use the ‘area’ property instead. Gets the area.
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.

border : Line;

area

Readonly. Gets the area.

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 border.

getBorder() : Line;

Returns

Line

getArea()

@deprecated. Please use the ‘area’ property instead. Gets the area.

getArea() : Area;

Returns

Area

getMarkerStyle()

@deprecated. Please use the ‘markerStyle’ property instead. Represents the marker style. Applies to line chart, scatter chart, or radar chart.

getMarkerStyle() : ChartMarkerType;

Returns

ChartMarkerType

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:

ParameterTypeDescription
valueChartMarkerTypeThe 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:

ParameterTypeDescription
valuenumberThe 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:

ParameterTypeDescription
valuenumberThe 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

Color

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:

ParameterTypeDescription
valueColorThe value to set.

getForegroundColorSetType()

@deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type.

getForegroundColorSetType() : FormattingType;

Returns

FormattingType

setForegroundColorSetType(FormattingType)

@deprecated. Please use the ‘foregroundColorSetType’ property instead. Gets or sets the marker foreground color set type.

setForegroundColorSetType(value: FormattingType) : void;

Parameters:

ParameterTypeDescription
valueFormattingTypeThe 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

Color

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:

ParameterTypeDescription
valueColorThe value to set.

getBackgroundColorSetType()

@deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type.

getBackgroundColorSetType() : FormattingType;

Returns

FormattingType

setBackgroundColorSetType(FormattingType)

@deprecated. Please use the ‘backgroundColorSetType’ property instead. Gets or sets the marker background color set type.

setBackgroundColorSetType(value: FormattingType) : void;

Parameters:

ParameterTypeDescription
valueFormattingTypeThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;