class anychart.core.utils.SeriesA11y Improve this Doc
Extends: anychart.core.utils.A11y
Anychart series accessibility class.
Methods Overview
Specific settings | |
enabled() | Accessibility state. |
titleFormat() | Function to format title text. |
Methods Description
enabled
Getter for the accessibility enabled state (enabled or disabled).
Returns:
boolean - The accessibility state.Try it:
Setter for the accessibility enabled state.
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | true | Enabled state to set. |
Returns:
anychart.core.utils.SeriesA11y - Self instance for method chaining.Try it:
titleFormat
Getter for the function to format title.
Returns:
function | string - Function to format title text. See listing.
var accessibility = series.a11y(); var titleFormat = accessibility.titleFormat();
Setter for the function to format title.
Learn more about using titleFormat() method.
Learn more about using titleFormat() method.
Params:
Name | Type | Description |
---|---|---|
formatSettings | function | string | Function or token to format title. |
Returns:
anychart.core.utils.SeriesA11y - Self instance for method chaining.Try it: