class anychart.core.ui.MarkersFactory Improve this Doc
Extends: anychart.core.VisualBase
Multiple markers class.
Multiple markers are the set of markers with a common settings, such as type (predefined or
custom), size, fill and position:
Methods Overview
| Specific settings | |
| type() | Type settings. |
| Coloring | |
| fill() | Fill settings. |
| stroke() | Stroke settings. |
| Interactivity | |
| enabled() | Element state (enabled or disabled). |
| Size and Position | |
| anchor() | Anchor settings. |
| offsetX() | Offset by X. |
| offsetY() | Offset by Y. |
| position() | Position settings. |
| positionFormatter() | Position formatter function. |
| rotation() | Rotation settings. |
| size() | Markers size |
| zIndex() | Markers Z-index. |
Methods Description
anchor
Returns:
anychart.enums.Anchor | string - Marker anchor settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| anchor | anychart.enums.Anchor | string | 'center' | Value to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
enabled
Returns:
boolean - Element state.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| enabled | null | boolean | null | Enabled state to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
fill
Returns:
anychart.graphics.vector.Fill | string - Markers fill settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| color | anychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)> | {color: "#64b5f6", opacity: 1} | Color as an array, an object or a string. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Params:
| Name | Type | Description |
|---|---|---|
| color | string | Color as a string. |
| opacity | number | Color opacity. |
Returns:
anychart.core.ui.MarkersFactory - 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.ui.MarkersFactory - 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.ui.MarkersFactory - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
offsetX
Returns:
number | string - Marker offset by X.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| offset | number | string | 0 | Offset by X to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
offsetY
Returns:
number | string - Markers offset by Y.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| offset | number | string | 0 | Offset by Y to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
position
Returns:
string - Markers position settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| position | string | 'center' | Position to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
positionFormatter
Returns:
function - Marker position formatter function.This method works only for discrete series (bar, column).
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| formatter | function(positionProvider:*, index:number):anychart.math.CoordinateObject | function(positionProvider, index) {
return {x: 80 * index, y: 0};
} | Function to position marker depending on index and context, it should look like this:
function(positionProvider, index) {
... //do something
return {x: smth, y: smth};
}
Parameters:positionProvider - object with information about current (by index) marker position, this object must contain x and y field (with no offsets taken in account). index - current marker index. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
rotation
Returns:
number - Rotation angle in degrees.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| rotation | number | 0 | Rotation angle in degrees. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
size
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| size | number | 10 | Size to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
stroke
Returns:
anychart.graphics.vector.Stroke | string - Markers stroke settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | 'none' | Color to set. |
Returns:
anychart.core.ui.MarkersFactory - 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 | string | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
| lineCap | string | anychart.graphics.vector.StrokeLineCap | Style of line cap. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
Params:
| Name | Type | Description |
|---|---|---|
| settings | Object | Stroke settings from anychart.graphics.vector.Stroke. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
type
Returns:
anychart.enums.MarkerType | string | function - Markers type settings.Try it:
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| type | anychart.enums.MarkerType | string | function | anychart.enums.MarkerType|string#DIAGONAL_CROSS | Type or custom drawer. Function for a custom marker
must look like this: function(path, x, y, size){
// path - anychart.graphics.vector.Path
// x, y - current marker position
// size - marker size
... //do something
return path;
|
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
zIndex
Returns:
number - Chart Z-index.var zIndex = markers.zIndex();
Params:
| Name | Type | Default | Description |
|---|---|---|---|
| zIndex | number | 31.000012 | Z-index to set. |
Returns:
anychart.core.ui.MarkersFactory - Self instance for method chaining.Try it:
