class anychart.core.ui.MarkersFactory.Marker Improve this Doc
Extends: anychart.core.VisualBase
Marker of the markers factory. Use data to set settings for the custom marker.
Methods Overview
| Specific settings | |
| type() | Type for custom marker. | 
| Coloring | |
| fill() | Fill settings for custom marker. | 
| stroke() | Stroke settings for custom marker. | 
| 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). | 
| Size and Position | |
| anchor() | Anchor settings for custom marker. | 
| offsetX() | Offset by X for custom marker. | 
| offsetY() | Offset by Y for custom marker. | 
| position() | Position settings for custom marker. | 
| positionFormatter() | Position formatter for custom marker. | 
| rotation() | Rotation settings for custom marker. | 
| size() | Size for custom marker. | 
| zIndex() | Z-index of the element. | 
Methods Description
anchor
Returns:
anychart.enums.Anchor | string - Current anchor settings.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | anychart.enums.Anchor | string | 'center'  | Marker anchor settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
enabled
Returns:
boolean - The current element state.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | boolean | true  | Value to set. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.if (!element.enabled()) element.enabled(true);
Try it:
fill
Returns:
anychart.graphics.vector.Fill | string - Marker fill settings.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | anychart.graphics.vector.Fill | string | 'black'  | Value to set. | 
Returns:
anychart.core.ui.MarkersFactory.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.ui.MarkersFactory.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.ui.MarkersFactory.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.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| imageSettings | anychart.graphics.vector.Fill | Object with settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method 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:
offsetX
Returns:
number | string - Current offsetX settings.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| value | number | string | Marker offsetX settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
offsetY
Returns:
number | string - Current offsetY settings.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| value | number | string | Marker offsetY settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
position
Returns:
anychart.enums.Position | string - Current markers position settings.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | anychart.enums.Position | string | 'center'  | Markers position settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
positionFormatter
Returns:
* - Current position formatter.Params:
| Name | Type | Description | 
|---|---|---|
| value | * | Position formatter. | 
Returns:
* - 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:
rotation
Returns:
number - Current rotation angle in degrees.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| value | number | Rotation angle in degrees. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
size
Returns:
number - Current size settings.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| value | number | Marker size settings. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
stroke
Returns:
anychart.graphics.vector.Stroke | string - Current stroke settings.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | anychart.graphics.vector.Stroke | string | 'none'  | Value to set. | 
Returns:
anychart.core.ui.MarkersFactory.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 | Line join style. | |
| lineCap | anychart.graphics.vector.StrokeLineCap | Style of line cap. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
type
Returns:
anychart.enums.MarkerType | function - Current type settings.Try it:
Params:
| Name | Type | Description | 
|---|---|---|
| value | anychart.enums.MarkerType | function | Marker type settings. | 
Returns:
anychart.core.ui.MarkersFactory.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:
zIndex
Returns:
number - The current zIndex.Try it:
Params:
| Name | Type | Default | Description | 
|---|---|---|---|
| value | number | 0  | Value to set. | 
Returns:
anychart.core.ui.MarkersFactory.Marker - Self instance for method chaining.Try it:
