class anychart.core.scatter.series.Marker Improve this Doc
Extends: anychart.core.scatter.series.Base
Define Marker series type. Get instance by methods anychart.charts.Scatter#marker.
Methods Overview
| Specific settings | |
| clip() | Clip settings. |
| hoverSize() | Marker size settings in hover mode. |
| hoverType() | Marker type settings in hover mode. |
| id() | Series id. |
| legendItem() | Legend item settings. |
| selectType() | Marker type settings in selected mode. |
| selectionMode() | Selection mode. |
| size() | Marker size settings. |
| transformX() | Transforms X value to pixel coordinates. |
| transformY() | Transforms Y value to pixel coordinates. |
| type() | Marker type settings. |
| Coloring | |
| color() | Color settings. |
| fill() | Fill settings. |
| hatchFill() | Hatch fill settings. |
| hoverFill() | Fill settings in hover mode. |
| hoverHatchFill() | Hatch fill settings in hover mode. |
| hoverStroke() | Stroke settings in hover mode. |
| selectFill() | Fill settings in selected mode. |
| selectHatchFill() | Hatch fill settings in selected mode. |
| selectStroke() | Stroke settings in selected stroke. |
| stroke() | Stroke settings. |
| Data | |
| data() | Data settings. |
| excludePoint() | Excludes points at the specified index. |
| getExcludedPoints() | Returns an array of excluded points. |
| getStat() | Getter for the statistics value by key. |
| includeAllPoints() | Includes all excluded points. |
| includePoint() | Includes excluded points with the specified indexes. |
| keepOnlyPoints() | Keep only the specified points. |
| meta() | Series meta data settings. |
| name() | Series name settings. |
| Events | |
| listen() | Adds an event listener. |
| listenOnce() | Adds a single time event listener. |
| removeAllListeners() | Removes all listeners. |
| unlisten() | Removes the listener. |
| unlistenByKey() | Removes the listener by the key. |
| Export | |
| print() | Prints all elements. |
| Interactivity | |
| enabled() | Element state (enabled or disabled). |
| hover() | Hover settings. |
| select() | Select settings. |
| tooltip() | Tooltip settings. |
| unhover() | Removes hover from the series point or series. |
| unselect() | Deselects all selected points. |
| Point Elements | |
| error() | Error settings. |
| getPoint() | Gets wrapped point by index. |
| hoverLabels() | Labels settings in hover mode. |
| labels() | Labels settings. |
| selectLabels() | Labels settings in selected mode. |
| Scales | |
| xScale() | X-scale settings. |
| yScale() | Y-scale settings. |
| Size and Position | |
| bottom() | Bottom bound setting. |
| bounds() | Bounds settings. |
| getPixelBounds() | Returns pixel bounds. |
| height() | Height setting. |
| left() | Left bound setting. |
| maxHeight() | Maximum height. |
| maxWidth() | Maximum width. |
| minHeight() | Minimum height. |
| minWidth() | Minimum width. |
| right() | Right bound setting. |
| selectSize() | Marker select size. |
| top() | Top bound setting. |
| width() | Width setting. |
| zIndex() | Z-index of the element. |
Methods Description
bottom
Returns:
number | string | undefined - Current element's bottom bound setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Bottom bound setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
bounds
Returns:
anychart.core.utils.Bounds - Current bounds of the element.Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.utils.RectObj | anychart.math.Rect | anychart.core.utils.Bounds | Bounds of element. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| x | number | string | null | X-coordinate. |
| y | number | string | null | Y-coordinate. |
| width | number | string | null | Width. |
| height | number | string | null | Height. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
clip
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | anychart.math.Rect | False, if series is created manually. | Enable/disable series clip. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
color
Learn more about coloring.
Params:
| Name | Type | Description |
|---|---|---|
| value | string | Color as a string. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
data
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.data.View | anychart.data.Set | Array | string | Value to set. |
| csvSettings | anychart.enums.TextParsingMode | anychart.data.TextParsingSettings | If CSV string is passed by first param, you can pass CSV parser settings here as a hash map. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.enabled
Returns:
boolean - The current element state.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | boolean | true | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.if (!element.enabled()) element.enabled(true);
Try it:
error
- null - disable series error.
- boolean - enable mode both or none for series error.
- string - sets value for series error.
- object - sets series error settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | null | boolean | string | number | Error settings. An error value can be set as absolute numbers or as a percentage. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.excludePoint
Params:
| Name | Type | Description |
|---|---|---|
| indexes | number | Array.<number> | Points indexes. |
Returns:
boolean - Returns 'true' if the points were excluded.Try it:
fill
Returns:
anychart.graphics.vector.Fill - Fill color.var fill = series.fill();
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.graphics.vector.Fill | Color as an object or a string. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
| angle | number | Gradient angle. |
| mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
| opacity | number | Gradient opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
| cx | number | X ratio of center radial gradient. |
| cy | number | Y ratio of center radial gradient. |
| mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
| opacity | number | Opacity of the gradient. |
| fx | number | X ratio of focal point. |
| fy | number | Y ratio of focal point. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
getExcludedPoints
Returns:
Array.<anychart.core.Point> - Array of the points.Try it:
getPixelBounds
Returns:
anychart.math.Rect - Pixel bounds of the element.getPoint
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Point index. |
Returns:
anychart.core.SeriesPoint - Wrapped point.Try it:
getStat
Params:
| Name | Type | Description |
|---|---|---|
| key | string | anychart.enums.Statistics | Key. |
Returns:
* - Statistics value.Try it:
hatchFill
Returns:
anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function - Hatch fill.var hatchFill = series.hatchFill();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| patternFillOrType | anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function | anychart.graphics.vector.HatchFill.HatchFillType | string | false | PatternFill or HatchFill instance or type of hatch fill. |
| color | string | Color. | |
| thickness | number | Thickness. | |
| size | number | Pattern size. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
height
Returns:
number | string | undefined - Current element's height setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Height setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
hover
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Point index. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| indexes | Array.<number> | Array of indexes. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
hoverFill
Returns:
anychart.graphics.vector.Fill - Hover fill color.var hoverFill = series.hoverFill();
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.graphics.vector.Fill | Color as an object or a string. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
| angle | number | Gradient angle. |
| mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
| opacity | number | Gradient opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
| cx | number | X ratio of center radial gradient. |
| cy | number | Y ratio of center radial gradient. |
| mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
| opacity | number | Opacity of the gradient. |
| fx | number | X ratio of focal point. |
| fy | number | Y ratio of focal point. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
hoverHatchFill
Returns:
anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function - Hover hatch fill.var hoverHatchFill = series.hoverHatchFill();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| patternFillOrType | anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function | anychart.graphics.vector.HatchFill.HatchFillType | string | undefined | PatternFill or HatchFill instance or type of hatch fill. |
| color | string | Color. | |
| thickness | number | Thickness. | |
| size | number | Pattern size. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
hoverLabels
Returns:
anychart.core.ui.LabelsFactory - Labels instance.Try it:
- null/boolean - disable or enable chart hover labels.
- object - sets chart hover labels settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | boolean | null | Series data labels settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.hoverSize
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | 8 | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
hoverStroke
Returns:
anychart.graphics.vector.Stroke | function - Hover stroke settings.var hoverStroke = series.hoverStroke();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| strokeFunction | function | function() {
return anychart.color.darken(this.sourceColor);
} | Function that looks like function(){
// this.index - series index.
// this.sourceColor - color returned by stroke() getter.
// this.iterator - series point iterator.
return strokeValue; // type anychart.graphics.vector.Fill or anychart.graphics.vector.Stroke
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. | |
| thickness | number | 1 | Line thickness. |
| dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
| lineJoin | anychart.graphics.vector.StrokeLineJoin | Marker join style. | |
| lineCap | anychart.graphics.vector.StrokeLineCap | Marker cap style. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
hoverType
Returns:
string | anychart.enums.MarkerType | function - Markers type settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | string | anychart.enums.MarkerType | function | undefined | Type or custom drawer. Function for a custom
marker should look like this: function(path, x, y, size){
// path - anychart.graphics.vector.Path
// x, y - marker position
// size - marker size
... //do something
return path;
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.id
Returns:
string | number - The current series id.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | string | number | Id of the series. Default id is equal to internal index. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
includeAllPoints
Returns:
boolean - Returns 'true' if all points were included.Try it:
includePoint
Params:
| Name | Type | Description |
|---|---|---|
| indexes | number | Array.<number> | Points indexes. |
Returns:
boolean - Returns true if the points were included.Try it:
keepOnlyPoints
Params:
| Name | Type | Description |
|---|---|---|
| indexes | number | Array.<number> | Point index or indexes. |
Try it:
labels
Returns:
anychart.core.ui.LabelsFactory - Labels instance.Try it:
- null/boolean - disable or enable chart labels.
- object - sets chart labels settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | boolean | null | Series data labels settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.left
Returns:
number | string | undefined - Current element's left bound setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Left bound setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
legendItem
Returns:
anychart.core.utils.LegendItemSettings - Legend item settings.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | Legend item settings object. |
Returns:
anychart.core.scatter.series.Marker - Legend item settings or self for chaining.Try it:
listen
Note Notice that if the existing listener is one-off (added using listenOnce), it will cease to be such after calling the listen() method.
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. Function that looks like function(event){
// event.actualTarget - actual event target
// event.currentTarget - current event target
// event.iterator - event iterator
// event.originalEvent - original event
// event.point - event point
// event.pointIndex - event point index
}. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
listenOnce
If the event handler being added already exists, listenOnce will do nothing.
Note In particular, if the handler is already registered using listen(), listenOnce() will not make it one-off. Similarly, if a one-off listener already exists, listenOnce will not change it (it wil remain one-off).
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
maxHeight
Returns:
number | string | null - Current element's maximum height.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
maxWidth
Returns:
number | string | null - Current element's maximum width.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
meta
Params:
| Name | Type | Description |
|---|---|---|
| key | * | Metadata key. |
Returns:
* - Metadata object, key value or itself for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| object | * | Object to replace metadata. |
| value | * | Meta data value. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| key | * | Metadata key. |
| value | * | Meta data value. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
minHeight
Returns:
number | string | null - Current element's minimum height.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
minWidth
Returns:
number | string | null - Current element's minimum width.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
name
Returns:
string | undefined - The current series name value.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| value | string | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| paperSizeOrOptions | anychart.graphics.vector.PaperSize | Object | Paper size or object with options. | |
| landscape | boolean | false | Flag of landscape. |
Try it:
removeAllListeners
Params:
| Name | Type | Description |
|---|---|---|
| type | string | Type of event to remove, default is to remove all types. |
Returns:
number - Number of listeners removed.Try it:
right
Returns:
number | string | undefined - Current element's right bound setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Right bound setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
select
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Index of the point to select. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| indexes | number | Array.<number> | Array of indexes of the point to select. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectFill
Returns:
anychart.graphics.vector.Fill - Select fill color.var selectFill = series.selectFill();
Params:
| Name | Type | Description |
|---|---|---|
| value | anychart.graphics.vector.Fill | Color as an array or a string. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
| angle | number | Gradient angle. |
| mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
| opacity | number | Gradient opacity. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
| cx | number | X ratio of center radial gradient. |
| cy | number | Y ratio of center radial gradient. |
| mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
| opacity | number | Opacity of the gradient. |
| fx | number | X ratio of focal point. |
| fy | number | Y ratio of focal point. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectHatchFill
Returns:
anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function - Select hatch fill.var selectHatchFill = series.selectHatchFill();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| patternFillOrType | anychart.graphics.vector.PatternFill | anychart.graphics.vector.HatchFill | function | anychart.graphics.vector.HatchFill.HatchFillType | string | false | PatternFill or HatchFill instance or type of hatch fill. |
| color | string | Color. | |
| thickness | number | Thickness. | |
| size | number | Pattern size. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectLabels
Returns:
anychart.core.ui.LabelsFactory - Labels instance.Try it:
- null/boolean - disable or enable labels in selected state.
- object - sets selected labels settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | boolean | null | Series data labels settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.selectSize
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | 7 | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectStroke
Returns:
anychart.graphics.vector.Stroke | function - Select stroke settings.var selectStroke = series.selectStroke();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| strokeFunction | function | function() {
return anychart.color.darken(this.sourceColor);
} | Function that looks like function(){
// this.index - series index.
// this.sourceColor - color returned by stroke() getter.
// this.iterator - series point iterator.
return strokeValue; // type anychart.graphics.vector.Fill or anychart.graphics.vector.Stroke
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. |
| thickness | number | Line thickness. |
| dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. |
| lineJoin | anychart.graphics.vector.StrokeLineJoin | Marker join style. |
| lineCap | anychart.graphics.vector.StrokeLineCap | Marker cap style. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectType
Returns:
string | anychart.enums.MarkerType | function - Markers type settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | string | anychart.enums.MarkerType | function | "circle" | Type or custom drawer. Function for a custom
marker should look like this: function(path, x, y, size){
// path - anychart.graphics.vector.Path
// x, y - marker position
// size - marker size
... //do something
return path;
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
selectionMode
Returns:
anychart.enums.SelectionMode | null - Selection mode.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.enums.SelectionMode | string | null | "multiSelect" | Selection mode. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
size
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | 6 | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
stroke
Returns:
anychart.graphics.vector.Stroke | function - Stroke settings.var stroke = series.stroke();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| strokeFunction | function | function() {
return anychart.color.darken(this.sourceColor);
} | Function that looks like function(){
// this.index - series index.
// this.sourceColor - color returned by stroke() getter.
// this.iterator - series point iterator.
return strokeValue; // type anychart.graphics.vector.Fill or anychart.graphics.vector.Stroke
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. |
| thickness | number | Line thickness. |
| dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. |
| lineJoin | anychart.graphics.vector.StrokeLineJoin | Marker join style. |
| lineCap | anychart.graphics.vector.StrokeLineCap | Marker cap style. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
tooltip
- null/boolean - disable or enable chart tooltip.
- object - sets chart tooltip settings.
Params:
| Name | Type | Description |
|---|---|---|
| value | Object | boolean | null | Tooltip settings. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.top
Returns:
number | string | undefined - Current element's top bound setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Top bound setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
transformX
Params:
| Name | Type | Description |
|---|---|---|
| xValue | * | X value. |
Returns:
number - Pixel value.Try it:
transformY
Params:
| Name | Type | Description |
|---|---|---|
| yValue | * | Y value. |
Returns:
number - Pixel value.Try it:
type
Returns:
string | anychart.enums.MarkerType | function - Markers type settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | string | anychart.enums.MarkerType | function | "circle" | Type or custom drawer. Function for a custom
marker should look like this: function(path, x, y, size){
// path - anychart.graphics.vector.Path
// x, y - marker position
// size - marker size
... //do something
return path;
}. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.unhover
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
unlisten
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | string | The event type id. | |
| listener | function | Callback method. | |
| useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
| listenerScope | Object | Object in whose scope to call the listener. |
Returns:
boolean - Whether any listener was removed.Try it:
unlistenByKey
Params:
| Name | Type | Description |
|---|---|---|
| key | Object | The key returned by listen() or listenOnce(). |
Returns:
boolean - Whether any listener was removed.Try it:
unselect
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| index | number | Index of the point to select. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| indexes | Array.<number> | An array of indexes of the point to select. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
width
Returns:
number | string | undefined - Current element's width setting.Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | string | null | null | Width setting for the element. |
Returns:
anychart.core.scatter.series.Marker - Returns self for method chaining.Try it:
xScale
Returns:
anychart.scales.ScatterBase - Series X-scale.var xScale = series.xScale();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.scales.Base | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
yScale
Returns:
anychart.scales.ScatterBase - Series Y-scale.var yScale = series.yScale();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | anychart.scales.ScatterBase | null | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
zIndex
Returns:
number - The current zIndex.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| value | number | 0 | Value to set. |
Returns:
anychart.core.scatter.series.Marker - Self instance for method chaining.Try it:
