highcharts 11.3.0 → 11.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bower.json +1 -1
- package/css/annotations/popup.css +27 -19
- package/css/stocktools/gui.css +19 -7
- package/es-modules/Accessibility/A11yI18n.js +4 -6
- package/es-modules/Accessibility/Accessibility.js +8 -6
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +11 -6
- package/es-modules/Accessibility/Components/LegendComponent.js +4 -4
- package/es-modules/Accessibility/Components/MenuComponent.js +3 -6
- package/es-modules/Accessibility/Components/NavigatorComponent.js +6 -3
- package/es-modules/Accessibility/Components/RangeSelectorComponent.js +4 -7
- package/es-modules/Accessibility/Components/SeriesComponent/ForcedMarkers.js +18 -3
- package/es-modules/Accessibility/Components/SeriesComponent/NewDataAnnouncer.js +5 -3
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +4 -4
- package/es-modules/Accessibility/FocusBorder.js +5 -5
- package/es-modules/Accessibility/HighContrastMode.js +22 -13
- package/es-modules/Accessibility/HighContrastTheme.js +2 -6
- package/es-modules/Accessibility/KeyboardNavigation.js +17 -8
- package/es-modules/Accessibility/Options/A11yDefaults.js +11 -1
- package/es-modules/Accessibility/ProxyElement.js +4 -4
- package/es-modules/Accessibility/ProxyProvider.js +8 -2
- package/es-modules/Accessibility/Utils/DOMElementProvider.js +8 -0
- package/es-modules/Accessibility/Utils/EventProvider.js +9 -0
- package/es-modules/Core/Animation/Fx.js +3 -3
- package/es-modules/Core/Axis/Axis.js +43 -97
- package/es-modules/Core/Axis/Axis3DComposition.js +5 -5
- package/es-modules/Core/Axis/Axis3DDefaults.js +1 -1
- package/es-modules/Core/Axis/AxisDefaults.js +18 -7
- package/es-modules/Core/Axis/BrokenAxis.js +4 -6
- package/es-modules/Core/Axis/Color/ColorAxis.js +2 -1
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -5
- package/es-modules/Core/Axis/DateTimeAxis.js +3 -5
- package/es-modules/Core/Axis/GridAxis.js +7 -7
- package/es-modules/Core/Axis/LogarithmicAxis.js +2 -4
- package/es-modules/Core/Axis/NavigatorAxisComposition.js +26 -22
- package/es-modules/Core/Axis/OrdinalAxis.js +97 -53
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +3 -3
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +4 -5
- package/es-modules/Core/Axis/RadialAxis.js +5 -5
- package/es-modules/Core/Axis/ScrollbarAxis.js +2 -2
- package/es-modules/Core/Axis/Stacking/StackItem.js +8 -4
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +3 -5
- package/es-modules/Core/Axis/Tick.js +16 -7
- package/es-modules/Core/Axis/Tick3DComposition.js +2 -2
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +4 -8
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +3 -6
- package/es-modules/Core/Axis/WaterfallAxis.js +3 -3
- package/es-modules/Core/Axis/ZAxis.js +6 -11
- package/es-modules/Core/Chart/Chart.js +201 -176
- package/es-modules/Core/Chart/Chart3D.js +1 -1
- package/es-modules/Core/Chart/ChartDefaults.js +7 -0
- package/es-modules/Core/Chart/GanttChart.js +2 -2
- package/es-modules/Core/Chart/MapChart.js +12 -2
- package/es-modules/Core/Chart/StockChart.js +12 -11
- package/es-modules/Core/Color/Color.js +3 -3
- package/es-modules/Core/Color/Palettes.js +2 -2
- package/es-modules/Core/Defaults.js +18 -15
- package/es-modules/Core/Geometry/CircleUtilities.js +3 -3
- package/es-modules/Core/Globals.js +2 -2
- package/es-modules/Core/HttpUtilities.js +4 -4
- package/es-modules/Core/Legend/Legend.js +6 -6
- package/es-modules/Core/MSPointer.js +7 -7
- package/es-modules/Core/Pointer.js +230 -245
- package/es-modules/Core/Renderer/HTML/AST.js +1 -1
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +213 -26
- package/es-modules/Core/Renderer/RendererUtilities.js +1 -1
- package/es-modules/Core/Renderer/SVG/SVGElement.js +85 -52
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +14 -11
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +17 -14
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +8 -7
- package/es-modules/Core/Renderer/SVG/Symbols.js +1 -1
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/es-modules/Core/Responsive.js +5 -6
- package/es-modules/Core/Series/DataLabel.js +70 -90
- package/es-modules/Core/Series/DataSeriesComposition.js +1 -1
- package/es-modules/Core/Series/DataSeriesConverter.js +2 -2
- package/es-modules/Core/Series/Point.js +48 -40
- package/es-modules/Core/Series/Series.js +61 -51
- package/es-modules/Core/Series/Series3D.js +2 -2
- package/es-modules/Core/Series/SeriesRegistry.js +10 -2
- package/es-modules/Core/Templating.js +1 -1
- package/es-modules/Core/Time.js +12 -7
- package/es-modules/Core/Tooltip.js +19 -17
- package/es-modules/Core/Utilities.js +54 -26
- package/es-modules/Data/Connectors/CSVConnector.js +2 -2
- package/es-modules/Data/Connectors/DataConnector.js +4 -2
- package/es-modules/Data/Connectors/GoogleSheetsConnector.js +2 -2
- package/es-modules/Data/Connectors/HTMLTableConnector.js +2 -2
- package/es-modules/Data/Connectors/JSONConnector.js +3 -5
- package/es-modules/Data/Converters/CSVConverter.js +1 -3
- package/es-modules/Data/Converters/DataConverter.js +8 -2
- package/es-modules/Data/Converters/HTMLTableConverter.js +1 -3
- package/es-modules/Data/Converters/JSONConverter.js +1 -0
- package/es-modules/Data/DataTable.js +1 -2
- package/es-modules/Data/Formula/FormulaProcessor.js +4 -2
- package/es-modules/Data/Modifiers/DataModifier.js +15 -3
- package/es-modules/Extensions/Annotations/Annotation.js +6 -7
- package/es-modules/Extensions/Annotations/AnnotationChart.js +4 -5
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
- package/es-modules/Extensions/Annotations/ControlPoint.js +2 -2
- package/es-modules/Extensions/Annotations/ControlTarget.js +1 -1
- package/es-modules/Extensions/Annotations/Controllables/Controllable.js +7 -3
- package/es-modules/Extensions/Annotations/Controllables/ControllableEllipse.js +3 -3
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +8 -9
- package/es-modules/Extensions/Annotations/Controllables/ControllablePath.js +3 -4
- package/es-modules/Extensions/Annotations/EventEmitter.js +6 -6
- package/es-modules/Extensions/Annotations/NavigationBindings.js +29 -18
- package/es-modules/Extensions/Annotations/NavigationBindingsDefaults.js +6 -6
- package/es-modules/Extensions/Annotations/Popup/Popup.js +1 -1
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +10 -6
- package/es-modules/Extensions/Annotations/Popup/PopupComposition.js +2 -2
- package/es-modules/Extensions/Annotations/Popup/PopupIndicators.js +31 -31
- package/es-modules/Extensions/Annotations/Popup/PopupTabs.js +1 -1
- package/es-modules/Extensions/Annotations/Types/BasicAnnotation.js +14 -11
- package/es-modules/Extensions/Annotations/Types/FibonacciTimeZones.js +1 -1
- package/es-modules/Extensions/Annotations/Types/Measure.js +1 -1
- package/es-modules/Extensions/ArrowSymbols.js +7 -13
- package/es-modules/Extensions/Boost/Boost.js +39 -7
- package/es-modules/Extensions/Boost/BoostChart.js +4 -4
- package/es-modules/Extensions/Boost/BoostSeries.js +58 -13
- package/es-modules/Extensions/Boost/WGLRenderer.js +3 -3
- package/es-modules/Extensions/Boost/WGLVertexBuffer.js +1 -1
- package/es-modules/Extensions/BoostCanvas.js +5 -4
- package/es-modules/Extensions/BorderRadius.js +5 -4
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +9 -9
- package/es-modules/Extensions/CurrentDateIndication.js +1 -1
- package/es-modules/Extensions/Data.js +11 -11
- package/es-modules/Extensions/DataGrouping/DataGrouping.js +1 -1
- package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +8 -9
- package/es-modules/Extensions/DataGrouping/DataGroupingDefaults.js +1 -1
- package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +6 -7
- package/es-modules/Extensions/Debugger/Debugger.js +1 -1
- package/es-modules/Extensions/Debugger/ErrorMessages.js +2 -2
- package/es-modules/Extensions/DragPanes/AxisResizer.js +13 -16
- package/es-modules/Extensions/DragPanes/DragPanes.js +2 -4
- package/es-modules/Extensions/DraggablePoints/DragDropDefaults.js +2 -1
- package/es-modules/Extensions/DraggablePoints/DragDropUtilities.js +1 -1
- package/es-modules/Extensions/DraggablePoints/DraggableChart.js +4 -4
- package/es-modules/Extensions/DraggablePoints/DraggablePoints.js +8 -9
- package/es-modules/Extensions/Drilldown/Drilldown.js +11 -9
- package/es-modules/Extensions/Drilldown/DrilldownSeries.js +5 -6
- package/es-modules/Extensions/ExportData/ExportData.js +27 -18
- package/es-modules/Extensions/Exporting/Exporting.js +25 -20
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +1 -1
- package/es-modules/Extensions/Exporting/Fullscreen.js +5 -10
- package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +26 -21
- package/es-modules/Extensions/MarkerClusters/MarkerClusterSymbols.js +2 -12
- package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +3 -3
- package/es-modules/Extensions/MouseWheelZoom/MouseWheelZoom.js +51 -161
- package/es-modules/Extensions/NoDataToDisplay/NoDataToDisplay.js +3 -5
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +5 -6
- package/es-modules/Extensions/OfflineExporting/OfflineExportingDefaults.js +1 -1
- package/es-modules/Extensions/OverlappingDataLabels.js +21 -49
- package/es-modules/Extensions/Pane/PaneComposition.js +3 -5
- package/es-modules/Extensions/ParallelCoordinates/ParallelAxis.js +2 -4
- package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +5 -6
- package/es-modules/Extensions/ParallelCoordinates/ParallelSeries.js +1 -1
- package/es-modules/Extensions/PatternFill.js +19 -22
- package/es-modules/Extensions/PriceIndication.js +1 -1
- package/es-modules/Extensions/ScrollablePlotArea.js +218 -292
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +26 -18
- package/es-modules/Extensions/Sonification/Options.js +1 -0
- package/es-modules/Extensions/Sonification/SonificationSpeaker.js +2 -2
- package/es-modules/Extensions/Sonification/SynthPatch.js +3 -3
- package/es-modules/Extensions/StaticScale.js +3 -5
- package/es-modules/Gantt/Legacy.js +1 -1
- package/es-modules/Gantt/Pathfinder.js +2 -2
- package/es-modules/Gantt/PathfinderComposition.js +3 -5
- package/es-modules/Gantt/Tree.js +3 -3
- package/es-modules/Maps/GeoJSONComposition.js +20 -13
- package/es-modules/Maps/MapNavigation.js +2 -2
- package/es-modules/Maps/MapPointer.js +3 -19
- package/es-modules/Maps/MapSymbols.js +3 -9
- package/es-modules/Maps/MapView.js +134 -74
- package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +5 -4
- package/es-modules/Series/Area/AreaSeries.js +2 -4
- package/es-modules/Series/Area3D/Area3DSeries.js +1 -1
- package/es-modules/Series/AreaRange/AreaRangePoint.js +2 -2
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +2 -3
- package/es-modules/Series/AreaSpline/AreaSplineSeries.js +1 -1
- package/es-modules/Series/Bar/BarSeries.js +1 -1
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +1 -1
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +4 -0
- package/es-modules/Series/Bubble/BubbleLegendComposition.js +1 -1
- package/es-modules/Series/Bubble/BubbleLegendDefaults.js +2 -2
- package/es-modules/Series/Bubble/BubbleLegendItem.js +3 -3
- package/es-modules/Series/Bubble/BubbleSeries.js +1 -1
- package/es-modules/Series/Bullet/BulletSeriesDefaults.js +2 -2
- package/es-modules/Series/Candlestick/CandlestickSeries.js +2 -2
- package/es-modules/Series/Candlestick/CandlestickSeriesDefaults.js +1 -5
- package/es-modules/Series/ColorMapComposition.js +1 -1
- package/es-modules/Series/Column/ColumnDataLabel.js +2 -2
- package/es-modules/Series/Column/ColumnSeries.js +20 -22
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +1 -1
- package/es-modules/Series/Column3D/Column3DComposition.js +1 -1
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +2 -1
- package/es-modules/Series/Cylinder/CylinderComposition.js +9 -9
- package/es-modules/Series/DataModifyComposition.js +5 -5
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +3 -2
- package/es-modules/Series/DependencyWheel/DependencyWheelSeriesDefaults.js +1 -1
- package/es-modules/Series/DragNodesComposition.js +7 -7
- package/es-modules/Series/DrawPointUtilities.js +0 -2
- package/es-modules/Series/Dumbbell/DumbbellSeriesDefaults.js +1 -1
- package/es-modules/Series/Funnel/FunnelSeries.js +1 -1
- package/es-modules/Series/Funnel3D/Funnel3DComposition.js +6 -6
- package/es-modules/Series/Funnel3D/Funnel3DSeriesDefaults.js +2 -2
- package/es-modules/Series/Funnel3D/SVGElement3DFunnel.js +1 -1
- package/es-modules/Series/Gantt/GanttSeries.js +0 -1
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +5 -5
- package/es-modules/Series/GraphLayoutComposition.js +1 -1
- package/es-modules/Series/Heatmap/HeatmapSeries.js +2 -2
- package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -1
- package/es-modules/Series/HeikinAshi/HeikinAshiPoint.js +3 -1
- package/es-modules/Series/HeikinAshi/HeikinAshiSeries.js +3 -3
- package/es-modules/Series/HeikinAshi/HeikinAshiSeriesDefaults.js +1 -1
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +2 -2
- package/es-modules/Series/Item/ItemSeries.js +1 -1
- package/es-modules/Series/Line/LineSeries.js +1 -1
- package/es-modules/Series/Lollipop/LollipopSeries.js +3 -1
- package/es-modules/Series/Map/MapPoint.js +5 -1
- package/es-modules/Series/Map/MapSeries.js +32 -7
- package/es-modules/Series/Map/MapSeriesDefaults.js +5 -3
- package/es-modules/Series/Networkgraph/EulerIntegration.js +5 -5
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +4 -4
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +5 -5
- package/es-modules/Series/Networkgraph/QuadTree.js +1 -1
- package/es-modules/Series/Networkgraph/QuadTreeNode.js +1 -1
- package/es-modules/Series/Networkgraph/VerletIntegration.js +9 -9
- package/es-modules/Series/NodesComposition.js +1 -1
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -1
- package/es-modules/Series/OHLC/OHLCSeriesDefaults.js +1 -1
- package/es-modules/Series/OnSeriesComposition.js +1 -1
- package/es-modules/Series/Organization/OrganizationPoint.js +1 -1
- package/es-modules/Series/Organization/OrganizationSeries.js +22 -10
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +15 -2
- package/es-modules/Series/PackedBubble/PackedBubbleLayout.js +3 -5
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +6 -10
- package/es-modules/Series/Pictorial/PictorialSeries.js +2 -2
- package/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/es-modules/Series/Pie/PiePoint.js +1 -1
- package/es-modules/Series/Pie/PieSeries.js +10 -1
- package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -1
- package/es-modules/Series/Pie3D/Pie3DSeries.js +2 -2
- package/es-modules/Series/PolarComposition.js +22 -20
- package/es-modules/Series/Sankey/SankeyColumnComposition.js +1 -1
- package/es-modules/Series/Sankey/SankeySeries.js +8 -8
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +57 -13
- package/es-modules/Series/SeriesOnPointComposition.js +3 -3
- package/es-modules/Series/Spline/SplineSeries.js +1 -1
- package/es-modules/Series/Sunburst/SunburstPoint.js +1 -1
- package/es-modules/Series/Sunburst/SunburstSeries.js +2 -7
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +3 -3
- package/es-modules/Series/Sunburst/SunburstUtilities.js +1 -1
- package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +23 -25
- package/es-modules/Series/Tilemap/TilemapSeries.js +2 -2
- package/es-modules/Series/Timeline/TimelineSeries.js +2 -2
- package/es-modules/Series/TreeUtilities.js +23 -1
- package/es-modules/Series/Treegraph/TreegraphLayout.js +7 -11
- package/es-modules/Series/Treegraph/TreegraphPoint.js +1 -0
- package/es-modules/Series/Treegraph/TreegraphSeries.js +8 -8
- package/es-modules/Series/Treegraph/TreegraphSeriesDefaults.js +39 -2
- package/es-modules/Series/Treemap/TreemapSeries.js +4 -2
- package/es-modules/Series/Treemap/TreemapUtilities.js +0 -7
- package/es-modules/Series/Variwide/VariwideComposition.js +6 -2
- package/es-modules/Series/Variwide/VariwideSeries.js +1 -1
- package/es-modules/Series/Venn/VennSeries.js +4 -4
- package/es-modules/Series/Venn/VennUtils.js +5 -6
- package/es-modules/Series/Waterfall/WaterfallSeriesDefaults.js +1 -1
- package/es-modules/Series/Windbarb/WindbarbSeries.js +1 -1
- package/es-modules/Series/Wordcloud/WordcloudUtils.js +6 -4
- package/es-modules/Series/XRange/XRangePoint.js +2 -2
- package/es-modules/Series/XRange/XRangeSeries.js +1 -1
- package/es-modules/Shared/BaseForm.js +1 -1
- package/es-modules/Stock/Indicators/AD/ADIndicator.js +3 -1
- package/es-modules/Stock/Indicators/APO/APOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -1
- package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +1 -1
- package/es-modules/Stock/Indicators/CMO/CMOIndicator.js +2 -2
- package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +1 -1
- package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Klinger/KlingerIndicator.js +1 -1
- package/es-modules/Stock/Indicators/LinearRegression/LinearRegressionIndicator.js +7 -7
- package/es-modules/Stock/Indicators/MultipleLinesComposition.js +9 -9
- package/es-modules/Stock/Indicators/OBV/OBVIndicator.js +1 -1
- package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +2 -2
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +16 -17
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +4 -5
- package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +5 -5
- package/es-modules/Stock/Navigator/ChartNavigatorComposition.js +188 -0
- package/es-modules/Stock/Navigator/Navigator.js +42 -27
- package/es-modules/Stock/Navigator/NavigatorComposition.js +10 -149
- package/es-modules/Stock/Navigator/NavigatorDefaults.js +16 -2
- package/es-modules/Stock/Navigator/StandaloneNavigator.js +334 -0
- package/es-modules/Stock/Navigator/StandaloneNavigatorDefaults.js +64 -0
- package/es-modules/Stock/RangeSelector/RangeSelector.js +28 -16
- package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +2 -2
- package/es-modules/Stock/Scrollbar/Scrollbar.js +10 -10
- package/es-modules/Stock/Scrollbar/ScrollbarDefaults.js +1 -3
- package/es-modules/Stock/StockTools/StockToolbar.js +6 -5
- package/es-modules/Stock/StockTools/StockTools.js +10 -13
- package/es-modules/Stock/StockTools/StockToolsBindings.js +35 -35
- package/es-modules/Stock/StockTools/StockToolsDefaults.js +2 -1
- package/es-modules/Stock/StockTools/StockToolsGui.js +7 -8
- package/es-modules/Stock/StockTools/StockToolsUtilities.js +8 -9
- package/es-modules/Stock/Utilities/StockUtilities.js +41 -0
- package/es-modules/masters/highcharts-3d.src.js +2 -1
- package/es-modules/masters/highcharts-gantt.src.js +1 -1
- package/es-modules/masters/highcharts-more.src.js +2 -1
- package/es-modules/masters/highcharts.src.js +41 -40
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +3 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +3 -1
- package/es-modules/masters/indicators/ao.src.js +3 -1
- package/es-modules/masters/indicators/apo.src.js +3 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +3 -1
- package/es-modules/masters/indicators/aroon.src.js +3 -1
- package/es-modules/masters/indicators/atr.src.js +3 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +3 -1
- package/es-modules/masters/indicators/cci.src.js +3 -1
- package/es-modules/masters/indicators/chaikin.src.js +3 -1
- package/es-modules/masters/indicators/cmf.src.js +3 -1
- package/es-modules/masters/indicators/cmo.src.js +3 -1
- package/es-modules/masters/indicators/dema.src.js +3 -1
- package/es-modules/masters/indicators/disparity-index.src.js +3 -1
- package/es-modules/masters/indicators/dmi.src.js +3 -1
- package/es-modules/masters/indicators/dpo.src.js +3 -1
- package/es-modules/masters/indicators/ema.src.js +2 -0
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +3 -1
- package/es-modules/masters/indicators/indicators-all.src.js +3 -1
- package/es-modules/masters/indicators/indicators.src.js +7 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +3 -1
- package/es-modules/masters/indicators/klinger.src.js +3 -1
- package/es-modules/masters/indicators/macd.src.js +3 -1
- package/es-modules/masters/indicators/mfi.src.js +3 -1
- package/es-modules/masters/indicators/momentum.src.js +3 -1
- package/es-modules/masters/indicators/natr.src.js +3 -1
- package/es-modules/masters/indicators/obv.src.js +3 -1
- package/es-modules/masters/indicators/pivot-points.src.js +3 -1
- package/es-modules/masters/indicators/ppo.src.js +3 -1
- package/es-modules/masters/indicators/price-channel.src.js +3 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +3 -1
- package/es-modules/masters/indicators/psar.src.js +3 -1
- package/es-modules/masters/indicators/regressions.src.js +3 -1
- package/es-modules/masters/indicators/roc.src.js +3 -1
- package/es-modules/masters/indicators/rsi.src.js +3 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +3 -1
- package/es-modules/masters/indicators/stochastic.src.js +3 -1
- package/es-modules/masters/indicators/supertrend.src.js +3 -1
- package/es-modules/masters/indicators/tema.src.js +3 -1
- package/es-modules/masters/indicators/trendline.src.js +3 -1
- package/es-modules/masters/indicators/trix.src.js +3 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +3 -1
- package/es-modules/masters/indicators/vwap.src.js +3 -1
- package/es-modules/masters/indicators/williams-r.src.js +3 -1
- package/es-modules/masters/indicators/wma.src.js +3 -1
- package/es-modules/masters/indicators/zigzag.src.js +3 -1
- package/es-modules/masters/modules/accessibility.src.js +4 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +3 -5
- package/es-modules/masters/modules/annotations.src.js +6 -3
- package/es-modules/masters/modules/arc-diagram.src.js +3 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +2 -1
- package/es-modules/masters/modules/boost-canvas.src.js +2 -1
- package/es-modules/masters/modules/boost.src.js +3 -2
- package/es-modules/masters/modules/broken-axis.src.js +4 -3
- package/es-modules/masters/modules/bullet.src.js +3 -1
- package/es-modules/masters/modules/coloraxis.src.js +4 -3
- package/es-modules/masters/modules/current-date-indicator.src.js +2 -1
- package/es-modules/masters/modules/cylinder.src.js +3 -1
- package/es-modules/masters/modules/data-tools.src.js +9 -8
- package/es-modules/masters/modules/data.src.js +9 -8
- package/es-modules/masters/modules/datagrouping.src.js +7 -5
- package/es-modules/masters/modules/debugger.src.js +3 -2
- package/es-modules/masters/modules/dependency-wheel.src.js +3 -1
- package/es-modules/masters/modules/dotplot.src.js +3 -1
- package/es-modules/masters/modules/drag-panes.src.js +2 -1
- package/es-modules/masters/modules/draggable-points.src.js +2 -1
- package/es-modules/masters/modules/drilldown.src.js +3 -2
- package/es-modules/masters/modules/dumbbell.src.js +3 -1
- package/es-modules/masters/modules/export-data.src.js +5 -4
- package/es-modules/masters/modules/exporting.src.js +6 -5
- package/es-modules/masters/modules/flowmap.src.js +3 -1
- package/es-modules/masters/modules/full-screen.src.js +4 -3
- package/es-modules/masters/modules/funnel.src.js +2 -1
- package/es-modules/masters/modules/funnel3d.src.js +4 -3
- package/es-modules/masters/modules/gantt.src.js +15 -17
- package/es-modules/masters/modules/geoheatmap.src.js +3 -1
- package/es-modules/masters/modules/grid-axis.src.js +2 -1
- package/es-modules/masters/modules/heatmap.src.js +3 -5
- package/es-modules/masters/modules/heikinashi.src.js +2 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +3 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +3 -1
- package/es-modules/masters/modules/item-series.src.js +3 -1
- package/es-modules/masters/modules/lollipop.src.js +3 -1
- package/es-modules/masters/modules/map.src.js +15 -10
- package/es-modules/masters/modules/marker-clusters.src.js +2 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +4 -2
- package/es-modules/masters/modules/navigator.src.d.ts +1 -0
- package/es-modules/masters/modules/navigator.src.js +19 -0
- package/es-modules/masters/modules/networkgraph.src.js +2 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +2 -1
- package/es-modules/masters/modules/offline-exporting.src.js +4 -3
- package/es-modules/masters/modules/organization.src.js +3 -1
- package/es-modules/masters/modules/overlapping-datalabels.src.js +4 -2
- package/es-modules/masters/modules/parallel-coordinates.src.js +2 -1
- package/es-modules/masters/modules/pareto.src.js +3 -1
- package/es-modules/masters/modules/pathfinder.src.js +4 -3
- package/es-modules/masters/modules/pattern-fill.src.js +2 -1
- package/es-modules/masters/modules/pictorial.src.js +3 -1
- package/es-modules/masters/modules/price-indicator.src.js +2 -1
- package/es-modules/masters/modules/pyramid3d.src.js +3 -1
- package/es-modules/masters/modules/sankey.src.js +3 -1
- package/es-modules/masters/modules/series-label.src.js +2 -1
- package/es-modules/masters/modules/series-on-point.src.js +2 -1
- package/es-modules/masters/modules/solid-gauge.src.js +3 -1
- package/es-modules/masters/modules/sonification.src.js +2 -1
- package/es-modules/masters/modules/static-scale.src.js +2 -1
- package/es-modules/masters/modules/stock-tools.src.js +5 -3
- package/es-modules/masters/modules/stock.src.js +20 -15
- package/es-modules/masters/modules/streamgraph.src.js +3 -1
- package/es-modules/masters/modules/sunburst.src.js +4 -3
- package/es-modules/masters/modules/tiledwebmap.src.js +5 -4
- package/es-modules/masters/modules/tilemap.src.js +2 -1
- package/es-modules/masters/modules/timeline.src.js +3 -1
- package/es-modules/masters/modules/treegraph.src.js +3 -1
- package/es-modules/masters/modules/treegrid.src.js +2 -2
- package/es-modules/masters/modules/treemap.src.js +5 -4
- package/es-modules/masters/modules/variable-pie.src.js +3 -1
- package/es-modules/masters/modules/variwide.src.js +2 -1
- package/es-modules/masters/modules/vector.src.js +3 -1
- package/es-modules/masters/modules/venn.src.js +3 -1
- package/es-modules/masters/modules/windbarb.src.js +3 -1
- package/es-modules/masters/modules/wordcloud.src.js +3 -1
- package/es-modules/masters/modules/xrange.src.js +2 -1
- package/es-modules/masters/standalone-navigator.src.js +13 -0
- package/es-modules/masters/themes/avocado.src.js +2 -1
- package/es-modules/masters/themes/brand-dark.src.js +2 -1
- package/es-modules/masters/themes/brand-light.src.js +2 -1
- package/es-modules/masters/themes/dark-blue.src.js +2 -1
- package/es-modules/masters/themes/dark-green.src.js +2 -1
- package/es-modules/masters/themes/dark-unica.src.js +2 -1
- package/es-modules/masters/themes/gray.src.js +2 -1
- package/es-modules/masters/themes/grid-light.src.js +2 -1
- package/es-modules/masters/themes/grid.src.js +2 -1
- package/es-modules/masters/themes/high-contrast-dark.src.js +2 -1
- package/es-modules/masters/themes/high-contrast-light.src.js +2 -1
- package/es-modules/masters/themes/sand-signika.src.js +2 -1
- package/es-modules/masters/themes/skies.src.js +2 -1
- package/es-modules/masters/themes/sunset.src.js +2 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -0
- package/globals.d.ts +9 -0
- package/globals.src.d.ts +9 -0
- package/highcharts-3d.js +3 -3
- package/highcharts-3d.src.js +32 -33
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +5703 -5639
- package/highcharts-more.d.ts +4 -0
- package/highcharts-more.js +3 -3
- package/highcharts-more.src.d.ts +4 -0
- package/highcharts-more.src.js +88 -87
- package/highcharts.d.ts +834 -5365
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +834 -5365
- package/highcharts.src.js +1583 -1682
- package/highmaps.js +4 -4
- package/highmaps.src.js +1837 -1835
- package/highstock.js +4 -4
- package/highstock.src.js +12488 -12510
- package/indicators/acceleration-bands.js +3 -3
- package/indicators/acceleration-bands.src.js +12 -11
- package/indicators/accumulation-distribution.js +3 -3
- package/indicators/accumulation-distribution.src.js +6 -3
- package/indicators/ao.js +3 -3
- package/indicators/ao.src.js +3 -2
- package/indicators/apo.js +3 -3
- package/indicators/apo.src.js +4 -3
- package/indicators/aroon-oscillator.js +3 -3
- package/indicators/aroon-oscillator.src.js +12 -11
- package/indicators/aroon.js +3 -3
- package/indicators/aroon.src.js +13 -12
- package/indicators/atr.js +3 -3
- package/indicators/atr.src.js +3 -2
- package/indicators/bollinger-bands.js +3 -3
- package/indicators/bollinger-bands.src.js +12 -11
- package/indicators/cci.js +3 -3
- package/indicators/cci.src.js +3 -2
- package/indicators/chaikin.js +3 -3
- package/indicators/chaikin.src.js +7 -4
- package/indicators/cmf.js +3 -3
- package/indicators/cmf.src.js +4 -3
- package/indicators/cmo.js +3 -3
- package/indicators/cmo.src.js +5 -4
- package/indicators/dema.js +3 -3
- package/indicators/dema.src.js +3 -2
- package/indicators/disparity-index.js +3 -3
- package/indicators/disparity-index.src.js +3 -2
- package/indicators/dmi.js +3 -3
- package/indicators/dmi.src.js +12 -11
- package/indicators/dpo.js +3 -3
- package/indicators/dpo.src.js +4 -3
- package/indicators/ema.js +1 -1
- package/indicators/ema.src.js +2 -1
- package/indicators/ichimoku-kinko-hyo.js +3 -3
- package/indicators/ichimoku-kinko-hyo.src.js +3 -2
- package/indicators/indicators-all.js +3 -3
- package/indicators/indicators-all.src.js +63 -60
- package/indicators/indicators.js +3 -3
- package/indicators/indicators.src.js +286 -3
- package/indicators/keltner-channels.js +3 -3
- package/indicators/keltner-channels.src.js +12 -11
- package/indicators/klinger.js +3 -3
- package/indicators/klinger.src.js +13 -12
- package/indicators/macd.js +3 -3
- package/indicators/macd.src.js +3 -2
- package/indicators/mfi.js +3 -3
- package/indicators/mfi.src.js +3 -2
- package/indicators/momentum.js +3 -3
- package/indicators/momentum.src.js +3 -2
- package/indicators/natr.js +3 -3
- package/indicators/natr.src.js +3 -2
- package/indicators/obv.js +3 -3
- package/indicators/obv.src.js +4 -3
- package/indicators/pivot-points.js +3 -3
- package/indicators/pivot-points.src.js +5 -4
- package/indicators/ppo.js +3 -3
- package/indicators/ppo.src.js +4 -3
- package/indicators/price-channel.js +3 -3
- package/indicators/price-channel.src.js +12 -11
- package/indicators/price-envelopes.js +3 -3
- package/indicators/price-envelopes.src.js +12 -11
- package/indicators/psar.js +3 -3
- package/indicators/psar.src.js +3 -2
- package/indicators/regressions.js +3 -3
- package/indicators/regressions.src.js +10 -9
- package/indicators/roc.js +3 -3
- package/indicators/roc.src.js +3 -2
- package/indicators/rsi.js +3 -3
- package/indicators/rsi.src.js +3 -2
- package/indicators/slow-stochastic.js +3 -3
- package/indicators/slow-stochastic.src.js +3 -2
- package/indicators/stochastic.js +3 -3
- package/indicators/stochastic.src.js +12 -11
- package/indicators/supertrend.js +3 -3
- package/indicators/supertrend.src.js +20 -19
- package/indicators/tema.js +3 -3
- package/indicators/tema.src.js +3 -2
- package/indicators/trendline.js +3 -3
- package/indicators/trendline.src.js +3 -2
- package/indicators/trix.js +3 -3
- package/indicators/trix.src.js +3 -2
- package/indicators/volume-by-price.js +3 -3
- package/indicators/volume-by-price.src.js +8 -7
- package/indicators/vwap.js +3 -3
- package/indicators/vwap.src.js +3 -2
- package/indicators/williams-r.js +3 -3
- package/indicators/williams-r.src.js +4 -3
- package/indicators/wma.js +3 -3
- package/indicators/wma.src.js +3 -2
- package/indicators/zigzag.js +3 -3
- package/indicators/zigzag.src.js +8 -7
- package/lib/svg2pdf.js +7 -7
- package/lib/svg2pdf.src.js +185 -150
- package/modules/accessibility.js +3 -3
- package/modules/accessibility.src.js +664 -2793
- package/modules/annotations-advanced.d.ts +3 -0
- package/modules/annotations-advanced.js +3 -3
- package/modules/annotations-advanced.src.d.ts +3 -0
- package/modules/annotations-advanced.src.js +2949 -2920
- package/modules/annotations.d.ts +0 -3
- package/modules/annotations.js +3 -3
- package/modules/annotations.src.d.ts +0 -3
- package/modules/annotations.src.js +2926 -2905
- package/modules/arc-diagram.js +3 -3
- package/modules/arc-diagram.src.js +8 -6
- package/modules/arrow-symbols.js +3 -3
- package/modules/arrow-symbols.src.js +10 -13
- package/modules/boost-canvas.js +3 -3
- package/modules/boost-canvas.src.js +73 -26
- package/modules/boost.js +3 -3
- package/modules/boost.src.js +108 -30
- package/modules/broken-axis.js +3 -3
- package/modules/broken-axis.src.js +9 -9
- package/modules/bullet.js +3 -3
- package/modules/bullet.src.js +5 -4
- package/modules/coloraxis.js +3 -3
- package/modules/coloraxis.src.js +10 -9
- package/modules/current-date-indicator.js +3 -3
- package/modules/current-date-indicator.src.js +3 -2
- package/modules/cylinder.js +3 -3
- package/modules/cylinder.src.js +12 -11
- package/modules/data-tools.js +3 -3
- package/modules/data-tools.src.js +53 -36
- package/modules/data.d.ts +2 -2
- package/modules/data.js +3 -3
- package/modules/data.src.d.ts +2 -2
- package/modules/data.src.js +24 -23
- package/modules/datagrouping.js +3 -3
- package/modules/datagrouping.src.js +25 -23
- package/modules/debugger.js +3 -3
- package/modules/debugger.src.js +6 -5
- package/modules/dependency-wheel.js +3 -3
- package/modules/dependency-wheel.src.js +7 -5
- package/modules/dotplot.js +3 -3
- package/modules/dotplot.src.js +3 -2
- package/modules/drag-panes.js +3 -3
- package/modules/drag-panes.src.js +19 -21
- package/modules/draggable-points.js +3 -3
- package/modules/draggable-points.src.js +18 -16
- package/modules/drilldown.js +3 -3
- package/modules/drilldown.src.js +29 -26
- package/modules/dumbbell.js +3 -3
- package/modules/dumbbell.src.js +5 -4
- package/modules/export-data.js +3 -3
- package/modules/export-data.src.js +33 -22
- package/modules/exporting.d.ts +1 -1
- package/modules/exporting.js +3 -3
- package/modules/exporting.src.d.ts +1 -1
- package/modules/exporting.src.js +40 -39
- package/modules/flowmap.js +3 -3
- package/modules/flowmap.src.js +3 -2
- package/modules/full-screen.js +3 -3
- package/modules/full-screen.src.js +9 -13
- package/modules/funnel.js +3 -3
- package/modules/funnel.src.js +3 -2
- package/modules/funnel3d.js +3 -3
- package/modules/funnel3d.src.js +12 -12
- package/modules/gantt.d.ts +3 -4
- package/modules/gantt.js +3 -3
- package/modules/gantt.src.d.ts +3 -4
- package/modules/gantt.src.js +4165 -4002
- package/modules/geoheatmap.js +3 -3
- package/modules/geoheatmap.src.js +8 -7
- package/modules/grid-axis.js +3 -3
- package/modules/grid-axis.src.js +9 -8
- package/modules/heatmap.d.ts +2 -2
- package/modules/heatmap.js +3 -3
- package/modules/heatmap.src.d.ts +2 -2
- package/modules/heatmap.src.js +21 -15
- package/modules/heikinashi.js +3 -3
- package/modules/heikinashi.src.js +9 -6
- package/modules/histogram-bellcurve.js +3 -3
- package/modules/histogram-bellcurve.src.js +4 -3
- package/modules/hollowcandlestick.js +3 -3
- package/modules/hollowcandlestick.src.js +5 -4
- package/modules/item-series.js +3 -3
- package/modules/item-series.src.js +4 -3
- package/modules/lollipop.js +3 -3
- package/modules/lollipop.src.js +6 -3
- package/modules/map.d.ts +22 -1
- package/modules/map.js +3 -3
- package/modules/map.src.d.ts +22 -1
- package/modules/map.src.js +256 -155
- package/modules/marker-clusters.js +3 -3
- package/modules/marker-clusters.src.js +35 -37
- package/modules/mouse-wheel-zoom.js +3 -3
- package/modules/mouse-wheel-zoom.src.js +55 -163
- package/modules/navigator.d.ts +148 -0
- package/modules/navigator.js +9 -0
- package/modules/navigator.src.d.ts +148 -0
- package/modules/navigator.src.js +3921 -0
- package/modules/networkgraph.d.ts +2 -2
- package/modules/networkgraph.js +3 -3
- package/modules/networkgraph.src.d.ts +2 -2
- package/modules/networkgraph.src.js +36 -35
- package/modules/no-data-to-display.js +3 -3
- package/modules/no-data-to-display.src.js +6 -6
- package/modules/offline-exporting.js +3 -3
- package/modules/offline-exporting.src.js +10 -10
- package/modules/organization.js +3 -3
- package/modules/organization.src.js +41 -15
- package/modules/overlapping-datalabels.js +3 -3
- package/modules/overlapping-datalabels.src.js +4 -2
- package/modules/parallel-coordinates.js +3 -3
- package/modules/parallel-coordinates.src.js +12 -12
- package/modules/pareto.js +3 -3
- package/modules/pareto.src.js +3 -2
- package/modules/pathfinder.js +3 -3
- package/modules/pathfinder.src.js +18 -22
- package/modules/pattern-fill.js +3 -3
- package/modules/pattern-fill.src.js +22 -23
- package/modules/pictorial.js +3 -3
- package/modules/pictorial.src.js +25 -26
- package/modules/price-indicator.js +3 -3
- package/modules/price-indicator.src.js +3 -2
- package/modules/pyramid3d.js +3 -3
- package/modules/pyramid3d.src.js +3 -2
- package/modules/sankey.js +3 -3
- package/modules/sankey.src.js +93 -26
- package/modules/series-label.js +3 -3
- package/modules/series-label.src.js +28 -19
- package/modules/series-on-point.js +3 -3
- package/modules/series-on-point.src.js +5 -4
- package/modules/solid-gauge.js +3 -3
- package/modules/solid-gauge.src.js +3 -2
- package/modules/sonification.d.ts +2 -2
- package/modules/sonification.js +3 -3
- package/modules/sonification.src.d.ts +2 -2
- package/modules/sonification.src.js +8 -6
- package/modules/static-scale.js +3 -3
- package/modules/static-scale.src.js +6 -6
- package/modules/stock-tools.js +3 -3
- package/modules/stock-tools.src.js +109 -96
- package/modules/stock.d.ts +1 -1
- package/modules/stock.js +3 -3
- package/modules/stock.src.d.ts +1 -1
- package/modules/stock.src.js +10762 -10685
- package/modules/streamgraph.js +3 -3
- package/modules/streamgraph.src.js +3 -2
- package/modules/sunburst.js +3 -3
- package/modules/sunburst.src.js +50 -37
- package/modules/tiledwebmap.js +4 -4
- package/modules/tiledwebmap.src.js +28 -29
- package/modules/tilemap.js +3 -3
- package/modules/tilemap.src.js +4 -3
- package/modules/timeline.js +3 -3
- package/modules/timeline.src.js +5 -4
- package/modules/treegraph.js +3 -3
- package/modules/treegraph.src.js +58 -23
- package/modules/treegrid.js +3 -3
- package/modules/treegrid.src.js +49 -33
- package/modules/treemap.js +3 -3
- package/modules/treemap.src.js +44 -26
- package/modules/variable-pie.js +3 -3
- package/modules/variable-pie.src.js +3 -2
- package/modules/variwide.js +3 -3
- package/modules/variwide.src.js +9 -4
- package/modules/vector.js +3 -3
- package/modules/vector.src.js +3 -2
- package/modules/venn.js +3 -3
- package/modules/venn.src.js +16 -17
- package/modules/windbarb.js +3 -3
- package/modules/windbarb.src.js +5 -4
- package/modules/wordcloud.js +3 -3
- package/modules/wordcloud.src.js +10 -8
- package/modules/xrange.js +3 -3
- package/modules/xrange.src.js +5 -4
- package/package.json +1 -1
- package/standalone-navigator.js +2 -0
- package/standalone-navigator.src.js +49402 -0
- package/themes/avocado.js +3 -3
- package/themes/avocado.src.js +2 -1
- package/themes/brand-dark.js +3 -3
- package/themes/brand-dark.src.js +2 -1
- package/themes/brand-light.js +3 -3
- package/themes/brand-light.src.js +2 -1
- package/themes/dark-blue.js +3 -3
- package/themes/dark-blue.src.js +2 -1
- package/themes/dark-green.js +3 -3
- package/themes/dark-green.src.js +2 -1
- package/themes/dark-unica.js +3 -3
- package/themes/dark-unica.src.js +2 -1
- package/themes/gray.js +3 -3
- package/themes/gray.src.js +2 -1
- package/themes/grid-light.js +3 -3
- package/themes/grid-light.src.js +2 -1
- package/themes/grid.js +3 -3
- package/themes/grid.src.js +2 -1
- package/themes/high-contrast-dark.js +3 -3
- package/themes/high-contrast-dark.src.js +2 -1
- package/themes/high-contrast-light.js +3 -3
- package/themes/high-contrast-light.src.js +2 -1
- package/themes/sand-signika.js +3 -3
- package/themes/sand-signika.src.js +2 -1
- package/themes/skies.js +3 -3
- package/themes/skies.src.js +2 -1
- package/themes/sunset.js +3 -3
- package/themes/sunset.src.js +2 -1
- package/es-modules/Core/Renderer/HTML/HTMLRenderer.js +0 -259
- package/lib/canvg.js +0 -8
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Highcharts is a JavaScript charting library based on SVG rendering. This project
|
|
|
3
3
|
This package is intended for supporting client-side JavaScript charting through bundlers like Parcel or Webpack and environments like Babel or TypeScript. If you intend to generate static charts on the server side, use the [Highcharts node.js Export Server](https://www.npmjs.com/package/highcharts-export-server) instead.
|
|
4
4
|
|
|
5
5
|
### License
|
|
6
|
-
Please note that commercial use of Highcharts requires a commercial license.
|
|
6
|
+
Please note that commercial use of Highcharts requires a commercial license. Non-commercial use may qualify for a free educational or personal license. Read more about licenses [in the Highcharts shop](https://shop.highsoft.com/?utm_source=npmjs&utm_medium=referral&utm_campaign=highchartspage&utm_content=licenseinfo).
|
|
7
7
|
|
|
8
8
|
### Links
|
|
9
9
|
* Official website: [www.highcharts.com](http://www.highcharts.com)
|
package/bower.json
CHANGED
|
@@ -20,11 +20,14 @@
|
|
|
20
20
|
min-width: 0;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
.highcharts-
|
|
23
|
+
.highcharts-annotation-toolbar button {
|
|
24
24
|
margin-top: 0;
|
|
25
|
+
cursor: pointer;
|
|
26
|
+
background-color: var(--highcharts-neutral-color-3);
|
|
25
27
|
}
|
|
26
28
|
|
|
27
|
-
.highcharts-popup.highcharts-annotation-toolbar >
|
|
29
|
+
.highcharts-popup.highcharts-annotation-toolbar > p {
|
|
30
|
+
margin: 0;
|
|
28
31
|
display: block;
|
|
29
32
|
float: left;
|
|
30
33
|
padding: 12px;
|
|
@@ -134,22 +137,26 @@
|
|
|
134
137
|
padding: 15px 0;
|
|
135
138
|
}
|
|
136
139
|
|
|
137
|
-
.highcharts-indicator-list
|
|
140
|
+
button.highcharts-indicator-list-item {
|
|
138
141
|
cursor: pointer;
|
|
139
142
|
padding: 5px 20px;
|
|
140
|
-
margin: 0;
|
|
141
143
|
width: 100%;
|
|
142
144
|
height: auto;
|
|
143
145
|
overflow: hidden;
|
|
144
146
|
word-break: break-all;
|
|
145
147
|
box-sizing: border-box;
|
|
148
|
+
background-color: var(--highcharts-background-color);
|
|
149
|
+
text-align: left;
|
|
146
150
|
}
|
|
147
151
|
|
|
148
|
-
.highcharts-indicator-list li
|
|
149
|
-
|
|
152
|
+
.highcharts-indicator-list li {
|
|
153
|
+
width: 100%;
|
|
154
|
+
padding: 0;
|
|
155
|
+
height: auto;
|
|
150
156
|
}
|
|
151
157
|
|
|
152
|
-
.highcharts-tab-item {
|
|
158
|
+
.highcharts-popup > button.highcharts-tab-item {
|
|
159
|
+
margin: 0;
|
|
153
160
|
background-color: var(--highcharts-neutral-color-3);
|
|
154
161
|
cursor: pointer;
|
|
155
162
|
display: block;
|
|
@@ -159,7 +166,7 @@
|
|
|
159
166
|
line-height: 40px;
|
|
160
167
|
}
|
|
161
168
|
|
|
162
|
-
.highcharts-tab-item.highcharts-tab-item-active {
|
|
169
|
+
button.highcharts-tab-item.highcharts-tab-item-active {
|
|
163
170
|
background-color: var(--highcharts-neutral-color-10);
|
|
164
171
|
}
|
|
165
172
|
|
|
@@ -176,9 +183,11 @@
|
|
|
176
183
|
display: block;
|
|
177
184
|
}
|
|
178
185
|
|
|
179
|
-
.highcharts-popup-close {
|
|
186
|
+
.highcharts-popup > .highcharts-popup-close {
|
|
187
|
+
margin: 0;
|
|
180
188
|
background-repeat: no-repeat;
|
|
181
189
|
background-position: 50% 50%;
|
|
190
|
+
background-color: var(--highcharts-background-color);
|
|
182
191
|
width: 40px;
|
|
183
192
|
height: 40px;
|
|
184
193
|
cursor: pointer;
|
|
@@ -194,26 +203,25 @@
|
|
|
194
203
|
.highcharts-popup button.highcharts-annotation-edit-button:hover,
|
|
195
204
|
.highcharts-popup button.highcharts-annotation-remove-button:hover {
|
|
196
205
|
background-color: var(--highcharts-neutral-color-10);
|
|
197
|
-
cursor: pointer;
|
|
198
206
|
}
|
|
199
207
|
|
|
200
|
-
.highcharts-popup button {
|
|
208
|
+
div.highcharts-popup-rhs-col > button {
|
|
201
209
|
float: right;
|
|
202
|
-
border: none;
|
|
203
|
-
background: var(--highcharts-neutral-color-3);
|
|
204
|
-
color: var(--highcharts-neutral-color-60);
|
|
205
|
-
margin-left: 5px;
|
|
206
|
-
margin-top: 12px;
|
|
207
210
|
}
|
|
208
211
|
|
|
209
|
-
.highcharts-popup button
|
|
210
|
-
|
|
212
|
+
.highcharts-popup button {
|
|
213
|
+
border: none;
|
|
214
|
+
margin: 0 5px 0 0;
|
|
211
215
|
}
|
|
212
216
|
|
|
213
|
-
.highcharts-tab-disabled {
|
|
217
|
+
button.highcharts-tab-item.highcharts-tab-disabled {
|
|
214
218
|
color: var(--highcharts-neutral-color-20);
|
|
215
219
|
}
|
|
216
220
|
|
|
221
|
+
button.highcharts-tab-item.highcharts-tab-disabled:hover {
|
|
222
|
+
background-color: var(--highcharts-neutral-color-3);
|
|
223
|
+
}
|
|
224
|
+
|
|
217
225
|
/* annotation edit small popup */
|
|
218
226
|
.highcharts-popup button.highcharts-annotation-edit-button,
|
|
219
227
|
.highcharts-popup button.highcharts-annotation-remove-button {
|
package/css/stocktools/gui.css
CHANGED
|
@@ -209,9 +209,15 @@
|
|
|
209
209
|
background-color: transparent;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
.highcharts-bindings-wrapper li >
|
|
212
|
+
.highcharts-bindings-wrapper li > button.highcharts-menu-item-btn {
|
|
213
213
|
display: block;
|
|
214
|
+
border: none;
|
|
214
215
|
float: left;
|
|
216
|
+
padding: 0;
|
|
217
|
+
background: none;
|
|
218
|
+
color: inherit;
|
|
219
|
+
font: inherit;
|
|
220
|
+
cursor: pointer;
|
|
215
221
|
width: 100%;
|
|
216
222
|
height: 100%;
|
|
217
223
|
background-repeat: no-repeat;
|
|
@@ -219,15 +225,21 @@
|
|
|
219
225
|
background-size: 32px 32px;
|
|
220
226
|
}
|
|
221
227
|
|
|
222
|
-
.highcharts-submenu-wrapper li >
|
|
228
|
+
.highcharts-submenu-wrapper li > button.highcharts-menu-item-btn {
|
|
223
229
|
width: 40px;
|
|
224
230
|
}
|
|
225
231
|
|
|
226
|
-
.highcharts-bindings-wrapper li >
|
|
232
|
+
.highcharts-bindings-wrapper li > button.highcharts-submenu-item-arrow {
|
|
227
233
|
float: left;
|
|
234
|
+
background-repeat: no-repeat;
|
|
235
|
+
color: inherit;
|
|
236
|
+
border: none;
|
|
237
|
+
padding: 0;
|
|
238
|
+
font: inherit;
|
|
239
|
+
cursor: pointer;
|
|
240
|
+
background-color: transparent;
|
|
228
241
|
width: 10px;
|
|
229
242
|
height: 100%;
|
|
230
|
-
cursor: pointer;
|
|
231
243
|
position: absolute;
|
|
232
244
|
bottom: 0;
|
|
233
245
|
right: 0;
|
|
@@ -240,12 +252,12 @@
|
|
|
240
252
|
pointer-events: none;
|
|
241
253
|
}
|
|
242
254
|
|
|
243
|
-
.highcharts-bindings-wrapper li.highcharts-separator >
|
|
255
|
+
.highcharts-bindings-wrapper li.highcharts-separator > button.highcharts-menu-item-btn {
|
|
244
256
|
width: 100%;
|
|
245
257
|
}
|
|
246
258
|
|
|
247
|
-
.highcharts-bindings-wrapper li.highcharts-active >
|
|
248
|
-
.highcharts-bindings-wrapper li >
|
|
259
|
+
.highcharts-bindings-wrapper li.highcharts-active > button.highcharts-menu-item-btn,
|
|
260
|
+
.highcharts-bindings-wrapper li > button.highcharts-menu-item-btn:hover,
|
|
249
261
|
.highcharts-bindings-wrapper .highcharts-arrow-wrapper > div:hover,
|
|
250
262
|
.highcharts-bindings-wrapper li.highcharts-active,
|
|
251
263
|
.highcharts-toggle-toolbar:hover {
|
|
@@ -13,10 +13,8 @@
|
|
|
13
13
|
'use strict';
|
|
14
14
|
import F from '../Core/Templating.js';
|
|
15
15
|
const { format } = F;
|
|
16
|
-
import H from '../Core/Globals.js';
|
|
17
|
-
const { composed } = H;
|
|
18
16
|
import U from '../Core/Utilities.js';
|
|
19
|
-
const { getNestedProperty, pick
|
|
17
|
+
const { getNestedProperty, pick } = U;
|
|
20
18
|
/* *
|
|
21
19
|
*
|
|
22
20
|
* Composition
|
|
@@ -38,8 +36,8 @@ var A11yI18nComposition;
|
|
|
38
36
|
* @private
|
|
39
37
|
*/
|
|
40
38
|
function compose(ChartClass) {
|
|
41
|
-
|
|
42
|
-
|
|
39
|
+
const chartProto = ChartClass.prototype;
|
|
40
|
+
if (!chartProto.langFormat) {
|
|
43
41
|
chartProto.langFormat = langFormat;
|
|
44
42
|
}
|
|
45
43
|
}
|
|
@@ -149,7 +147,7 @@ var A11yI18nComposition;
|
|
|
149
147
|
* If negative, the function will subtract the number from the length of the
|
|
150
148
|
* array. Use this to stop iterating before the array ends. Example:
|
|
151
149
|
*
|
|
152
|
-
* - Format: 'List contains: {#each(myArray, -1) }and {myArray[-1]}.'
|
|
150
|
+
* - Format: 'List contains: {#each(myArray, -1), }and {myArray[-1]}.'
|
|
153
151
|
*
|
|
154
152
|
* - Context: { myArray: [0, 1, 2, 3] }
|
|
155
153
|
*
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
import D from '../Core/Defaults.js';
|
|
14
14
|
const { defaultOptions } = D;
|
|
15
15
|
import H from '../Core/Globals.js';
|
|
16
|
-
const {
|
|
16
|
+
const { doc } = H;
|
|
17
17
|
import U from '../Core/Utilities.js';
|
|
18
|
-
const { addEvent, extend, fireEvent, merge
|
|
18
|
+
const { addEvent, extend, fireEvent, merge } = U;
|
|
19
19
|
import HU from './Utils/HTMLUtilities.js';
|
|
20
20
|
const { removeElement } = HU;
|
|
21
21
|
import A11yI18n from './A11yI18n.js';
|
|
@@ -155,8 +155,10 @@ class Accessibility {
|
|
|
155
155
|
// Update keyboard navigation
|
|
156
156
|
this.keyboardNavigation.update(kbdNavOrder);
|
|
157
157
|
// Handle high contrast mode
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
// Should only be applied once, and not if explicitly disabled
|
|
159
|
+
if (!chart.highContrastModeActive &&
|
|
160
|
+
a11yOptions.highContrastMode !== false && (whcm.isHighContrastModeActive() ||
|
|
161
|
+
a11yOptions.highContrastMode === true)) {
|
|
160
162
|
whcm.setHighContrastTheme(chart);
|
|
161
163
|
}
|
|
162
164
|
fireEvent(chart, 'afterA11yUpdate', {
|
|
@@ -325,8 +327,8 @@ class Accessibility {
|
|
|
325
327
|
if (RangeSelectorClass) {
|
|
326
328
|
RangeSelectorComponent.compose(ChartClass, RangeSelectorClass);
|
|
327
329
|
}
|
|
328
|
-
|
|
329
|
-
|
|
330
|
+
const chartProto = ChartClass.prototype;
|
|
331
|
+
if (!chartProto.updateA11yEnabled) {
|
|
330
332
|
chartProto.updateA11yEnabled = chartUpdateA11yEnabled;
|
|
331
333
|
addEvent(ChartClass, 'destroy', chartOnDestroy);
|
|
332
334
|
addEvent(ChartClass, 'render', chartOnRender);
|
|
@@ -25,7 +25,7 @@ const { doc } = H;
|
|
|
25
25
|
import HU from '../Utils/HTMLUtilities.js';
|
|
26
26
|
const { addClass, getElement, getHeadingTagNameForElement, stripHTMLTagsFromString, visuallyHideElement } = HU;
|
|
27
27
|
import U from '../../Core/Utilities.js';
|
|
28
|
-
const { attr, pick } = U;
|
|
28
|
+
const { attr, pick, replaceNested } = U;
|
|
29
29
|
/* *
|
|
30
30
|
*
|
|
31
31
|
* Functions
|
|
@@ -62,13 +62,13 @@ function getTypeDescForEmptyChart(chart, formatContext) {
|
|
|
62
62
|
* @private
|
|
63
63
|
*/
|
|
64
64
|
function buildTypeDescriptionFromSeries(chart, types, context) {
|
|
65
|
-
const firstType = types[0],
|
|
65
|
+
const firstType = types[0], typeExplanation = chart.langFormat('accessibility.seriesTypeDescriptions.' + firstType, context), multi = chart.series && chart.series.length < 2 ? 'Single' : 'Multiple';
|
|
66
66
|
return (chart.langFormat('accessibility.chartTypes.' + firstType + multi, context) ||
|
|
67
|
-
chart.langFormat('accessibility.chartTypes.default' + multi, context)) + (
|
|
67
|
+
chart.langFormat('accessibility.chartTypes.default' + multi, context)) + (typeExplanation ? ' ' + typeExplanation : '');
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
|
-
* Return simplified
|
|
71
|
-
* familiar to most users, but in those cases we try to add an
|
|
70
|
+
* Return simplified explanation of chart type. Some types will not be
|
|
71
|
+
* familiar to most users, but in those cases we try to add an explanation
|
|
72
72
|
* of the type.
|
|
73
73
|
*
|
|
74
74
|
* @private
|
|
@@ -99,7 +99,8 @@ function getTypeDescription(chart, types) {
|
|
|
99
99
|
* @private
|
|
100
100
|
*/
|
|
101
101
|
function stripEmptyHTMLTags(str) {
|
|
102
|
-
|
|
102
|
+
// Scan alert #[71]: Loop for nested patterns
|
|
103
|
+
return replaceNested(str, [/<([\w\-.:!]+)\b[^<>]*>\s*<\/\1>/g, '']);
|
|
103
104
|
}
|
|
104
105
|
/* *
|
|
105
106
|
*
|
|
@@ -400,6 +401,10 @@ class InfoRegionsComponent extends AccessibilityComponent {
|
|
|
400
401
|
* @private
|
|
401
402
|
*/
|
|
402
403
|
getEndOfChartMarkerText() {
|
|
404
|
+
const endMarkerId = `highcharts-end-of-chart-marker-${this.chart.index}`, endMarker = getElement(endMarkerId);
|
|
405
|
+
if (endMarker) {
|
|
406
|
+
return endMarker.outerHTML;
|
|
407
|
+
}
|
|
403
408
|
const chart = this.chart, markerText = chart.langFormat('accessibility.screenReaderSection.endOfChartMarker', { chart: chart }), id = 'highcharts-end-of-chart-marker-' + chart.index;
|
|
404
409
|
return '<div id="' + id + '">' + markerText + '</div>';
|
|
405
410
|
}
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
import A from '../../Core/Animation/AnimationUtilities.js';
|
|
14
14
|
const { animObject } = A;
|
|
15
15
|
import H from '../../Core/Globals.js';
|
|
16
|
-
const {
|
|
16
|
+
const { doc } = H;
|
|
17
17
|
import Legend from '../../Core/Legend/Legend.js';
|
|
18
18
|
import U from '../../Core/Utilities.js';
|
|
19
|
-
const { addEvent, fireEvent, isNumber, pick,
|
|
19
|
+
const { addEvent, fireEvent, isNumber, pick, syncTimeout } = U;
|
|
20
20
|
import AccessibilityComponent from '../AccessibilityComponent.js';
|
|
21
21
|
import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
|
|
22
22
|
import CU from '../Utils/ChartUtilities.js';
|
|
@@ -439,8 +439,8 @@ class LegendComponent extends AccessibilityComponent {
|
|
|
439
439
|
* @private
|
|
440
440
|
*/
|
|
441
441
|
function compose(ChartClass, LegendClass) {
|
|
442
|
-
|
|
443
|
-
|
|
442
|
+
const chartProto = ChartClass.prototype;
|
|
443
|
+
if (!chartProto.highlightLegendItem) {
|
|
444
444
|
chartProto.highlightLegendItem = chartHighlightLegendItem;
|
|
445
445
|
addEvent(LegendClass, 'afterColorizeItem', legendOnAfterColorizeItem);
|
|
446
446
|
}
|
|
@@ -10,11 +10,8 @@
|
|
|
10
10
|
*
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
|
-
import Chart from '../../Core/Chart/Chart.js';
|
|
14
|
-
import H from '../../Core/Globals.js';
|
|
15
|
-
const { composed } = H;
|
|
16
13
|
import U from '../../Core/Utilities.js';
|
|
17
|
-
const { attr
|
|
14
|
+
const { attr } = U;
|
|
18
15
|
import AccessibilityComponent from '../AccessibilityComponent.js';
|
|
19
16
|
import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
|
|
20
17
|
import ChartUtilities from '../Utils/ChartUtilities.js';
|
|
@@ -321,8 +318,8 @@ class MenuComponent extends AccessibilityComponent {
|
|
|
321
318
|
* @private
|
|
322
319
|
*/
|
|
323
320
|
function compose(ChartClass) {
|
|
324
|
-
|
|
325
|
-
|
|
321
|
+
const chartProto = ChartClass.prototype;
|
|
322
|
+
if (!chartProto.hideExportMenu) {
|
|
326
323
|
chartProto.hideExportMenu = chartHideExportMenu;
|
|
327
324
|
chartProto.highlightExportItem = chartHighlightExportItem;
|
|
328
325
|
chartProto.highlightLastExportItem = chartHighlightLastExportItem;
|
|
@@ -181,9 +181,12 @@ class NavigatorComponent extends AccessibilityComponent {
|
|
|
181
181
|
*/
|
|
182
182
|
updateNavigator(beforeAnnounce) {
|
|
183
183
|
const performUpdate = (beforeAnnounce) => {
|
|
184
|
-
const chart = this.chart, navigator = chart
|
|
185
|
-
if (navigator &&
|
|
186
|
-
|
|
184
|
+
const chart = this.chart, { navigator, pointer } = chart;
|
|
185
|
+
if (navigator &&
|
|
186
|
+
pointer &&
|
|
187
|
+
this.minHandleProxy &&
|
|
188
|
+
this.maxHandleProxy) {
|
|
189
|
+
const chartPos = pointer.getChartPosition(), minNewX = parseFloat(this.minHandleProxy.value) /
|
|
187
190
|
100 * navigator.size, maxNewX = parseFloat(this.maxHandleProxy.value) /
|
|
188
191
|
100 * navigator.size;
|
|
189
192
|
// Fire fake events in order for each handle.
|
|
@@ -14,12 +14,9 @@ import AccessibilityComponent from '../AccessibilityComponent.js';
|
|
|
14
14
|
import Announcer from '../Utils/Announcer.js';
|
|
15
15
|
import ChartUtilities from '../Utils/ChartUtilities.js';
|
|
16
16
|
const { unhideChartElementFromAT, getAxisRangeDescription } = ChartUtilities;
|
|
17
|
-
import H from '../../Core/Globals.js';
|
|
18
|
-
const { composed } = H;
|
|
19
17
|
import KeyboardNavigationHandler from '../KeyboardNavigationHandler.js';
|
|
20
|
-
import RangeSelector from '../../Stock/RangeSelector/RangeSelector.js';
|
|
21
18
|
import U from '../../Core/Utilities.js';
|
|
22
|
-
const { addEvent, attr
|
|
19
|
+
const { addEvent, attr } = U;
|
|
23
20
|
/* *
|
|
24
21
|
*
|
|
25
22
|
* Functions
|
|
@@ -450,10 +447,10 @@ class RangeSelectorComponent extends AccessibilityComponent {
|
|
|
450
447
|
* @private
|
|
451
448
|
*/
|
|
452
449
|
function compose(ChartClass, RangeSelectorClass) {
|
|
453
|
-
|
|
454
|
-
|
|
450
|
+
const chartProto = ChartClass.prototype;
|
|
451
|
+
if (!chartProto.highlightRangeSelectorButton) {
|
|
455
452
|
chartProto.highlightRangeSelectorButton = (chartHighlightRangeSelectorButton);
|
|
456
|
-
addEvent(
|
|
453
|
+
addEvent(RangeSelectorClass, 'afterBtnClick', rangeSelectorAfterBtnClick);
|
|
457
454
|
}
|
|
458
455
|
}
|
|
459
456
|
RangeSelectorComponent.compose = compose;
|
|
@@ -35,10 +35,11 @@ var ForcedMarkersComposition;
|
|
|
35
35
|
* @private
|
|
36
36
|
*/
|
|
37
37
|
function compose(SeriesClass) {
|
|
38
|
-
if (pushUnique(composed,
|
|
38
|
+
if (pushUnique(composed, 'A11y.FM')) {
|
|
39
39
|
addEvent(SeriesClass, 'afterSetOptions', seriesOnAfterSetOptions);
|
|
40
40
|
addEvent(SeriesClass, 'render', seriesOnRender);
|
|
41
41
|
addEvent(SeriesClass, 'afterRender', seriesOnAfterRender);
|
|
42
|
+
addEvent(SeriesClass, 'renderCanvas', seriesOnRenderCanvas);
|
|
42
43
|
}
|
|
43
44
|
}
|
|
44
45
|
ForcedMarkersComposition.compose = compose;
|
|
@@ -190,7 +191,7 @@ var ForcedMarkersComposition;
|
|
|
190
191
|
function unforceSeriesMarkerOptions(series) {
|
|
191
192
|
const resetMarkerOptions = series.resetA11yMarkerOptions;
|
|
192
193
|
if (resetMarkerOptions) {
|
|
193
|
-
const
|
|
194
|
+
const originalOpacity = resetMarkerOptions.states &&
|
|
194
195
|
resetMarkerOptions.states.normal &&
|
|
195
196
|
resetMarkerOptions.states.normal.opacity;
|
|
196
197
|
// Temporarily set the old marker options to enabled in order to
|
|
@@ -202,12 +203,26 @@ var ForcedMarkersComposition;
|
|
|
202
203
|
marker: {
|
|
203
204
|
enabled: resetMarkerOptions.enabled,
|
|
204
205
|
states: {
|
|
205
|
-
normal: { opacity:
|
|
206
|
+
normal: { opacity: originalOpacity }
|
|
206
207
|
}
|
|
207
208
|
}
|
|
208
209
|
});
|
|
209
210
|
}
|
|
210
211
|
}
|
|
212
|
+
/**
|
|
213
|
+
* Reset markers if series is boosted and had forced markers (#17320).
|
|
214
|
+
* @private
|
|
215
|
+
*/
|
|
216
|
+
function seriesOnRenderCanvas() {
|
|
217
|
+
if (this.boosted && this.a11yMarkersForced) {
|
|
218
|
+
merge(true, this.options, {
|
|
219
|
+
marker: {
|
|
220
|
+
enabled: false
|
|
221
|
+
}
|
|
222
|
+
});
|
|
223
|
+
delete this.a11yMarkersForced;
|
|
224
|
+
}
|
|
225
|
+
}
|
|
211
226
|
})(ForcedMarkersComposition || (ForcedMarkersComposition = {}));
|
|
212
227
|
/* *
|
|
213
228
|
*
|
|
@@ -262,7 +262,7 @@ class NewDataAnnouncer {
|
|
|
262
262
|
* @private
|
|
263
263
|
*/
|
|
264
264
|
function compose(SeriesClass) {
|
|
265
|
-
if (pushUnique(composed,
|
|
265
|
+
if (pushUnique(composed, 'A11y.NDA')) {
|
|
266
266
|
addEvent(SeriesClass, 'addPoint', seriesOnAddPoint);
|
|
267
267
|
addEvent(SeriesClass, 'updatedData', seriesOnUpdatedData);
|
|
268
268
|
}
|
|
@@ -274,7 +274,8 @@ class NewDataAnnouncer {
|
|
|
274
274
|
* @param {Highcharts.Point} point
|
|
275
275
|
*/
|
|
276
276
|
function seriesOnAddPoint(e) {
|
|
277
|
-
const chart = this.chart, newDataAnnouncer =
|
|
277
|
+
const chart = this.chart, newDataAnnouncer = chart.accessibility?.components
|
|
278
|
+
.series.newDataAnnouncer;
|
|
278
279
|
if (newDataAnnouncer &&
|
|
279
280
|
newDataAnnouncer.chart === chart &&
|
|
280
281
|
chartHasAnnounceEnabled(chart)) {
|
|
@@ -290,7 +291,8 @@ class NewDataAnnouncer {
|
|
|
290
291
|
* @param {Highcharts.Series} series
|
|
291
292
|
*/
|
|
292
293
|
function seriesOnUpdatedData() {
|
|
293
|
-
const chart = this.chart, newDataAnnouncer =
|
|
294
|
+
const chart = this.chart, newDataAnnouncer = chart.accessibility?.components
|
|
295
|
+
.series.newDataAnnouncer;
|
|
294
296
|
if (newDataAnnouncer &&
|
|
295
297
|
newDataAnnouncer.chart === chart &&
|
|
296
298
|
chartHasAnnounceEnabled(chart)) {
|
|
@@ -15,9 +15,9 @@ import Series from '../../../Core/Series/Series.js';
|
|
|
15
15
|
import SeriesRegistry from '../../../Core/Series/SeriesRegistry.js';
|
|
16
16
|
const { seriesTypes } = SeriesRegistry;
|
|
17
17
|
import H from '../../../Core/Globals.js';
|
|
18
|
-
const {
|
|
18
|
+
const { doc } = H;
|
|
19
19
|
import U from '../../../Core/Utilities.js';
|
|
20
|
-
const { defined, fireEvent
|
|
20
|
+
const { defined, fireEvent } = U;
|
|
21
21
|
import KeyboardNavigationHandler from '../../KeyboardNavigationHandler.js';
|
|
22
22
|
import EventProvider from '../../Utils/EventProvider.js';
|
|
23
23
|
import ChartUtilities from '../../Utils/ChartUtilities.js';
|
|
@@ -567,8 +567,8 @@ class SeriesKeyboardNavigation {
|
|
|
567
567
|
* @private
|
|
568
568
|
*/
|
|
569
569
|
function compose(ChartClass, PointClass, SeriesClass) {
|
|
570
|
-
|
|
571
|
-
|
|
570
|
+
const chartProto = ChartClass.prototype, pointProto = PointClass.prototype, seriesProto = SeriesClass.prototype;
|
|
571
|
+
if (!chartProto.highlightAdjacentPoint) {
|
|
572
572
|
chartProto.highlightAdjacentPoint = chartHighlightAdjacentPoint;
|
|
573
573
|
chartProto.highlightAdjacentPointVertical = (chartHighlightAdjacentPointVertical);
|
|
574
574
|
chartProto.highlightAdjacentSeries = chartHighlightAdjacentSeries;
|
|
@@ -10,10 +10,8 @@
|
|
|
10
10
|
*
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
|
-
import H from '../Core/Globals.js';
|
|
14
|
-
const { composed } = H;
|
|
15
13
|
import U from '../Core/Utilities.js';
|
|
16
|
-
const { addEvent, pick
|
|
14
|
+
const { addEvent, pick } = U;
|
|
17
15
|
/* *
|
|
18
16
|
*
|
|
19
17
|
* Composition
|
|
@@ -44,10 +42,12 @@ var FocusBorderComposition;
|
|
|
44
42
|
* @private
|
|
45
43
|
*/
|
|
46
44
|
function compose(ChartClass, SVGElementClass) {
|
|
47
|
-
|
|
48
|
-
|
|
45
|
+
const chartProto = ChartClass.prototype, svgElementProto = SVGElementClass.prototype;
|
|
46
|
+
if (!chartProto.renderFocusBorder) {
|
|
49
47
|
chartProto.renderFocusBorder = chartRenderFocusBorder;
|
|
50
48
|
chartProto.setFocusToElement = chartSetFocusToElement;
|
|
49
|
+
}
|
|
50
|
+
if (!svgElementProto.addFocusBorder) {
|
|
51
51
|
svgElementProto.addFocusBorder = svgElementAddFocusBorder;
|
|
52
52
|
svgElementProto.removeFocusBorder = svgElementRemoveFocusBorder;
|
|
53
53
|
}
|
|
@@ -62,23 +62,32 @@ function setHighContrastTheme(chart) {
|
|
|
62
62
|
// Apply theme to chart
|
|
63
63
|
const theme = (chart.options.accessibility.highContrastTheme);
|
|
64
64
|
chart.update(theme, false);
|
|
65
|
+
const hasCustomColors = theme.colors?.length > 1;
|
|
65
66
|
// Force series colors (plotOptions is not enough)
|
|
66
67
|
chart.series.forEach(function (s) {
|
|
67
68
|
const plotOpts = theme.plotOptions[s.type] || {};
|
|
68
|
-
s.
|
|
69
|
+
const fillColor = hasCustomColors && s.colorIndex !== void 0 ?
|
|
70
|
+
theme.colors[s.colorIndex] :
|
|
71
|
+
plotOpts.color || 'window';
|
|
72
|
+
const seriesOptions = {
|
|
69
73
|
color: plotOpts.color || 'windowText',
|
|
70
|
-
colors:
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
74
|
+
colors: hasCustomColors ?
|
|
75
|
+
theme.colors : [plotOpts.color || 'windowText'],
|
|
76
|
+
borderColor: plotOpts.borderColor || 'window',
|
|
77
|
+
fillColor
|
|
78
|
+
};
|
|
79
|
+
s.update(seriesOptions, false);
|
|
80
|
+
if (s.points) {
|
|
81
|
+
// Force point colors if existing
|
|
82
|
+
s.points.forEach(function (p) {
|
|
83
|
+
if (p.options && p.options.color) {
|
|
84
|
+
p.update({
|
|
85
|
+
color: plotOpts.color || 'windowText',
|
|
86
|
+
borderColor: plotOpts.borderColor || 'window'
|
|
87
|
+
}, false);
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
}
|
|
82
91
|
});
|
|
83
92
|
// The redraw for each series and after is required for 3D pie
|
|
84
93
|
// (workaround)
|
|
@@ -10,11 +10,6 @@
|
|
|
10
10
|
*
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
|
-
/* *
|
|
14
|
-
*
|
|
15
|
-
* Theme
|
|
16
|
-
*
|
|
17
|
-
* */
|
|
18
13
|
const theme = {
|
|
19
14
|
chart: {
|
|
20
15
|
backgroundColor: 'window'
|
|
@@ -32,7 +27,8 @@ const theme = {
|
|
|
32
27
|
colorAxis: {
|
|
33
28
|
minColor: 'windowText',
|
|
34
29
|
maxColor: 'windowText',
|
|
35
|
-
stops: []
|
|
30
|
+
stops: [],
|
|
31
|
+
dataClasses: []
|
|
36
32
|
},
|
|
37
33
|
colors: ['windowText'],
|
|
38
34
|
xAxis: {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
* */
|
|
12
12
|
'use strict';
|
|
13
13
|
import H from '../Core/Globals.js';
|
|
14
|
-
const {
|
|
14
|
+
const { doc, win } = H;
|
|
15
15
|
import MenuComponent from './Components/MenuComponent.js';
|
|
16
16
|
import U from '../Core/Utilities.js';
|
|
17
|
-
const { addEvent,
|
|
17
|
+
const { addEvent, defined, fireEvent } = U;
|
|
18
18
|
import EventProvider from './Utils/EventProvider.js';
|
|
19
19
|
import HTMLUtilities from './Utils/HTMLUtilities.js';
|
|
20
20
|
const { getElement, simulatedEventTarget } = HTMLUtilities;
|
|
@@ -298,8 +298,16 @@ class KeyboardNavigation {
|
|
|
298
298
|
* @private
|
|
299
299
|
*/
|
|
300
300
|
removeExitAnchor() {
|
|
301
|
-
|
|
302
|
-
|
|
301
|
+
// Remove event from element and from eventRemovers array to prevent
|
|
302
|
+
// memory leak (#20329).
|
|
303
|
+
if (this.exitAnchor) {
|
|
304
|
+
if (defined(this.exitAnchor.focusEventRemover)) {
|
|
305
|
+
this.eventProvider.removeEvent(this.exitAnchor.focusEventRemover);
|
|
306
|
+
delete this.exitAnchor.focusEventRemover;
|
|
307
|
+
}
|
|
308
|
+
if (this.exitAnchor.parentNode) {
|
|
309
|
+
this.exitAnchor.parentNode.removeChild(this.exitAnchor);
|
|
310
|
+
}
|
|
303
311
|
delete this.exitAnchor;
|
|
304
312
|
}
|
|
305
313
|
}
|
|
@@ -309,7 +317,7 @@ class KeyboardNavigation {
|
|
|
309
317
|
*/
|
|
310
318
|
addExitAnchorEventsToEl(element) {
|
|
311
319
|
const chart = this.chart, keyboardNavigation = this;
|
|
312
|
-
this.eventProvider.addEvent(element, 'focus', function (ev) {
|
|
320
|
+
element.focusEventRemover = this.eventProvider.addEvent(element, 'focus', function (ev) {
|
|
313
321
|
const e = ev || win.event, focusComesFromChart = (e.relatedTarget &&
|
|
314
322
|
chart.container.contains(e.relatedTarget)), comingInBackwards = !(focusComesFromChart || keyboardNavigation.exiting);
|
|
315
323
|
if (chart.focusElement) {
|
|
@@ -331,7 +339,8 @@ class KeyboardNavigation {
|
|
|
331
339
|
// Validate the module
|
|
332
340
|
if (curModule &&
|
|
333
341
|
curModule.validate && !curModule.validate()) {
|
|
334
|
-
// Invalid.
|
|
342
|
+
// Invalid.
|
|
343
|
+
// Try moving backwards to find next valid.
|
|
335
344
|
keyboardNavigation.move(-1);
|
|
336
345
|
}
|
|
337
346
|
else if (curModule) {
|
|
@@ -393,8 +402,8 @@ class KeyboardNavigation {
|
|
|
393
402
|
*/
|
|
394
403
|
function compose(ChartClass) {
|
|
395
404
|
MenuComponent.compose(ChartClass);
|
|
396
|
-
|
|
397
|
-
|
|
405
|
+
const chartProto = ChartClass.prototype;
|
|
406
|
+
if (!chartProto.dismissPopupContent) {
|
|
398
407
|
chartProto.dismissPopupContent = chartDismissPopupContent;
|
|
399
408
|
addEvent(doc, 'keydown', documentOnKeydown);
|
|
400
409
|
}
|