`. Numbers,\n * lower- and uppercase letters, \"-\" and \"#\" are valid characters in\n * IDs.\n *\n * The headingTagName is an auto-detected heading (h1-h6) that\n * corresponds to the heading level below the previous heading in\n * the DOM.\n *\n * Set to empty string to remove the region altogether.\n *\n * @since 8.0.0\n */\n beforeChartFormat: '<{headingTagName}>{chartTitle}{headingTagName}>' +\n '{typeDescription}
' +\n '{chartSubtitle}
' +\n '{chartLongdesc}
' +\n '{playAsSoundButton}
' +\n '{viewTableButton}
' +\n '{xAxisDescription}
' +\n '{yAxisDescription}
' +\n '{annotationsTitle}{annotationsList}
',\n /**\n * A formatter function to create the HTML contents of the hidden\n * screen reader information region after the chart. Analogous to\n * [beforeChartFormatter](#accessibility.screenReaderSection.beforeChartFormatter).\n *\n * @type {Highcharts.ScreenReaderFormatterCallbackFunction}\n * @since 8.0.0\n * @apioption accessibility.screenReaderSection.afterChartFormatter\n */\n /**\n * Format for the screen reader information region after the chart.\n * Analogous to [beforeChartFormat](#accessibility.screenReaderSection.beforeChartFormat).\n *\n * @since 8.0.0\n */\n afterChartFormat: '{endOfChartMarker}',\n /**\n * Date format to use to describe range of datetime axes.\n *\n * For an overview of the replacement codes, see\n * [dateFormat](/class-reference/Highcharts.Time#dateFormat).\n *\n * @see [point.dateFormat](#accessibility.point.dateFormat)\n *\n * @since 8.0.0\n */\n axisRangeDateFormat: '%Y-%m-%d %H:%M:%S'\n },\n /**\n * Accessibility options global to all data series. Individual series\n * can also have specific [accessibility options](#plotOptions.series.accessibility)\n * set.\n *\n * @since 8.0.0\n */\n series: {\n /**\n * Formatter function to use instead of the default for series\n * descriptions. Receives one argument, `series`, referring to the\n * series to describe. Should return a string with the description\n * of the series for a screen reader user. If `false` is returned,\n * the default formatter will be used for that series.\n *\n * @see [series.description](#plotOptions.series.description)\n *\n * @type {Highcharts.ScreenReaderFormatterCallbackFunction}\n * @since 8.0.0\n * @apioption accessibility.series.descriptionFormatter\n */\n /**\n * Whether or not to add series descriptions to charts with a single\n * series.\n *\n * @since 8.0.0\n */\n describeSingleSeries: false,\n /**\n * When a series contains more points than this, we no longer expose\n * information about individual points to screen readers.\n *\n * Set to `false` to disable.\n *\n * @type {boolean|number}\n * @since 8.0.0\n */\n pointDescriptionEnabledThreshold: 200\n },\n /**\n * Options for descriptions of individual data points.\n *\n * @since 8.0.0\n */\n point: {\n /**\n * Date format to use for points on datetime axes when describing\n * them to screen reader users.\n *\n * Defaults to the same format as in tooltip.\n *\n * For an overview of the replacement codes, see\n * [dateFormat](/class-reference/Highcharts.Time#dateFormat).\n *\n * @see [dateFormatter](#accessibility.point.dateFormatter)\n *\n * @type {string}\n * @since 8.0.0\n * @apioption accessibility.point.dateFormat\n */\n /**\n * Formatter function to determine the date/time format used with\n * points on datetime axes when describing them to screen reader\n * users. Receives one argument, `point`, referring to the point\n * to describe. Should return a date format string compatible with\n * [dateFormat](/class-reference/Highcharts.Time#dateFormat).\n *\n * @see [dateFormat](#accessibility.point.dateFormat)\n *\n * @type {Highcharts.ScreenReaderFormatterCallbackFunction}\n * @since 8.0.0\n * @apioption accessibility.point.dateFormatter\n */\n /**\n * Prefix to add to the values in the point descriptions. Uses\n * [tooltip.valuePrefix](#tooltip.valuePrefix) if not defined.\n *\n * @type {string}\n * @since 8.0.0\n * @apioption accessibility.point.valuePrefix\n */\n /**\n * Suffix to add to the values in the point descriptions. Uses\n * [tooltip.valueSuffix](#tooltip.valueSuffix) if not defined.\n *\n * @type {string}\n * @since 8.0.0\n * @apioption accessibility.point.valueSuffix\n */\n /**\n * Decimals to use for the values in the point descriptions. Uses\n * [tooltip.valueDecimals](#tooltip.valueDecimals) if not defined.\n *\n * @type {number}\n * @since 8.0.0\n * @apioption accessibility.point.valueDecimals\n */\n /**\n * Formatter function to use instead of the default for point\n * descriptions.\n *\n * Receives one argument, `point`, referring to the point to\n * describe. Should return a string with the description of the\n * point for a screen reader user. If `false` is returned, the\n * default formatter will be used for that point.\n *\n * Note: Prefer using [accessibility.point.valueDescriptionFormat](#accessibility.point.valueDescriptionFormat)\n * instead if possible, as default functionality such as describing\n * annotations will be preserved.\n *\n * @see [accessibility.point.valueDescriptionFormat](#accessibility.point.valueDescriptionFormat)\n * @see [point.accessibility.description](#series.line.data.accessibility.description)\n *\n * @type {Highcharts.ScreenReaderFormatterCallbackFunction}\n * @since 8.0.0\n * @apioption accessibility.point.descriptionFormatter\n */\n /**\n * Format to use for describing the values of data points\n * to assistive technology - including screen readers.\n * The point context is available as `{point}`.\n *\n * Additionally, the series name, annotation info, and\n * description added in `point.accessibility.description`\n * is added by default if relevant. To override this, use the\n * [accessibility.point.descriptionFormatter](#accessibility.point.descriptionFormatter)\n * option.\n *\n * @see [point.accessibility.description](#series.line.data.accessibility.description)\n * @see [accessibility.point.descriptionFormatter](#accessibility.point.descriptionFormatter)\n *\n * @type {string}\n * @since 8.0.1\n */\n valueDescriptionFormat: '{index}. {xDescription}{separator}{value}.'\n },\n /**\n * Amount of landmarks/regions to create for screen reader users. More\n * landmarks can make navigation with screen readers easier, but can\n * be distracting if there are lots of charts on the page. Three modes\n * are available:\n * - `all`: Adds regions for all series, legend, information\n * region.\n * - `one`: Adds a single landmark per chart.\n * - `disabled`: No landmarks are added.\n *\n * @since 7.1.0\n * @validvalue [\"all\", \"one\", \"disabled\"]\n */\n landmarkVerbosity: 'all',\n /**\n * Link the chart to an HTML element describing the contents of the\n * chart.\n *\n * It is always recommended to describe charts using visible text, to\n * improve SEO as well as accessibility for users with disabilities.\n * This option lets an HTML element with a description be linked to the\n * chart, so that screen reader users can connect the two.\n *\n * By setting this option to a string, Highcharts runs the string as an\n * HTML selector query on the entire document. If there is only a single\n * match, this element is linked to the chart. The content of the linked\n * element will be included in the chart description for screen reader\n * users.\n *\n * By default, the chart looks for an adjacent sibling element with the\n * `highcharts-description` class.\n *\n * The feature can be disabled by setting the option to an empty string,\n * or overridden by providing the\n * [accessibility.description](#accessibility.description) option.\n * Alternatively, the HTML element to link can be passed in directly as\n * an HTML node.\n *\n * If you need the description to be part of the exported image,\n * consider using the [caption](#caption) feature.\n *\n * If you need the description to be hidden visually, use the\n * [accessibility.description](#accessibility.description) option.\n *\n * @see [caption](#caption)\n * @see [description](#accessibility.description)\n * @see [typeDescription](#accessibility.typeDescription)\n *\n * @sample highcharts/accessibility/accessible-line\n * Accessible line chart\n *\n * @type {string|Highcharts.HTMLDOMElement}\n * @since 8.0.0\n */\n linkedDescription: '*[data-highcharts-chart=\"{index}\"] + .highcharts-description',\n /**\n * A hook for adding custom components to the accessibility module.\n * Should be an object mapping component names to instances of classes\n * inheriting from the Highcharts.AccessibilityComponent base class.\n * Remember to add the component to the\n * [keyboardNavigation.order](#accessibility.keyboardNavigation.order)\n * for the keyboard navigation to be usable.\n *\n * @sample highcharts/accessibility/custom-component\n * Custom accessibility component\n *\n * @type {*}\n * @since 7.1.0\n * @apioption accessibility.customComponents\n */\n /**\n * Theme to apply to the chart when Windows High Contrast Mode is\n * detected. By default, a high contrast theme matching the high\n * contrast system system colors is used.\n *\n * @type {*}\n * @since 7.1.3\n * @apioption accessibility.highContrastTheme\n */\n /**\n * A text description of the chart.\n *\n * **Note: Prefer using [linkedDescription](#accessibility.linkedDescription)\n * or [caption](#caption.text) instead.**\n *\n * If the Accessibility module is loaded, this option is included by\n * default as a long description of the chart in the hidden screen\n * reader information region.\n *\n * Note: Since Highcharts now supports captions and linked descriptions,\n * it is preferred to define the description using those methods, as a\n * visible caption/description benefits all users. If the\n * `accessibility.description` option is defined, the linked description\n * is ignored, and the caption is hidden from screen reader users.\n *\n * @see [linkedDescription](#accessibility.linkedDescription)\n * @see [caption](#caption)\n * @see [typeDescription](#accessibility.typeDescription)\n *\n * @type {string}\n * @since 5.0.0\n * @apioption accessibility.description\n */\n /**\n * A text description of the chart type.\n *\n * If the Accessibility module is loaded, this will be included in the\n * description of the chart in the screen reader information region.\n *\n * Highcharts will by default attempt to guess the chart type, but for\n * more complex charts it is recommended to specify this property for\n * clarity.\n *\n * @type {string}\n * @since 5.0.0\n * @apioption accessibility.typeDescription\n */\n /**\n * Options for keyboard navigation.\n *\n * @declare Highcharts.KeyboardNavigationOptionsObject\n * @since 5.0.0\n */\n keyboardNavigation: {\n /**\n * Enable keyboard navigation for the chart.\n *\n * @since 5.0.0\n */\n enabled: true,\n /**\n * Options for the focus border drawn around elements while\n * navigating through them.\n *\n * @sample highcharts/accessibility/custom-focus\n * Custom focus ring\n *\n * @declare Highcharts.KeyboardNavigationFocusBorderOptionsObject\n * @since 6.0.3\n */\n focusBorder: {\n /**\n * Enable/disable focus border for chart.\n *\n * @since 6.0.3\n */\n enabled: true,\n /**\n * Hide the browser's default focus indicator.\n *\n * @since 6.0.4\n */\n hideBrowserFocusOutline: true,\n /**\n * Style options for the focus border drawn around elements\n * while navigating through them. Note that some browsers in\n * addition draw their own borders for focused elements. These\n * automatic borders can not be styled by Highcharts.\n *\n * In styled mode, the border is given the\n * `.highcharts-focus-border` class.\n *\n * @type {Highcharts.CSSObject}\n * @since 6.0.3\n */\n style: {\n /** @internal */\n color: \"#335cad\" /* highlightColor80 */,\n /** @internal */\n lineWidth: 2,\n /** @internal */\n borderRadius: 3\n },\n /**\n * Focus border margin around the elements.\n *\n * @since 6.0.3\n */\n margin: 2\n },\n /**\n * Order of tab navigation in the chart. Determines which elements\n * are tabbed to first. Available elements are: `series`, `zoom`,\n * `rangeSelector`, `chartMenu`, `legend` and `container`. In\n * addition, any custom components can be added here. Adding\n * `container` first in order will make the keyboard focus stop on\n * the chart container first, requiring the user to tab again to\n * enter the chart.\n *\n * @type {Array}\n * @since 7.1.0\n */\n order: ['series', 'zoom', 'rangeSelector', 'legend', 'chartMenu'],\n /**\n * Whether or not to wrap around when reaching the end of arrow-key\n * navigation for an element in the chart.\n * @since 7.1.0\n */\n wrapAround: true,\n /**\n * Options for the keyboard navigation of data points and series.\n *\n * @declare Highcharts.KeyboardNavigationSeriesNavigationOptionsObject\n * @since 8.0.0\n */\n seriesNavigation: {\n /**\n * Set the keyboard navigation mode for the chart. Can be\n * \"normal\" or \"serialize\". In normal mode, left/right arrow\n * keys move between points in a series, while up/down arrow\n * keys move between series. Up/down navigation acts\n * intelligently to figure out which series makes sense to move\n * to from any given point.\n *\n * In \"serialize\" mode, points are instead navigated as a single\n * list. Left/right behaves as in \"normal\" mode. Up/down arrow\n * keys will behave like left/right. This can be useful for\n * unifying navigation behavior with/without screen readers\n * enabled.\n *\n * @type {string}\n * @default normal\n * @since 8.0.0\n * @validvalue [\"normal\", \"serialize\"]\n * @apioption accessibility.keyboardNavigation.seriesNavigation.mode\n */\n /**\n * Skip null points when navigating through points with the\n * keyboard.\n *\n * @since 8.0.0\n */\n skipNullPoints: true,\n /**\n * When a series contains more points than this, we no longer\n * allow keyboard navigation for it.\n *\n * Set to `false` to disable.\n *\n * @type {boolean|number}\n * @since 8.0.0\n */\n pointNavigationEnabledThreshold: false\n }\n },\n /**\n * Options for announcing new data to screen reader users. Useful\n * for dynamic data applications and drilldown.\n *\n * Keep in mind that frequent announcements will not be useful to\n * users, as they won't have time to explore the new data. For these\n * applications, consider making snapshots of the data accessible, and\n * do the announcements in batches.\n *\n * @declare Highcharts.AccessibilityAnnounceNewDataOptionsObject\n * @since 7.1.0\n */\n announceNewData: {\n /**\n * Optional formatter callback for the announcement. Receives\n * up to three arguments. The first argument is always an array\n * of all series that received updates. If an announcement is\n * already queued, the series that received updates for that\n * announcement are also included in this array. The second\n * argument is provided if `chart.addSeries` was called, and\n * there is a new series. In that case, this argument is a\n * reference to the new series. The third argument, similarly,\n * is provided if `series.addPoint` was called, and there is a\n * new point. In that case, this argument is a reference to the\n * new point.\n *\n * The function should return a string with the text to announce\n * to the user. Return empty string to not announce anything.\n * Return `false` to use the default announcement format.\n *\n * @sample highcharts/accessibility/custom-dynamic\n * High priority live alerts\n *\n * @type {Highcharts.AccessibilityAnnouncementFormatter}\n * @apioption accessibility.announceNewData.announcementFormatter\n */\n /**\n * Enable announcing new data to screen reader users\n * @sample highcharts/accessibility/accessible-dynamic\n * Dynamic data accessible\n */\n enabled: false,\n /**\n * Minimum interval between announcements in milliseconds. If\n * new data arrives before this amount of time has passed, it is\n * queued for announcement. If another new data event happens\n * while an announcement is queued, the queued announcement is\n * dropped, and the latest announcement is queued instead. Set\n * to 0 to allow all announcements, but be warned that frequent\n * announcements are disturbing to users.\n */\n minAnnounceInterval: 5000,\n /**\n * Choose whether or not the announcements should interrupt the\n * screen reader. If not enabled, the user will be notified once\n * idle. It is recommended not to enable this setting unless\n * there is a specific reason to do so.\n */\n interruptUser: false\n }\n },\n /**\n * Accessibility options for a data point.\n *\n * @declare Highcharts.PointAccessibilityOptionsObject\n * @since 7.1.0\n * @apioption series.line.data.accessibility\n */\n /**\n * Provide a description of the data point, announced to screen readers.\n *\n * @type {string}\n * @since 7.1.0\n * @apioption series.line.data.accessibility.description\n */\n /**\n * Set to false to disable accessibility functionality for a specific point.\n * The point will not be included in keyboard navigation, and will not be\n * exposed to assistive technology.\n *\n * @type {boolean}\n * @since 9.0.1\n * @apioption series.line.data.accessibility.enabled\n */\n /**\n * Accessibility options for a series.\n *\n * @declare Highcharts.SeriesAccessibilityOptionsObject\n * @since 7.1.0\n * @requires modules/accessibility\n * @apioption plotOptions.series.accessibility\n */\n /**\n * Enable/disable accessibility functionality for a specific series.\n *\n * @type {boolean}\n * @since 7.1.0\n * @apioption plotOptions.series.accessibility.enabled\n */\n /**\n * Provide a description of the series, announced to screen readers.\n *\n * @type {string}\n * @since 7.1.0\n * @apioption plotOptions.series.accessibility.description\n */\n /**\n * Expose only the series element to screen readers, not its points.\n *\n * @type {boolean}\n * @since 7.1.0\n * @apioption plotOptions.series.accessibility.exposeAsGroupOnly\n */\n /**\n * Point accessibility options for a series.\n *\n * @extends accessibility.point\n * @since 9.3.0\n * @requires modules/accessibility\n * @apioption plotOptions.series.accessibility.point\n */\n /**\n * Formatter function to use instead of the default for point\n * descriptions. Same as `accessibility.point.descriptionFormatter`, but\n * applies to a series instead of the whole chart.\n *\n * Note: Prefer using [accessibility.point.valueDescriptionFormat](#plotOptions.series.accessibility.point.valueDescriptionFormat)\n * instead if possible, as default functionality such as describing\n * annotations will be preserved.\n *\n * @see [accessibility.point.valueDescriptionFormat](#plotOptions.series.accessibility.point.valueDescriptionFormat)\n * @see [point.accessibility.description](#series.line.data.accessibility.description)\n * @see [accessibility.point.descriptionFormatter](#accessibility.point.descriptionFormatter)\n *\n * @type {Highcharts.ScreenReaderFormatterCallbackFunction