class anychart.core.axes.Circular Improve this Doc
Extends: anychart.core.VisualBase
Circular axis class. Learn more about circular axis.
Methods Overview
Specific settings | |
cornersRounding() | Rounding of corners |
minorTicks() | Minor ticks settings. |
scale() | Scale settings. |
startAngle() | Start angle settings. |
sweepAngle() | Sweep angle. |
ticks() | Ticks settings. |
Coloring | |
fill() | Fill 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). |
Labels | |
drawFirstLabel() | Drawing of the first label |
drawLastLabel() | Drawing of the last label |
labels() | Labels settings. |
minorLabels() | Minor labels settings. |
overlapMode() | Overlap mode for labels. |
Size and Position | |
radius() | Axis radius. |
width() | Axis width. |
zIndex() | Z-index of the element. |
Methods Description
cornersRounding
Returns:
string - The radius of corners rounding in percent.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | null | number | string | "0%" | Radius for rounding of corners |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
drawFirstLabel
Params:
Name | Type | Default | Description |
---|---|---|---|
value | boolean | true | Drawing flag. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
drawLastLabel
Params:
Name | Type | Default | Description |
---|---|---|---|
value | boolean | true | Drawing flag. |
Returns:
anychart.core.axes.Circular - 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.axes.Circular - Self instance for method chaining.if (!element.enabled()) element.enabled(true);
Try it:
fill
Params:
Name | Type | Default | Description |
---|---|---|---|
value | anychart.graphics.vector.Fill | string | "#CECECE" | Color as an object or a string. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
Params:
Name | Type | Description |
---|---|---|
color | string | Color as a string. |
opacity | number | Color opacity. |
Returns:
anychart.core.axes.Circular - 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.axes.Circular - 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.axes.Circular - Self instance for method chaining.Try it:
Params:
Name | Type | Description |
---|---|---|
imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
labels
- null/boolean - disable or enable axis labels.
- object - sets axis labels settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | true | Labels settings. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.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:
minorLabels
- null/boolean - disable or enable minor labels.
- object - sets minor labels settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | false | Minor labels settings. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.minorTicks
- null/boolean - disable or enable minor axis ticks.
- object - sets minor axis ticks settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | false | Minor ticks settings. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.overlapMode
Returns:
anychart.enums.LabelsOverlapMode | string - Overlap mode.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | anychart.enums.LabelsOverlapMode | string | boolean | "noOverlap" | Value to set. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.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:
radius
Returns:
string - The axis radius.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | null | number | string | undefined | Value to set. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.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:
scale
Try it:
Params:
Name | Type | Description |
---|---|---|
value | anychart.enums.GaugeScaleTypes | anychart.scales.Linear | anychart.scales.Logarithmic | string | Scale to set. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
startAngle
Returns:
number - The start angle.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | null | string | number | null | Value to set. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
sweepAngle
Returns:
number - The sweep angle.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | null | string | number | undefined | Value to set. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.Try it:
ticks
Sets axis ticks settings depending on parameter type:
- null/boolean - disable or enable axis ticks.
- object - sets axis ticks settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
value | Object | boolean | null | true | Ticks settings. |
Returns:
anychart.core.axes.Circular - Self instance for method chaining.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:
width
Returns:
string - The axis width.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
value | null | number | string | undefined | Value to set. |
Returns:
anychart.core.axes.Circular - 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.axes.Circular - Self instance for method chaining.Try it: