highcharts 13.0.0 → 13.0.2
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/bower.json +1 -1
- package/css/highcharts.css +2 -1
- package/es-modules/Accessibility/A11yI18n.js +4 -4
- package/es-modules/Accessibility/Accessibility.js +38 -1
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +6 -4
- package/es-modules/Accessibility/Components/LegendComponent.js +3 -4
- package/es-modules/Accessibility/Components/NavigatorComponent.js +3 -4
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +13 -10
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +8 -4
- package/es-modules/Accessibility/Components/ZoomComponent.js +2 -2
- package/es-modules/Accessibility/FocusBorder.js +2 -2
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -3
- package/es-modules/Accessibility/Options/DeprecatedOptions.js +1 -2
- package/es-modules/Accessibility/ProxyElement.js +1 -0
- package/es-modules/Core/Animation/AnimationUtilities.js +34 -43
- package/es-modules/Core/Animation/Fx.js +16 -19
- package/es-modules/Core/Axis/Axis.js +49 -59
- package/es-modules/Core/Axis/Axis3DComposition.js +8 -6
- package/es-modules/Core/Axis/AxisDefaults.js +12 -2
- package/es-modules/Core/Axis/BrokenAxis.js +6 -5
- package/es-modules/Core/Axis/Color/ColorAxis.js +24 -12
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -3
- package/es-modules/Core/Axis/GridAxis.js +12 -5
- package/es-modules/Core/Axis/LogarithmicAxis.js +5 -3
- package/es-modules/Core/Axis/NavigatorAxisComposition.js +2 -2
- package/es-modules/Core/Axis/OrdinalAxis.js +21 -11
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +3 -2
- package/es-modules/Core/Axis/RadialAxis.js +23 -22
- package/es-modules/Core/Axis/ScrollbarAxis.js +3 -3
- package/es-modules/Core/Axis/Stacking/StackItem.js +5 -5
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +5 -6
- package/es-modules/Core/Axis/Tick.js +10 -11
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +1 -1
- package/es-modules/Core/Axis/TreeGrid/TreeGridTick.js +3 -3
- package/es-modules/Core/Chart/Chart.js +58 -53
- package/es-modules/Core/Chart/Chart3D.js +3 -3
- package/es-modules/Core/Chart/ChartDefaults.js +24 -1
- package/es-modules/Core/Chart/MapChart.js +7 -10
- package/es-modules/Core/Chart/StockChart.js +15 -11
- package/es-modules/Core/Color/Color.js +3 -1
- package/es-modules/Core/Defaults.js +44 -2
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/Legend/Legend.js +20 -17
- package/es-modules/Core/Legend/LegendSymbol.js +2 -2
- package/es-modules/Core/MSPointer.js +2 -2
- package/es-modules/Core/Math3D.js +6 -7
- package/es-modules/Core/Pointer.js +20 -10
- package/es-modules/Core/Renderer/HTML/AST.js +5 -1
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +23 -16
- package/es-modules/Core/Renderer/RendererUtilities.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGElement.js +12 -11
- package/es-modules/Core/Renderer/SVG/SVGElement3D.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGLabel.js +5 -5
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +6 -6
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +13 -12
- package/es-modules/Core/Renderer/SVG/Symbols.js +6 -5
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +2 -2
- package/es-modules/Core/Responsive.js +7 -5
- package/es-modules/Core/Series/DataLabel.js +9 -8
- package/es-modules/Core/Series/OverlappingDataLabels.js +5 -2
- package/es-modules/Core/Series/Point.js +31 -24
- package/es-modules/Core/Series/Series.js +125 -82
- package/es-modules/Core/Series/Series3D.js +2 -2
- package/es-modules/Core/Series/SeriesDefaults.js +33 -0
- package/es-modules/Core/Templating.js +18 -15
- package/es-modules/Core/Tooltip.js +12 -9
- package/es-modules/Core/Utilities.js +4 -3
- package/es-modules/Data/Connectors/DataConnector.js +2 -2
- package/es-modules/Data/Connectors/GoogleSheetsConnector.js +2 -2
- package/es-modules/Data/DataTable.js +17 -0
- package/es-modules/Data/DataTableCore.js +1 -1
- package/es-modules/Extensions/Annotations/Annotation.js +5 -6
- package/es-modules/Extensions/Annotations/AnnotationChart.js +2 -2
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
- package/es-modules/Extensions/Annotations/ControlPoint.js +2 -2
- package/es-modules/Extensions/Annotations/Controllables/ControllableLabel.js +2 -2
- package/es-modules/Extensions/Annotations/EventEmitter.js +4 -4
- package/es-modules/Extensions/Annotations/MockPoint.js +7 -9
- package/es-modules/Extensions/Annotations/NavigationBindings.js +6 -3
- package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +31 -4
- package/es-modules/Extensions/Annotations/Popup/Popup.js +3 -2
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +6 -8
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -4
- package/es-modules/Extensions/Annotations/Types/Measure.js +28 -10
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +4 -2
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -1
- package/es-modules/Extensions/Annotations/Types/VerticalLine.js +3 -3
- package/es-modules/Extensions/Boost/Boost.js +13 -0
- package/es-modules/Extensions/Boost/BoostChart.js +11 -4
- package/es-modules/Extensions/Boost/BoostSeries.js +17 -11
- package/es-modules/Extensions/Boost/WGLRenderer.js +9 -6
- package/es-modules/Extensions/Boost/WGLShader.js +3 -3
- package/es-modules/Extensions/BoostCanvas.js +2 -2
- package/es-modules/Extensions/BorderRadius.js +12 -10
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +6 -5
- package/es-modules/Extensions/DataGrouping/DataGrouping.js +2 -2
- package/es-modules/Extensions/DataGrouping/DataGroupingAxisComposition.js +4 -3
- package/es-modules/Extensions/DataGrouping/DataGroupingSeriesComposition.js +2 -2
- package/es-modules/Extensions/DraggablePoints/DragDropProps.js +2 -3
- package/es-modules/Extensions/DraggablePoints/DraggableChart.js +1 -2
- package/es-modules/Extensions/Drilldown/Drilldown.js +1 -2
- package/es-modules/Extensions/Drilldown/DrilldownSeries.js +1 -2
- package/es-modules/Extensions/ExportData/ExportData.js +21 -16
- package/es-modules/Extensions/Exporting/Exporting.js +28 -28
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +32 -0
- package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +1 -2
- package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +1 -2
- package/es-modules/Extensions/MouseWheelZoom/MouseWheelZoom.js +2 -2
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +31 -4
- package/es-modules/Extensions/Pane/PaneComposition.js +2 -2
- package/es-modules/Extensions/Pane/PaneDefaults.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates/ParallelAxis.js +2 -2
- package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +3 -0
- package/es-modules/Extensions/PatternFill.js +7 -5
- package/es-modules/Extensions/PriceIndication.js +5 -4
- package/es-modules/Extensions/ScrollablePlotArea.js +8 -2
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +8 -9
- package/es-modules/Extensions/Sonification/MIDI.js +2 -3
- package/es-modules/Extensions/Sonification/Sonification.js +2 -2
- package/es-modules/Extensions/Sonification/SonificationSpeaker.js +3 -2
- package/es-modules/Extensions/Sonification/SynthPatch.js +4 -4
- package/es-modules/Extensions/Sonification/TimelineFromChart.js +11 -11
- package/es-modules/Gantt/Legacy.js +2 -2
- package/es-modules/Gantt/Pathfinder.js +3 -3
- package/es-modules/Gantt/PathfinderAlgorithms.js +4 -3
- package/es-modules/Gantt/Tree.js +1 -1
- package/es-modules/Maps/GeoJSONComposition.js +14 -1
- package/es-modules/Maps/MapNavigation.js +4 -4
- package/es-modules/Maps/MapPointer.js +2 -2
- package/es-modules/Maps/MapView.js +3 -3
- package/es-modules/Series/ArcDiagram/ArcDiagramSeries.js +8 -6
- package/es-modules/Series/Area/AreaSeries.js +4 -5
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +87 -147
- package/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +42 -4
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +10 -6
- package/es-modules/Series/BoxPlot/BoxPlotSeries.js +40 -32
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +33 -1
- package/es-modules/Series/Bubble/BubbleLegendItem.js +10 -6
- package/es-modules/Series/Bubble/BubbleSeries.js +25 -9
- package/es-modules/Series/Bullet/BulletSeries.js +17 -10
- package/es-modules/Series/Candlestick/CandlestickSeries.js +3 -3
- package/es-modules/Series/CenteredUtilities.js +12 -9
- package/es-modules/Series/ColorMapComposition.js +7 -4
- package/es-modules/Series/Column/ColumnPoint.js +2 -0
- package/es-modules/Series/Column/ColumnSeries.js +14 -14
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +4 -2
- package/es-modules/Series/Column3D/Column3DComposition.js +22 -19
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPoint.js +18 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPointOptions.js +12 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +7 -6
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeriesOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangePoint.js +2 -0
- package/es-modules/Series/ColumnRange/ColumnRangePointOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +13 -144
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesDefaults.js +148 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesOptions.js +12 -0
- package/es-modules/Series/Contour/ContourPoint.js +2 -0
- package/es-modules/Series/Contour/ContourSeries.js +1 -0
- package/es-modules/Series/Contour/ContourSeriesDefaults.js +7 -0
- package/es-modules/Series/Contour/ContourShader.js +9 -1
- package/es-modules/Series/CrossSymbol.js +3 -2
- package/es-modules/Series/Cylinder/CylinderComposition.js +12 -12
- package/es-modules/Series/Cylinder/CylinderPoint.js +2 -0
- package/es-modules/Series/Cylinder/CylinderPointOptions.js +15 -0
- package/es-modules/Series/Cylinder/CylinderSeries.js +2 -1
- package/es-modules/Series/Cylinder/CylinderSeriesOptions.js +15 -0
- package/es-modules/Series/Cylinder/SVGElement3DCylinder.js +2 -0
- package/es-modules/Series/DataModifyComposition.js +9 -7
- package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +3 -1
- package/es-modules/Series/DependencyWheel/DependencyWheelPointOptions.js +14 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +8 -8
- package/es-modules/Series/DependencyWheel/DependencyWheelSeriesOptions.js +14 -0
- package/es-modules/Series/DerivedComposition.js +9 -8
- package/es-modules/Series/DotPlot/DotPlotPoint.js +18 -0
- package/es-modules/Series/DotPlot/DotPlotPointOptions.js +12 -0
- package/es-modules/Series/DotPlot/DotPlotSeries.js +6 -4
- package/es-modules/Series/DotPlot/DotPlotSeriesOptions.js +12 -0
- package/es-modules/Series/DragNodesComposition.js +11 -8
- package/es-modules/Series/DrawPointUtilities.js +3 -1
- package/es-modules/Series/Dumbbell/DumbbellPoint.js +19 -6
- package/es-modules/Series/Dumbbell/DumbbellPointOptions.js +12 -0
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +33 -15
- package/es-modules/Series/Dumbbell/DumbbellSeriesOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarPoint.js +18 -0
- package/es-modules/Series/ErrorBar/ErrorBarPointOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarSeries.js +6 -9
- package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +15 -1
- package/es-modules/Series/ErrorBar/ErrorBarSeriesOptions.js +12 -0
- package/es-modules/Series/Flags/FlagsSeries.js +5 -14
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -1
- package/es-modules/Series/FlowMap/FlowMapPoint.js +5 -3
- package/es-modules/Series/FlowMap/FlowMapSeries.js +17 -9
- package/es-modules/Series/Funnel/FunnelSeries.js +25 -26
- package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +12 -0
- package/es-modules/Series/Funnel3D/Funnel3DSeries.js +7 -5
- package/es-modules/Series/Gantt/GanttSeries.js +2 -1
- package/es-modules/Series/Gauge/GaugeSeries.js +2 -2
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +9 -9
- package/es-modules/Series/GraphLayoutComposition.js +3 -3
- package/es-modules/Series/Heatmap/HeatmapPoint.js +6 -6
- package/es-modules/Series/Heatmap/HeatmapPointOptions.js +12 -0
- package/es-modules/Series/Heatmap/HeatmapSeries.js +13 -13
- package/es-modules/Series/Heatmap/HeatmapSeriesOptions.js +12 -0
- package/es-modules/Series/Histogram/HistogramPoint.js +17 -0
- package/es-modules/Series/Histogram/HistogramPointOptions.js +12 -0
- package/es-modules/Series/Histogram/HistogramSeries.js +15 -3
- package/es-modules/Series/Histogram/HistogramSeriesOptions.js +12 -0
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +9 -9
- package/es-modules/Series/InterpolationUtilities.js +5 -5
- package/es-modules/Series/Item/ItemPointOptions.js +14 -0
- package/es-modules/Series/Item/ItemSeries.js +18 -6
- package/es-modules/Series/Item/ItemSeriesOptions.js +14 -0
- package/es-modules/Series/Map/MapPoint.js +5 -3
- package/es-modules/Series/Map/MapSeries.js +6 -10
- package/es-modules/Series/Map/MapSeriesDefaults.js +11 -1
- package/es-modules/Series/Networkgraph/NetworkgraphPoint.js +3 -3
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +14 -9
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +12 -0
- package/es-modules/Series/Networkgraph/ReingoldFruchtermanLayout.js +18 -9
- package/es-modules/Series/NodesComposition.js +9 -10
- package/es-modules/Series/OHLC/OHLCPoint.js +2 -2
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -0
- package/es-modules/Series/Organization/OrganizationPoint.js +3 -2
- package/es-modules/Series/Organization/OrganizationSeries.js +29 -7
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +11 -4
- package/es-modules/Series/PackedBubble/PackedBubbleLayout.js +3 -3
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +5 -5
- package/es-modules/Series/Pictorial/PictorialSeries.js +4 -2
- package/es-modules/Series/Pie/PieDataLabel.js +2 -2
- package/es-modules/Series/Pie/PiePoint.js +3 -4
- package/es-modules/Series/Pie/PieSeries.js +3 -2
- package/es-modules/Series/Pie3D/Pie3DSeries.js +8 -4
- package/es-modules/Series/PolarComposition.js +13 -14
- package/es-modules/Series/Polygon/PolygonSeries.js +2 -2
- package/es-modules/Series/Polygon/PolygonSeriesDefaults.js +20 -0
- package/es-modules/Series/RangeDataLabel.js +128 -0
- package/es-modules/Series/Sankey/SankeySeries.js +13 -7
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +2 -2
- package/es-modules/Series/Scatter/ScatterSeries.js +6 -5
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +2 -0
- package/es-modules/Series/SimulationSeriesUtilities.js +1 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +4 -4
- package/es-modules/Series/Spline/SplineSeries.js +5 -5
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +8 -0
- package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +20 -12
- package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -1
- package/es-modules/Series/Tilemap/TilemapShapes.js +2 -2
- package/es-modules/Series/Timeline/TimelinePoint.js +2 -2
- package/es-modules/Series/Timeline/TimelineSeries.js +13 -6
- package/es-modules/Series/TreeUtilities.js +16 -7
- package/es-modules/Series/Treegraph/TreegraphLink.js +2 -2
- package/es-modules/Series/Treegraph/TreegraphSeries.js +22 -13
- package/es-modules/Series/Treemap/TreemapPoint.js +2 -2
- package/es-modules/Series/Treemap/TreemapSeries.js +14 -11
- package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +22 -1
- package/es-modules/Series/VariablePie/VariablePieSeries.js +6 -4
- package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +3 -2
- package/es-modules/Series/Variwide/VariwideSeries.js +2 -2
- package/es-modules/Series/Vector/VectorSeries.js +7 -9
- package/es-modules/Series/Venn/VennSeries.js +3 -4
- package/es-modules/Series/Waterfall/WaterfallSeries.js +3 -3
- package/es-modules/Series/Windbarb/WindbarbSeries.js +8 -10
- package/es-modules/Series/XRange/XRangeSeries.js +8 -8
- package/es-modules/Shared/TimeBase.js +13 -8
- package/es-modules/Shared/Utilities.js +9 -7
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +3 -3
- package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +4 -3
- package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +1 -1
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +2 -2
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -2
- package/es-modules/Stock/Navigator/ChartNavigatorComposition.js +4 -4
- package/es-modules/Stock/Navigator/Navigator.js +26 -26
- package/es-modules/Stock/Navigator/NavigatorDefaults.js +9 -2
- package/es-modules/Stock/Navigator/NavigatorSymbols.js +2 -1
- package/es-modules/Stock/Navigator/StandaloneNavigator.js +55 -14
- package/es-modules/Stock/RangeSelector/RangeSelector.js +15 -11
- package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +3 -3
- package/es-modules/Stock/Scrollbar/Scrollbar.js +8 -7
- package/es-modules/Stock/StockTools/StockToolbar.js +6 -6
- package/es-modules/Stock/StockTools/StockTools.js +2 -2
- package/es-modules/Stock/StockTools/StockToolsBindings.js +7 -7
- package/es-modules/Stock/StockTools/StockToolsGui.js +6 -4
- package/es-modules/masters/highcharts-3d.src.js +1 -1
- package/es-modules/masters/highcharts-autoload.src.js +1 -1
- package/es-modules/masters/highcharts-gantt.src.js +1 -1
- package/es-modules/masters/highcharts-more.src.js +1 -1
- package/es-modules/masters/highcharts.src.js +13 -8
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.src.js +1 -1
- package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
- package/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
- package/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
- package/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +1 -1
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +1 -1
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/contour.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data-sorting.src.js +1 -1
- package/es-modules/masters/modules/data-tools.src.js +1 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +1 -1
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +1 -1
- package/es-modules/masters/modules/exporting.src.js +1 -1
- package/es-modules/masters/modules/flowmap.src.js +2 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/es-modules/masters/modules/navigator.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/non-cartesian-zoom.src.js +1 -1
- package/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/pictorial.src.js +1 -1
- package/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/renko.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +3 -2
- package/es-modules/masters/modules/textpath.src.js +1 -1
- package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/standalone-navigator.src.js +1 -1
- package/es-modules/masters/themes/adaptive.src.js +1 -1
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/high-contrast.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -1
- package/esm/highcharts-3d.js +2 -2
- package/esm/highcharts-3d.src.js +78 -55
- package/esm/highcharts-autoload.js +2 -2
- package/esm/highcharts-autoload.src.js +22 -8
- package/esm/highcharts-gantt.js +2 -2
- package/esm/highcharts-gantt.src.js +1 -24
- package/esm/highcharts-more.js +2 -2
- package/esm/highcharts-more.src.js +1198 -981
- package/esm/highcharts.js +5 -5
- package/esm/highcharts.src.js +702 -515
- package/esm/highmaps.js +2 -2
- package/esm/highmaps.src.js +1 -24
- package/esm/highstock.js +2 -2
- package/esm/highstock.src.js +1 -24
- package/esm/i18n/fr-FR.js +2 -2
- package/esm/i18n/fr-FR.src.js +22 -8
- package/esm/i18n/nb-NO.js +2 -2
- package/esm/i18n/nb-NO.src.js +22 -8
- package/esm/i18n/zh-CN.js +2 -2
- package/esm/i18n/zh-CN.src.js +22 -8
- package/esm/indicators/acceleration-bands.js +2 -2
- package/esm/indicators/acceleration-bands.src.js +22 -8
- package/esm/indicators/accumulation-distribution.js +2 -2
- package/esm/indicators/accumulation-distribution.src.js +22 -8
- package/esm/indicators/ao.js +2 -2
- package/esm/indicators/ao.src.js +22 -8
- package/esm/indicators/apo.js +2 -2
- package/esm/indicators/apo.src.js +22 -8
- package/esm/indicators/aroon-oscillator.js +2 -2
- package/esm/indicators/aroon-oscillator.src.js +22 -8
- package/esm/indicators/aroon.js +2 -2
- package/esm/indicators/aroon.src.js +24 -10
- package/esm/indicators/atr.js +2 -2
- package/esm/indicators/atr.src.js +22 -8
- package/esm/indicators/bollinger-bands.js +2 -2
- package/esm/indicators/bollinger-bands.src.js +22 -8
- package/esm/indicators/cci.js +2 -2
- package/esm/indicators/cci.src.js +22 -8
- package/esm/indicators/chaikin.js +2 -2
- package/esm/indicators/chaikin.src.js +22 -8
- package/esm/indicators/cmf.js +2 -2
- package/esm/indicators/cmf.src.js +22 -8
- package/esm/indicators/cmo.js +2 -2
- package/esm/indicators/cmo.src.js +22 -8
- package/esm/indicators/dema.js +2 -2
- package/esm/indicators/dema.src.js +22 -8
- package/esm/indicators/disparity-index.js +2 -2
- package/esm/indicators/disparity-index.src.js +22 -8
- package/esm/indicators/dmi.js +2 -2
- package/esm/indicators/dmi.src.js +22 -8
- package/esm/indicators/dpo.js +2 -2
- package/esm/indicators/dpo.src.js +25 -10
- package/esm/indicators/ichimoku-kinko-hyo.js +2 -2
- package/esm/indicators/ichimoku-kinko-hyo.src.js +22 -8
- package/esm/indicators/indicators-all.js +2 -2
- package/esm/indicators/indicators-all.src.js +31 -17
- package/esm/indicators/indicators.js +2 -2
- package/esm/indicators/indicators.src.js +24 -10
- package/esm/indicators/keltner-channels.js +2 -2
- package/esm/indicators/keltner-channels.src.js +22 -8
- package/esm/indicators/klinger.js +2 -2
- package/esm/indicators/klinger.src.js +22 -8
- package/esm/indicators/macd.js +2 -2
- package/esm/indicators/macd.src.js +22 -8
- package/esm/indicators/mfi.js +2 -2
- package/esm/indicators/mfi.src.js +22 -8
- package/esm/indicators/momentum.js +2 -2
- package/esm/indicators/momentum.src.js +22 -8
- package/esm/indicators/natr.js +2 -2
- package/esm/indicators/natr.src.js +22 -8
- package/esm/indicators/obv.js +2 -2
- package/esm/indicators/obv.src.js +22 -8
- package/esm/indicators/pivot-points.js +2 -2
- package/esm/indicators/pivot-points.src.js +22 -8
- package/esm/indicators/ppo.js +2 -2
- package/esm/indicators/ppo.src.js +22 -8
- package/esm/indicators/price-channel.js +2 -2
- package/esm/indicators/price-channel.src.js +22 -8
- package/esm/indicators/price-envelopes.js +2 -2
- package/esm/indicators/price-envelopes.src.js +22 -8
- package/esm/indicators/psar.js +2 -2
- package/esm/indicators/psar.src.js +22 -8
- package/esm/indicators/regressions.js +2 -2
- package/esm/indicators/regressions.src.js +22 -8
- package/esm/indicators/roc.js +2 -2
- package/esm/indicators/roc.src.js +22 -8
- package/esm/indicators/rsi.js +2 -2
- package/esm/indicators/rsi.src.js +23 -9
- package/esm/indicators/slow-stochastic.js +2 -2
- package/esm/indicators/slow-stochastic.src.js +22 -8
- package/esm/indicators/stochastic.js +2 -2
- package/esm/indicators/stochastic.src.js +22 -8
- package/esm/indicators/supertrend.js +2 -2
- package/esm/indicators/supertrend.src.js +22 -8
- package/esm/indicators/tema.js +2 -2
- package/esm/indicators/tema.src.js +22 -8
- package/esm/indicators/trendline.js +2 -2
- package/esm/indicators/trendline.src.js +22 -8
- package/esm/indicators/trix.js +2 -2
- package/esm/indicators/trix.src.js +22 -8
- package/esm/indicators/volume-by-price.js +2 -2
- package/esm/indicators/volume-by-price.src.js +23 -10
- package/esm/indicators/vwap.js +2 -2
- package/esm/indicators/vwap.src.js +22 -8
- package/esm/indicators/williams-r.js +2 -2
- package/esm/indicators/williams-r.src.js +22 -8
- package/esm/indicators/wma.js +2 -2
- package/esm/indicators/wma.src.js +22 -8
- package/esm/indicators/zigzag.js +2 -2
- package/esm/indicators/zigzag.src.js +22 -8
- package/esm/modules/accessibility.js +2 -2
- package/esm/modules/accessibility.src.js +564 -92
- package/esm/modules/annotations-advanced.js +11 -11
- package/esm/modules/annotations-advanced.src.js +224 -162
- package/esm/modules/annotations.js +11 -11
- package/esm/modules/annotations.src.js +184 -144
- package/esm/modules/arc-diagram.js +2 -2
- package/esm/modules/arc-diagram.src.js +37 -22
- package/esm/modules/arrow-symbols.js +3 -3
- package/esm/modules/arrow-symbols.src.js +22 -8
- package/esm/modules/boost-canvas.js +2 -2
- package/esm/modules/boost-canvas.src.js +60 -30
- package/esm/modules/boost.js +2 -2
- package/esm/modules/boost.src.js +72 -29
- package/esm/modules/broken-axis.js +2 -2
- package/esm/modules/broken-axis.src.js +27 -12
- package/esm/modules/bullet.js +2 -2
- package/esm/modules/bullet.src.js +38 -17
- package/esm/modules/coloraxis.js +2 -2
- package/esm/modules/coloraxis.src.js +47 -21
- package/esm/modules/contour.js +3 -3
- package/esm/modules/contour.src.js +46 -13
- package/esm/modules/current-date-indicator.js +2 -2
- package/esm/modules/current-date-indicator.src.js +22 -8
- package/esm/modules/cylinder.js +2 -2
- package/esm/modules/cylinder.src.js +46 -28
- package/esm/modules/data-sorting.js +2 -2
- package/esm/modules/data-sorting.src.js +22 -8
- package/esm/modules/data-tools.js +2 -2
- package/esm/modules/data-tools.src.js +44 -13
- package/esm/modules/data.js +4 -4
- package/esm/modules/data.src.js +23 -9
- package/esm/modules/datagrouping.js +2 -2
- package/esm/modules/datagrouping.src.js +28 -13
- package/esm/modules/debugger.js +2 -2
- package/esm/modules/debugger.src.js +22 -8
- package/esm/modules/dependency-wheel.js +2 -2
- package/esm/modules/dependency-wheel.src.js +428 -17
- package/esm/modules/dotplot.js +2 -2
- package/esm/modules/dotplot.src.js +27 -11
- package/esm/modules/drag-panes.js +2 -2
- package/esm/modules/drag-panes.src.js +22 -8
- package/esm/modules/draggable-points.js +2 -2
- package/esm/modules/draggable-points.src.js +24 -12
- package/esm/modules/drilldown.js +2 -2
- package/esm/modules/drilldown.src.js +38 -25
- package/esm/modules/dumbbell.js +2 -2
- package/esm/modules/dumbbell.src.js +72 -27
- package/esm/modules/export-data.js +2 -2
- package/esm/modules/export-data.src.js +42 -23
- package/esm/modules/exporting.js +2 -2
- package/esm/modules/exporting.src.js +83 -37
- package/esm/modules/flowmap.js +3 -2
- package/esm/modules/flowmap.src.js +43 -18
- package/esm/modules/full-screen.js +2 -2
- package/esm/modules/full-screen.src.js +22 -8
- package/esm/modules/funnel.js +2 -2
- package/esm/modules/funnel.src.js +73 -42
- package/esm/modules/funnel3d.js +2 -2
- package/esm/modules/funnel3d.src.js +35 -20
- package/esm/modules/gantt.js +2 -2
- package/esm/modules/gantt.src.js +542 -100
- package/esm/modules/geoheatmap.js +2 -2
- package/esm/modules/geoheatmap.src.js +35 -21
- package/esm/modules/grid-axis.js +2 -2
- package/esm/modules/grid-axis.src.js +33 -12
- package/esm/modules/heatmap.js +2 -2
- package/esm/modules/heatmap.src.js +50 -33
- package/esm/modules/heikinashi.js +2 -2
- package/esm/modules/heikinashi.src.js +22 -8
- package/esm/modules/histogram-bellcurve.js +2 -2
- package/esm/modules/histogram-bellcurve.src.js +56 -25
- package/esm/modules/hollowcandlestick.js +2 -2
- package/esm/modules/hollowcandlestick.src.js +31 -17
- package/esm/modules/item-series.js +2 -2
- package/esm/modules/item-series.src.js +72 -13
- package/esm/modules/lollipop.js +2 -2
- package/esm/modules/lollipop.src.js +22 -8
- package/esm/modules/map.js +2 -2
- package/esm/modules/map.src.js +148 -91
- package/esm/modules/marker-clusters.js +2 -2
- package/esm/modules/marker-clusters.src.js +25 -13
- package/esm/modules/mouse-wheel-zoom.js +2 -2
- package/esm/modules/mouse-wheel-zoom.src.js +54 -13
- package/esm/modules/navigator.js +2 -2
- package/esm/modules/navigator.src.js +534 -74
- package/esm/modules/networkgraph.js +2 -2
- package/esm/modules/networkgraph.src.js +87 -46
- package/esm/modules/no-data-to-display.js +2 -2
- package/esm/modules/no-data-to-display.src.js +22 -8
- package/esm/modules/non-cartesian-zoom.js +2 -2
- package/esm/modules/non-cartesian-zoom.src.js +22 -8
- package/esm/modules/offline-exporting.js +2 -2
- package/esm/modules/offline-exporting.src.js +53 -12
- package/esm/modules/organization.js +4 -2
- package/esm/modules/organization.src.js +63 -19
- package/esm/modules/parallel-coordinates.js +2 -2
- package/esm/modules/parallel-coordinates.src.js +26 -9
- package/esm/modules/pareto.js +2 -2
- package/esm/modules/pareto.src.js +31 -16
- package/esm/modules/pathfinder.js +2 -2
- package/esm/modules/pathfinder.src.js +28 -13
- package/esm/modules/pattern-fill.js +2 -2
- package/esm/modules/pattern-fill.src.js +28 -12
- package/esm/modules/pictorial.js +2 -2
- package/esm/modules/pictorial.src.js +36 -19
- package/esm/modules/pointandfigure.js +2 -2
- package/esm/modules/pointandfigure.src.js +26 -11
- package/esm/modules/price-indicator.js +2 -2
- package/esm/modules/price-indicator.src.js +26 -11
- package/esm/modules/pyramid3d.js +2 -2
- package/esm/modules/pyramid3d.src.js +22 -8
- package/esm/modules/renko.js +2 -2
- package/esm/modules/renko.src.js +22 -8
- package/esm/modules/sankey.js +2 -2
- package/esm/modules/sankey.src.js +59 -31
- package/esm/modules/series-label.js +2 -2
- package/esm/modules/series-label.src.js +31 -18
- package/esm/modules/series-on-point.js +2 -2
- package/esm/modules/series-on-point.src.js +23 -9
- package/esm/modules/solid-gauge.js +2 -2
- package/esm/modules/solid-gauge.src.js +40 -20
- package/esm/modules/sonification.js +2 -2
- package/esm/modules/sonification.src.js +45 -30
- package/esm/modules/static-scale.js +2 -2
- package/esm/modules/static-scale.src.js +22 -8
- package/esm/modules/stock-tools.js +3 -3
- package/esm/modules/stock-tools.src.js +73 -27
- package/esm/modules/stock.js +2 -2
- package/esm/modules/stock.src.js +554 -122
- package/esm/modules/streamgraph.js +2 -2
- package/esm/modules/streamgraph.src.js +22 -8
- package/esm/modules/sunburst.js +2 -2
- package/esm/modules/sunburst.src.js +110 -45
- package/esm/modules/textpath.js +2 -2
- package/esm/modules/textpath.src.js +22 -8
- package/esm/modules/tiledwebmap.js +3 -3
- package/esm/modules/tiledwebmap.src.js +44 -19
- package/esm/modules/tilemap.js +2 -2
- package/esm/modules/tilemap.src.js +27 -12
- package/esm/modules/timeline.js +2 -2
- package/esm/modules/timeline.src.js +35 -14
- package/esm/modules/treegraph.js +2 -2
- package/esm/modules/treegraph.src.js +59 -27
- package/esm/modules/treegrid.js +2 -2
- package/esm/modules/treegrid.src.js +58 -27
- package/esm/modules/treemap.js +2 -2
- package/esm/modules/treemap.src.js +89 -36
- package/esm/modules/variable-pie.js +2 -2
- package/esm/modules/variable-pie.src.js +30 -13
- package/esm/modules/variwide.js +2 -2
- package/esm/modules/variwide.src.js +23 -9
- package/esm/modules/vector.js +2 -2
- package/esm/modules/vector.src.js +28 -16
- package/esm/modules/venn.js +2 -2
- package/esm/modules/venn.src.js +28 -13
- package/esm/modules/windbarb.js +2 -2
- package/esm/modules/windbarb.src.js +29 -17
- package/esm/modules/wordcloud.js +2 -2
- package/esm/modules/wordcloud.src.js +25 -9
- package/esm/modules/xrange.js +2 -2
- package/esm/modules/xrange.src.js +29 -15
- package/esm/standalone-navigator.js +5 -5
- package/esm/standalone-navigator.src.js +808 -570
- package/esm/themes/adaptive.js +3 -3
- package/esm/themes/adaptive.src.js +22 -8
- package/esm/themes/avocado.js +2 -2
- package/esm/themes/avocado.src.js +22 -8
- package/esm/themes/dark-unica.js +2 -2
- package/esm/themes/dark-unica.src.js +22 -8
- package/esm/themes/grid-light.js +2 -2
- package/esm/themes/grid-light.src.js +22 -8
- package/esm/themes/high-contrast.js +2 -2
- package/esm/themes/high-contrast.src.js +22 -8
- package/esm/themes/sand-signika.js +2 -2
- package/esm/themes/sand-signika.src.js +22 -8
- package/esm/themes/sunset.js +2 -2
- package/esm/themes/sunset.src.js +22 -8
- package/highcharts-3d.js +2 -2
- package/highcharts-3d.src.js +116 -92
- package/highcharts-autoload.d.ts +15 -5
- package/highcharts-autoload.js +4 -4
- package/highcharts-autoload.src.d.ts +15 -5
- package/highcharts-autoload.src.js +724 -499
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +851 -590
- package/highcharts-more.d.ts +7 -3
- package/highcharts-more.js +2 -2
- package/highcharts-more.src.d.ts +7 -3
- package/highcharts-more.src.js +1313 -1095
- package/highcharts.d.ts +34795 -25647
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +34795 -25647
- package/highcharts.src.js +723 -498
- package/highmaps.js +4 -4
- package/highmaps.src.js +863 -583
- package/highstock.js +4 -4
- package/highstock.src.js +899 -619
- package/i18n/fr-FR.js +2 -2
- package/i18n/fr-FR.src.js +32 -16
- package/i18n/nb-NO.js +2 -2
- package/i18n/nb-NO.src.js +32 -16
- package/i18n/zh-CN.js +2 -2
- package/i18n/zh-CN.src.js +32 -16
- package/indicators/acceleration-bands.js +2 -2
- package/indicators/acceleration-bands.src.js +31 -16
- package/indicators/accumulation-distribution.js +2 -2
- package/indicators/accumulation-distribution.src.js +31 -16
- package/indicators/ao.js +2 -2
- package/indicators/ao.src.js +31 -16
- package/indicators/apo.js +2 -2
- package/indicators/apo.src.js +31 -16
- package/indicators/aroon-oscillator.js +2 -2
- package/indicators/aroon-oscillator.src.js +31 -16
- package/indicators/aroon.js +2 -2
- package/indicators/aroon.src.js +33 -18
- package/indicators/atr.js +2 -2
- package/indicators/atr.src.js +31 -16
- package/indicators/bollinger-bands.js +2 -2
- package/indicators/bollinger-bands.src.js +31 -16
- package/indicators/cci.js +2 -2
- package/indicators/cci.src.js +31 -16
- package/indicators/chaikin.js +2 -2
- package/indicators/chaikin.src.js +31 -16
- package/indicators/cmf.js +2 -2
- package/indicators/cmf.src.js +31 -16
- package/indicators/cmo.js +2 -2
- package/indicators/cmo.src.js +31 -16
- package/indicators/dema.js +2 -2
- package/indicators/dema.src.js +31 -16
- package/indicators/disparity-index.js +2 -2
- package/indicators/disparity-index.src.js +31 -16
- package/indicators/dmi.js +2 -2
- package/indicators/dmi.src.js +31 -16
- package/indicators/dpo.js +2 -2
- package/indicators/dpo.src.js +34 -18
- package/indicators/ichimoku-kinko-hyo.js +2 -2
- package/indicators/ichimoku-kinko-hyo.src.js +41 -26
- package/indicators/indicators-all.js +2 -2
- package/indicators/indicators-all.src.js +52 -37
- package/indicators/indicators.js +2 -2
- package/indicators/indicators.src.js +39 -24
- package/indicators/keltner-channels.js +2 -2
- package/indicators/keltner-channels.src.js +31 -16
- package/indicators/klinger.js +2 -2
- package/indicators/klinger.src.js +31 -16
- package/indicators/macd.js +2 -2
- package/indicators/macd.src.js +31 -16
- package/indicators/mfi.js +2 -2
- package/indicators/mfi.src.js +31 -16
- package/indicators/momentum.js +2 -2
- package/indicators/momentum.src.js +31 -16
- package/indicators/natr.js +2 -2
- package/indicators/natr.src.js +31 -16
- package/indicators/obv.js +2 -2
- package/indicators/obv.src.js +31 -16
- package/indicators/pivot-points.js +2 -2
- package/indicators/pivot-points.src.js +31 -16
- package/indicators/ppo.js +2 -2
- package/indicators/ppo.src.js +31 -16
- package/indicators/price-channel.js +2 -2
- package/indicators/price-channel.src.js +31 -16
- package/indicators/price-envelopes.js +2 -2
- package/indicators/price-envelopes.src.js +31 -16
- package/indicators/psar.js +2 -2
- package/indicators/psar.src.js +31 -16
- package/indicators/regressions.js +2 -2
- package/indicators/regressions.src.js +31 -16
- package/indicators/roc.js +2 -2
- package/indicators/roc.src.js +31 -16
- package/indicators/rsi.js +2 -2
- package/indicators/rsi.src.js +32 -17
- package/indicators/slow-stochastic.js +2 -2
- package/indicators/slow-stochastic.src.js +31 -16
- package/indicators/stochastic.js +2 -2
- package/indicators/stochastic.src.js +31 -16
- package/indicators/supertrend.js +2 -2
- package/indicators/supertrend.src.js +31 -16
- package/indicators/tema.js +2 -2
- package/indicators/tema.src.js +31 -16
- package/indicators/trendline.js +2 -2
- package/indicators/trendline.src.js +31 -16
- package/indicators/trix.js +2 -2
- package/indicators/trix.src.js +31 -16
- package/indicators/volume-by-price.js +2 -2
- package/indicators/volume-by-price.src.js +32 -18
- package/indicators/vwap.js +2 -2
- package/indicators/vwap.src.js +31 -16
- package/indicators/williams-r.js +2 -2
- package/indicators/williams-r.src.js +31 -16
- package/indicators/wma.js +2 -2
- package/indicators/wma.src.js +31 -16
- package/indicators/zigzag.js +2 -2
- package/indicators/zigzag.src.js +31 -16
- package/modules/accessibility.d.ts +47 -0
- package/modules/accessibility.js +2 -2
- package/modules/accessibility.src.d.ts +47 -0
- package/modules/accessibility.src.js +603 -130
- package/modules/annotations-advanced.js +11 -11
- package/modules/annotations-advanced.src.js +246 -183
- package/modules/annotations.js +11 -11
- package/modules/annotations.src.js +206 -165
- package/modules/arc-diagram.js +2 -2
- package/modules/arc-diagram.src.js +58 -42
- package/modules/arrow-symbols.js +2 -2
- package/modules/arrow-symbols.src.js +28 -13
- package/modules/boost-canvas.js +2 -2
- package/modules/boost-canvas.src.js +69 -38
- package/modules/boost.js +2 -2
- package/modules/boost.src.js +81 -37
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.src.js +36 -20
- package/modules/bullet.js +2 -2
- package/modules/bullet.src.js +50 -28
- package/modules/coloraxis.js +2 -2
- package/modules/coloraxis.src.js +65 -38
- package/modules/contour.js +5 -5
- package/modules/contour.src.js +91 -44
- package/modules/current-date-indicator.js +2 -2
- package/modules/current-date-indicator.src.js +28 -13
- package/modules/cylinder.js +2 -2
- package/modules/cylinder.src.js +67 -48
- package/modules/data-sorting.js +2 -2
- package/modules/data-sorting.src.js +28 -13
- package/modules/data-tools.js +2 -2
- package/modules/data-tools.src.js +50 -18
- package/modules/data.js +2 -2
- package/modules/data.src.js +50 -35
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.src.js +42 -26
- package/modules/debugger.js +2 -2
- package/modules/debugger.src.js +28 -13
- package/modules/dependency-wheel.d.ts +7 -1
- package/modules/dependency-wheel.js +2 -2
- package/modules/dependency-wheel.src.d.ts +7 -1
- package/modules/dependency-wheel.src.js +440 -28
- package/modules/dotplot.js +2 -2
- package/modules/dotplot.src.js +36 -19
- package/modules/drag-panes.js +2 -2
- package/modules/drag-panes.src.js +28 -13
- package/modules/draggable-points.js +2 -2
- package/modules/draggable-points.src.js +30 -17
- package/modules/drilldown.js +2 -2
- package/modules/drilldown.src.js +49 -35
- package/modules/dumbbell.js +2 -2
- package/modules/dumbbell.src.js +86 -40
- package/modules/export-data.d.ts +66 -1
- package/modules/export-data.js +2 -2
- package/modules/export-data.src.d.ts +66 -1
- package/modules/export-data.src.js +56 -36
- package/modules/exporting.d.ts +0 -103
- package/modules/exporting.js +2 -2
- package/modules/exporting.src.d.ts +0 -103
- package/modules/exporting.src.js +97 -50
- package/modules/flowmap.js +3 -2
- package/modules/flowmap.src.js +52 -26
- package/modules/full-screen.js +2 -2
- package/modules/full-screen.src.js +31 -16
- package/modules/funnel.d.ts +3 -3
- package/modules/funnel.js +2 -2
- package/modules/funnel.src.d.ts +3 -3
- package/modules/funnel.src.js +82 -50
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.src.js +56 -40
- package/modules/gantt.d.ts +47 -0
- package/modules/gantt.js +8 -8
- package/modules/gantt.src.d.ts +47 -0
- package/modules/gantt.src.js +602 -156
- package/modules/geoheatmap.d.ts +13 -12
- package/modules/geoheatmap.js +2 -2
- package/modules/geoheatmap.src.d.ts +13 -12
- package/modules/geoheatmap.src.js +44 -29
- package/modules/grid-axis.js +2 -2
- package/modules/grid-axis.src.js +42 -20
- package/modules/heatmap.d.ts +0 -12
- package/modules/heatmap.js +4 -4
- package/modules/heatmap.src.d.ts +0 -12
- package/modules/heatmap.src.js +102 -71
- package/modules/heikinashi.js +2 -2
- package/modules/heikinashi.src.js +31 -16
- package/modules/histogram-bellcurve.js +2 -2
- package/modules/histogram-bellcurve.src.js +70 -38
- package/modules/hollowcandlestick.js +2 -2
- package/modules/hollowcandlestick.src.js +45 -30
- package/modules/item-series.js +2 -2
- package/modules/item-series.src.js +81 -21
- package/modules/lollipop.js +2 -2
- package/modules/lollipop.src.js +36 -21
- package/modules/map.d.ts +0 -20
- package/modules/map.js +4 -4
- package/modules/map.src.d.ts +0 -20
- package/modules/map.src.js +212 -140
- package/modules/marker-clusters.js +2 -2
- package/modules/marker-clusters.src.js +31 -18
- package/modules/mouse-wheel-zoom.js +2 -2
- package/modules/mouse-wheel-zoom.src.js +60 -18
- package/modules/navigator.d.ts +47 -0
- package/modules/navigator.js +2 -2
- package/modules/navigator.src.d.ts +47 -0
- package/modules/navigator.src.js +556 -95
- package/modules/networkgraph.js +2 -2
- package/modules/networkgraph.src.js +99 -57
- package/modules/no-data-to-display.js +2 -2
- package/modules/no-data-to-display.src.js +31 -16
- package/modules/non-cartesian-zoom.js +2 -2
- package/modules/non-cartesian-zoom.src.js +28 -13
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +67 -25
- package/modules/organization.js +4 -2
- package/modules/organization.src.js +75 -30
- package/modules/parallel-coordinates.js +2 -2
- package/modules/parallel-coordinates.src.js +37 -19
- package/modules/pareto.js +2 -2
- package/modules/pareto.src.js +45 -29
- package/modules/pathfinder.js +2 -2
- package/modules/pathfinder.src.js +37 -21
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.src.js +34 -17
- package/modules/pictorial.js +2 -2
- package/modules/pictorial.src.js +62 -43
- package/modules/pointandfigure.js +2 -2
- package/modules/pointandfigure.src.js +35 -19
- package/modules/price-indicator.js +2 -2
- package/modules/price-indicator.src.js +32 -16
- package/modules/pyramid3d.js +2 -2
- package/modules/pyramid3d.src.js +31 -16
- package/modules/renko.js +2 -2
- package/modules/renko.src.js +34 -19
- package/modules/sankey.js +2 -2
- package/modules/sankey.src.js +80 -51
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +42 -28
- package/modules/series-on-point.js +2 -2
- package/modules/series-on-point.src.js +40 -25
- package/modules/solid-gauge.d.ts +3 -3
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.src.d.ts +3 -3
- package/modules/solid-gauge.src.js +54 -33
- package/modules/sonification.js +2 -2
- package/modules/sonification.src.js +56 -40
- package/modules/static-scale.js +2 -2
- package/modules/static-scale.src.js +28 -13
- package/modules/stock-tools.js +3 -3
- package/modules/stock-tools.src.js +90 -43
- package/modules/stock.d.ts +47 -0
- package/modules/stock.js +6 -6
- package/modules/stock.src.d.ts +47 -0
- package/modules/stock.src.js +650 -185
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +31 -16
- package/modules/sunburst.js +2 -2
- package/modules/sunburst.src.js +137 -71
- package/modules/textpath.js +2 -2
- package/modules/textpath.src.js +28 -13
- package/modules/tiledwebmap.js +3 -3
- package/modules/tiledwebmap.src.js +65 -32
- package/modules/tilemap.js +2 -2
- package/modules/tilemap.src.js +41 -25
- package/modules/timeline.js +2 -2
- package/modules/timeline.src.js +47 -25
- package/modules/treegraph.js +2 -2
- package/modules/treegraph.src.js +83 -50
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.src.js +76 -44
- package/modules/treemap.js +2 -2
- package/modules/treemap.src.js +116 -62
- package/modules/variable-pie.js +2 -2
- package/modules/variable-pie.src.js +39 -21
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +32 -17
- package/modules/vector.js +2 -2
- package/modules/vector.src.js +37 -24
- package/modules/venn.js +2 -2
- package/modules/venn.src.js +42 -26
- package/modules/windbarb.js +2 -2
- package/modules/windbarb.src.js +51 -38
- package/modules/wordcloud.js +2 -2
- package/modules/wordcloud.src.js +34 -17
- package/modules/xrange.js +2 -2
- package/modules/xrange.src.js +43 -28
- package/options/abands.d.ts +722 -83
- package/options/abands.src.d.ts +722 -83
- package/options/ad.d.ts +381 -26
- package/options/ad.src.d.ts +381 -26
- package/options/ao.d.ts +744 -70
- package/options/ao.src.d.ts +744 -70
- package/options/apo.d.ts +381 -26
- package/options/apo.src.d.ts +381 -26
- package/options/arcdiagram.d.ts +80 -534
- package/options/arcdiagram.src.d.ts +80 -534
- package/options/area.d.ts +432 -129
- package/options/area.src.d.ts +432 -129
- package/options/arearange.d.ts +46 -4
- package/options/arearange.src.d.ts +46 -4
- package/options/areaspline.d.ts +141 -866
- package/options/areaspline.src.d.ts +141 -866
- package/options/areasplinerange.d.ts +221 -871
- package/options/areasplinerange.src.d.ts +221 -871
- package/options/aroon.d.ts +432 -124
- package/options/aroon.src.d.ts +432 -124
- package/options/aroonoscillator.d.ts +127 -689
- package/options/aroonoscillator.src.d.ts +127 -689
- package/options/atr.d.ts +381 -71
- package/options/atr.src.d.ts +381 -71
- package/options/bar.d.ts +103 -12
- package/options/bar.src.d.ts +103 -12
- package/options/bb.d.ts +87 -762
- package/options/bb.src.d.ts +87 -762
- package/options/bellcurve.d.ts +87 -364
- package/options/bellcurve.src.d.ts +87 -364
- package/options/boxplot.d.ts +82 -13
- package/options/boxplot.src.d.ts +82 -13
- package/options/bubble.d.ts +83 -874
- package/options/bubble.src.d.ts +83 -874
- package/options/bullet.d.ts +354 -717
- package/options/bullet.src.d.ts +354 -717
- package/options/candlestick.d.ts +99 -1214
- package/options/candlestick.src.d.ts +99 -1214
- package/options/cci.d.ts +381 -26
- package/options/cci.src.d.ts +381 -26
- package/options/chaikin.d.ts +728 -83
- package/options/chaikin.src.d.ts +728 -83
- package/options/cmf.d.ts +381 -26
- package/options/cmf.src.d.ts +381 -26
- package/options/cmo.d.ts +730 -79
- package/options/cmo.src.d.ts +730 -79
- package/options/column.d.ts +1265 -99
- package/options/column.src.d.ts +1265 -99
- package/options/columnpyramid.d.ts +102 -1158
- package/options/columnpyramid.src.d.ts +102 -1158
- package/options/columnrange.d.ts +952 -95
- package/options/columnrange.src.d.ts +952 -95
- package/options/contour.d.ts +31 -443
- package/options/contour.src.d.ts +31 -443
- package/options/cylinder.d.ts +100 -12
- package/options/cylinder.src.d.ts +100 -12
- package/options/dema.d.ts +80 -736
- package/options/dema.src.d.ts +80 -736
- package/options/dependencywheel.d.ts +599 -218
- package/options/dependencywheel.src.d.ts +599 -218
- package/options/disparityindex.d.ts +84 -365
- package/options/disparityindex.src.d.ts +84 -365
- package/options/dmi.d.ts +86 -775
- package/options/dmi.src.d.ts +86 -775
- package/options/dpo.d.ts +83 -365
- package/options/dpo.src.d.ts +83 -365
- package/options/dumbbell.d.ts +27 -4
- package/options/dumbbell.src.d.ts +27 -4
- package/options/ema.d.ts +81 -703
- package/options/ema.src.d.ts +81 -703
- package/options/errorbar.d.ts +91 -1161
- package/options/errorbar.src.d.ts +91 -1161
- package/options/flags.d.ts +98 -1192
- package/options/flags.src.d.ts +98 -1192
- package/options/flowmap.d.ts +48 -373
- package/options/flowmap.src.d.ts +48 -373
- package/options/funnel.d.ts +40 -3
- package/options/funnel.src.d.ts +40 -3
- package/options/gantt.d.ts +37 -40
- package/options/gantt.src.d.ts +37 -40
- package/options/gauge.d.ts +398 -472
- package/options/gauge.src.d.ts +398 -472
- package/options/geoheatmap.d.ts +462 -63
- package/options/geoheatmap.src.d.ts +462 -63
- package/options/heatmap.d.ts +31 -380
- package/options/heatmap.src.d.ts +31 -380
- package/options/heikinashi.d.ts +20 -2
- package/options/heikinashi.src.d.ts +20 -2
- package/options/hlc.d.ts +20 -2
- package/options/hlc.src.d.ts +20 -2
- package/options/ikh.d.ts +750 -103
- package/options/ikh.src.d.ts +750 -103
- package/options/item.d.ts +34 -74
- package/options/item.src.d.ts +34 -74
- package/options/keltnerchannels.d.ts +87 -708
- package/options/keltnerchannels.src.d.ts +87 -708
- package/options/klinger.d.ts +34 -365
- package/options/klinger.src.d.ts +34 -365
- package/options/line.d.ts +151 -851
- package/options/line.src.d.ts +151 -851
- package/options/linearregression.d.ts +960 -85
- package/options/linearregression.src.d.ts +960 -85
- package/options/linearregressionangle.d.ts +96 -699
- package/options/linearregressionangle.src.d.ts +96 -699
- package/options/linearregressionintercept.d.ts +381 -26
- package/options/linearregressionintercept.src.d.ts +381 -26
- package/options/linearregressionslope.d.ts +381 -26
- package/options/linearregressionslope.src.d.ts +381 -26
- package/options/lollipop.d.ts +214 -851
- package/options/lollipop.src.d.ts +214 -851
- package/options/macd.d.ts +386 -83
- package/options/macd.src.d.ts +386 -83
- package/options/map.d.ts +470 -36
- package/options/map.src.d.ts +470 -36
- package/options/mapbubble.d.ts +43 -532
- package/options/mapbubble.src.d.ts +43 -532
- package/options/mapline.d.ts +135 -58
- package/options/mapline.src.d.ts +135 -58
- package/options/mappoint.d.ts +205 -283
- package/options/mappoint.src.d.ts +205 -283
- package/options/mfi.d.ts +772 -82
- package/options/mfi.src.d.ts +772 -82
- package/options/momentum.d.ts +381 -71
- package/options/momentum.src.d.ts +381 -71
- package/options/natr.d.ts +776 -75
- package/options/natr.src.d.ts +776 -75
- package/options/networkgraph.d.ts +184 -207
- package/options/networkgraph.src.d.ts +184 -207
- package/options/obv.d.ts +426 -26
- package/options/obv.src.d.ts +426 -26
- package/options/ohlc.d.ts +77 -14
- package/options/ohlc.src.d.ts +77 -14
- package/options/packedbubble.d.ts +76 -696
- package/options/packedbubble.src.d.ts +76 -696
- package/options/pareto.d.ts +28 -364
- package/options/pareto.src.d.ts +28 -364
- package/options/pc.d.ts +724 -85
- package/options/pc.src.d.ts +724 -85
- package/options/pictorial.d.ts +1093 -58
- package/options/pictorial.src.d.ts +1093 -58
- package/options/pie.d.ts +595 -129
- package/options/pie.src.d.ts +595 -129
- package/options/pivotpoints.d.ts +34 -365
- package/options/pivotpoints.src.d.ts +34 -365
- package/options/pointandfigure.d.ts +10 -50
- package/options/pointandfigure.src.d.ts +10 -50
- package/options/polygon.d.ts +803 -74
- package/options/polygon.src.d.ts +803 -74
- package/options/ppo.d.ts +34 -365
- package/options/ppo.src.d.ts +34 -365
- package/options/priceenvelopes.d.ts +93 -719
- package/options/priceenvelopes.src.d.ts +93 -719
- package/options/psar.d.ts +34 -365
- package/options/psar.src.d.ts +34 -365
- package/options/pyramid.d.ts +35 -3
- package/options/pyramid.src.d.ts +35 -3
- package/options/renko.d.ts +25 -2
- package/options/renko.src.d.ts +25 -2
- package/options/roc.d.ts +78 -712
- package/options/roc.src.d.ts +78 -712
- package/options/rsi.d.ts +34 -365
- package/options/rsi.src.d.ts +34 -365
- package/options/sankey.d.ts +27 -5
- package/options/sankey.src.d.ts +27 -5
- package/options/scatter.d.ts +896 -290
- package/options/scatter.src.d.ts +896 -290
- package/options/series.d.ts +938 -83
- package/options/series.src.d.ts +938 -83
- package/options/slowstochastic.d.ts +381 -26
- package/options/slowstochastic.src.d.ts +381 -26
- package/options/sma.d.ts +729 -79
- package/options/sma.src.d.ts +729 -79
- package/options/solidgauge.d.ts +882 -105
- package/options/solidgauge.src.d.ts +882 -105
- package/options/spline.d.ts +389 -90
- package/options/spline.src.d.ts +389 -90
- package/options/stochastic.d.ts +83 -716
- package/options/stochastic.src.d.ts +83 -716
- package/options/streamgraph.d.ts +97 -364
- package/options/streamgraph.src.d.ts +97 -364
- package/options/sunburst.d.ts +87 -19
- package/options/sunburst.src.d.ts +87 -19
- package/options/supertrend.d.ts +77 -749
- package/options/supertrend.src.d.ts +77 -749
- package/options/tema.d.ts +83 -365
- package/options/tema.src.d.ts +83 -365
- package/options/tiledwebmap.d.ts +13 -72
- package/options/tiledwebmap.src.d.ts +13 -72
- package/options/tilemap.d.ts +372 -533
- package/options/tilemap.src.d.ts +372 -533
- package/options/timeline.d.ts +49 -154
- package/options/timeline.src.d.ts +49 -154
- package/options/treegraph.d.ts +174 -696
- package/options/treegraph.src.d.ts +174 -696
- package/options/treemap.d.ts +468 -1079
- package/options/treemap.src.d.ts +468 -1079
- package/options/trendline.d.ts +381 -26
- package/options/trendline.src.d.ts +381 -26
- package/options/trix.d.ts +712 -82
- package/options/trix.src.d.ts +712 -82
- package/options/variablepie.d.ts +130 -587
- package/options/variablepie.src.d.ts +130 -587
- package/options/variwide.d.ts +1123 -94
- package/options/variwide.src.d.ts +1123 -94
- package/options/vbp.d.ts +57 -383
- package/options/vbp.src.d.ts +57 -383
- package/options/vector.d.ts +22 -58
- package/options/vector.src.d.ts +22 -58
- package/options/venn.d.ts +32 -78
- package/options/venn.src.d.ts +32 -78
- package/options/vwap.d.ts +122 -703
- package/options/vwap.src.d.ts +122 -703
- package/options/waterfall.d.ts +139 -1150
- package/options/waterfall.src.d.ts +139 -1150
- package/options/williamsr.d.ts +381 -76
- package/options/williamsr.src.d.ts +381 -76
- package/options/windbarb.d.ts +39 -2
- package/options/windbarb.src.d.ts +39 -2
- package/options/wma.d.ts +78 -704
- package/options/wma.src.d.ts +78 -704
- package/options/wordcloud.d.ts +98 -595
- package/options/wordcloud.src.d.ts +98 -595
- package/options/xrange.d.ts +166 -1056
- package/options/xrange.src.d.ts +166 -1056
- package/options/zigzag.d.ts +34 -410
- package/options/zigzag.src.d.ts +34 -410
- package/package.json +1 -1
- package/standalone-navigator.js +4 -4
- package/standalone-navigator.src.js +829 -553
- package/themes/adaptive.js +2 -2
- package/themes/adaptive.src.js +33 -18
- package/themes/avocado.js +2 -2
- package/themes/avocado.src.js +28 -13
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.src.js +28 -13
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.src.js +28 -13
- package/themes/high-contrast.js +2 -2
- package/themes/high-contrast.src.js +28 -13
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.src.js +28 -13
- package/themes/sunset.js +2 -2
- package/themes/sunset.src.js +28 -13
- package/css/.stylelintrc.json +0 -8
|
@@ -6,653 +6,196 @@
|
|
|
6
6
|
import * as Highcharts from "../highcharts.src";
|
|
7
7
|
declare module "../highcharts.src" {
|
|
8
8
|
/**
|
|
9
|
-
* (Highcharts
|
|
10
|
-
* animation when a series is displayed for the `dataLabels`. The animation
|
|
11
|
-
* can also be set as a configuration object. Please note that this option
|
|
12
|
-
* only applies to the initial animation.
|
|
13
|
-
*
|
|
14
|
-
* For other animations, see chart.animation and the animation parameter
|
|
15
|
-
* under the API methods. The following properties are supported:
|
|
16
|
-
*
|
|
17
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
18
|
-
*/
|
|
19
|
-
interface PlotVariablepieDataLabelsAnimationOptions {
|
|
20
|
-
/**
|
|
21
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The animation delay time in
|
|
22
|
-
* milliseconds. Set to `0` to render the data labels immediately. As
|
|
23
|
-
* `undefined` inherits defer time from the series.animation.defer.
|
|
24
|
-
*/
|
|
25
|
-
defer?: number;
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* (Highcharts) Options for the _Series on point_ feature. Only `pie` and
|
|
29
|
-
* `sunburst` series are supported at this moment.
|
|
30
|
-
*/
|
|
31
|
-
interface PlotVariablepieOnPointOptions {
|
|
32
|
-
/**
|
|
33
|
-
* (Highcharts) Options for the connector in the _Series on point_
|
|
34
|
-
* feature.
|
|
35
|
-
*
|
|
36
|
-
* In styled mode, the connector can be styled with the
|
|
37
|
-
* `.highcharts-connector-seriesonpoint` class name.
|
|
38
|
-
*/
|
|
39
|
-
connectorOptions?: (Highcharts.PlotVariablepieOnPointConnectorOptions|Highcharts.SVGAttributes);
|
|
40
|
-
/**
|
|
41
|
-
* (Highcharts) The `id` of the point that we connect the series to.
|
|
42
|
-
* Only points with a given `plotX` and `plotY` values and map points
|
|
43
|
-
* are valid.
|
|
44
|
-
*/
|
|
45
|
-
id?: string;
|
|
46
|
-
/**
|
|
47
|
-
* (Highcharts) Options allowing to set a position and an offset of the
|
|
48
|
-
* series in the _Series on point_ feature.
|
|
49
|
-
*/
|
|
50
|
-
position?: (object|Highcharts.PlotVariablepieOnPointPositionOptions);
|
|
51
|
-
}
|
|
52
|
-
/**
|
|
53
|
-
* (Highcharts) A variable pie series is a two dimensional series type,
|
|
54
|
-
* where each point renders an Y and Z value. Each point is drawn as a pie
|
|
55
|
-
* slice where the size (arc) of the slice relates to the Y value and the
|
|
56
|
-
* radius of pie slice relates to the Z value.
|
|
57
|
-
*
|
|
58
|
-
* Configuration options for the series are given in three levels:
|
|
59
|
-
*
|
|
60
|
-
* 1. Options for all series in a chart are defined in the
|
|
61
|
-
* plotOptions.series object.
|
|
62
|
-
*
|
|
63
|
-
* 2. Options for all `variablepie` series are defined in
|
|
64
|
-
* plotOptions.variablepie.
|
|
65
|
-
*
|
|
66
|
-
* 3. Options for one single series are given in the series instance array.
|
|
67
|
-
* (see online documentation for example)
|
|
68
|
-
*
|
|
69
|
-
* **TypeScript:**
|
|
70
|
-
*
|
|
71
|
-
* - type option should always be set, otherwise a broad set of unsupported
|
|
72
|
-
* options is allowed.
|
|
73
|
-
*
|
|
74
|
-
* - when accessing an array of series, the combined set of all series types
|
|
75
|
-
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
76
|
-
* specific type can be done by checking the `type` property. (see online
|
|
77
|
-
* documentation for example)
|
|
9
|
+
* (Highcharts) Point accessibility options for a series.
|
|
78
10
|
*/
|
|
79
|
-
interface
|
|
80
|
-
/**
|
|
81
|
-
* (Highcharts) Accessibility options for a series.
|
|
82
|
-
*/
|
|
83
|
-
accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
|
|
84
|
-
/**
|
|
85
|
-
* (Highcharts) Allow this series' points to be selected by clicking on
|
|
86
|
-
* the graphic (columns, point markers, pie slices, map areas etc).
|
|
87
|
-
*
|
|
88
|
-
* The selected points can be handled by point select and unselect
|
|
89
|
-
* events, or collectively by the getSelectedPoints function.
|
|
90
|
-
*
|
|
91
|
-
* And alternative way of selecting points is through dragging.
|
|
92
|
-
*/
|
|
93
|
-
allowPointSelect?: boolean;
|
|
94
|
-
/**
|
|
95
|
-
* (Highcharts) Enable or disable the initial animation when a series is
|
|
96
|
-
* displayed. The animation can also be set as a configuration object.
|
|
97
|
-
* Please note that this option only applies to the initial animation of
|
|
98
|
-
* the series itself. For other animations, see chart.animation and the
|
|
99
|
-
* animation parameter under the API methods. The following properties
|
|
100
|
-
* are supported:
|
|
101
|
-
*
|
|
102
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
103
|
-
*
|
|
104
|
-
* - `duration`: The duration of the animation in milliseconds.
|
|
105
|
-
* (Defaults to `1000`)
|
|
106
|
-
*
|
|
107
|
-
* - `easing`: Can be a string reference to an easing function set on
|
|
108
|
-
* the `Math` object or a function. See the _Custom easing function_
|
|
109
|
-
* demo below. (Defaults to `easeInOutSine`)
|
|
110
|
-
*
|
|
111
|
-
* Due to poor performance, animation is disabled in old IE browsers for
|
|
112
|
-
* several chart types.
|
|
113
|
-
*/
|
|
114
|
-
animation?: (boolean|Highcharts.AnimationOptionsObject);
|
|
115
|
-
/**
|
|
116
|
-
* (Highcharts, Highmaps) The color of the border surrounding each
|
|
117
|
-
* slice. When `null`, the border takes the same color as the slice
|
|
118
|
-
* fill. This can be used together with a `borderWidth` to fill drawing
|
|
119
|
-
* gaps created by antialiasing artifacts in border-less pies.
|
|
120
|
-
*
|
|
121
|
-
* In styled mode, the border stroke is given in the `.highcharts-point`
|
|
122
|
-
* class.
|
|
123
|
-
*/
|
|
124
|
-
borderColor?: Highcharts.ColorType;
|
|
125
|
-
/**
|
|
126
|
-
* (Highcharts) The corner radius of the border surrounding each slice.
|
|
127
|
-
* A number signifies pixels. A percentage string, like for example
|
|
128
|
-
* `50%`, signifies a size relative to the radius and the inner radius.
|
|
129
|
-
*/
|
|
130
|
-
borderRadius?: (number|string|Highcharts.BorderRadiusOptionsObject);
|
|
131
|
-
/**
|
|
132
|
-
* (Highcharts, Highmaps) The width of the border surrounding each
|
|
133
|
-
* slice.
|
|
134
|
-
*
|
|
135
|
-
* When setting the border width to 0, there may be small gaps between
|
|
136
|
-
* the slices due to SVG antialiasing artifacts. To work around this,
|
|
137
|
-
* keep the border width at 0.5 or 1, but set the `borderColor` to
|
|
138
|
-
* `null` instead.
|
|
139
|
-
*
|
|
140
|
-
* In styled mode, the border stroke width is given in the
|
|
141
|
-
* `.highcharts-point` class.
|
|
142
|
-
*/
|
|
143
|
-
borderWidth?: number;
|
|
144
|
-
/**
|
|
145
|
-
* (Highcharts, Highmaps) The center of the pie chart relative to the
|
|
146
|
-
* plot area. Can be percentages or pixel values. The default behavior
|
|
147
|
-
* (as of 3.0) is to center the pie so that all slices and data labels
|
|
148
|
-
* are within the plot area. As a consequence, the pie may actually jump
|
|
149
|
-
* around in a chart with dynamic values, as the data labels move. In
|
|
150
|
-
* that case, the center should be explicitly set, for example to
|
|
151
|
-
* `["50%", "50%"]`.
|
|
152
|
-
*/
|
|
153
|
-
center?: [(number|string|null), (number|string|null)];
|
|
154
|
-
/**
|
|
155
|
-
* (Highcharts) An additional class name to apply to the series'
|
|
156
|
-
* graphical elements. This option does not replace default class names
|
|
157
|
-
* of the graphical element. Changes to the series' color will also be
|
|
158
|
-
* reflected in a chart's legend and tooltip.
|
|
159
|
-
*/
|
|
160
|
-
className?: string;
|
|
161
|
-
/**
|
|
162
|
-
* (Highcharts) Disable this option to allow series rendering in the
|
|
163
|
-
* whole plotting area.
|
|
164
|
-
*
|
|
165
|
-
* **Note:** Clipping should be always enabled when chart.zoomType is
|
|
166
|
-
* set
|
|
167
|
-
*/
|
|
168
|
-
clip?: boolean;
|
|
169
|
-
/**
|
|
170
|
-
* (Highcharts) The color of the pie series. A pie series is represented
|
|
171
|
-
* as an empty circle if the total sum of its values is 0. Use this
|
|
172
|
-
* property to define the color of its border.
|
|
173
|
-
*
|
|
174
|
-
* In styled mode, the color can be defined by the colorIndex option.
|
|
175
|
-
* Also, the series color can be set with the `.highcharts-series`,
|
|
176
|
-
* `.highcharts-color-{n}`, `.highcharts-{type}-series` or
|
|
177
|
-
* `.highcharts-series-{n}` class, or individual classes given by the
|
|
178
|
-
* `className` option.
|
|
179
|
-
*/
|
|
180
|
-
color?: Highcharts.ColorType;
|
|
181
|
-
/**
|
|
182
|
-
* (Highcharts, Highstock, Highmaps) When using dual or multiple color
|
|
183
|
-
* axes, this number defines which colorAxis the particular series is
|
|
184
|
-
* connected to. It refers to either the axis id or the index of the
|
|
185
|
-
* axis in the colorAxis array, with 0 being the first. Set this option
|
|
186
|
-
* to false to prevent a series from connecting to the default color
|
|
187
|
-
* axis.
|
|
188
|
-
*
|
|
189
|
-
* Since v7.2.0 the option can also be an axis id or an axis index
|
|
190
|
-
* instead of a boolean flag.
|
|
191
|
-
*/
|
|
192
|
-
colorAxis?: (boolean|number|string);
|
|
193
|
-
/**
|
|
194
|
-
* (Highcharts) Styled mode only. A specific color index to use for the
|
|
195
|
-
* series, so its graphic representations are given the class name
|
|
196
|
-
* `highcharts-color-{n}`.
|
|
197
|
-
*
|
|
198
|
-
* Since v11, CSS variables on the form `--highcharts-color-{n}` make
|
|
199
|
-
* changing the color scheme very convenient.
|
|
200
|
-
*/
|
|
201
|
-
colorIndex?: number;
|
|
202
|
-
/**
|
|
203
|
-
* (Highcharts, Highstock, Highmaps) Determines what data value should
|
|
204
|
-
* be used to calculate point color if `colorAxis` is used. Requires to
|
|
205
|
-
* set `min` and `max` if some custom point property is used or if
|
|
206
|
-
* approximation for data grouping is set to `'sum'`.
|
|
207
|
-
*/
|
|
208
|
-
colorKey?: string;
|
|
209
|
-
/**
|
|
210
|
-
* (Highcharts, Highmaps) A series specific or series type specific
|
|
211
|
-
* color set to use instead of the global colors.
|
|
212
|
-
*/
|
|
213
|
-
colors?: Array<Highcharts.ColorType>;
|
|
214
|
-
/**
|
|
215
|
-
* (Highcharts, Highstock, Gantt) When true, each point or column edge
|
|
216
|
-
* is rounded to its nearest pixel in order to render sharp on screen.
|
|
217
|
-
* In some cases, when there are a lot of densely packed columns, this
|
|
218
|
-
* leads to visible difference in column widths or distance between
|
|
219
|
-
* columns. In these cases, setting `crisp` to `false` may look better,
|
|
220
|
-
* even though each column is rendered blurry.
|
|
221
|
-
*/
|
|
222
|
-
crisp?: boolean;
|
|
223
|
-
/**
|
|
224
|
-
* (Highcharts) You can set the cursor to "pointer" if you have click
|
|
225
|
-
* events attached to the series, to signal to the user that the points
|
|
226
|
-
* and lines can be clicked.
|
|
227
|
-
*
|
|
228
|
-
* In styled mode, the series cursor can be set with the same classes as
|
|
229
|
-
* listed under series.color.
|
|
230
|
-
*/
|
|
231
|
-
cursor?: (string|Highcharts.CursorValue);
|
|
232
|
-
/**
|
|
233
|
-
* (Highcharts) A reserved subspace to store options and values for
|
|
234
|
-
* customized functionality. Here you can add additional data for your
|
|
235
|
-
* own event callbacks and formatter callbacks.
|
|
236
|
-
*/
|
|
237
|
-
custom?: Highcharts.Dictionary<any>;
|
|
238
|
-
/**
|
|
239
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
240
|
-
* labels, appearing next to each data point.
|
|
241
|
-
*
|
|
242
|
-
* Since v6.2.0, multiple data labels can be applied to each single
|
|
243
|
-
* point by defining them as an array of configs.
|
|
244
|
-
*
|
|
245
|
-
* In styled mode, the data labels can be styled with the
|
|
246
|
-
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
247
|
-
* (see example).
|
|
248
|
-
*/
|
|
249
|
-
dataLabels?: (Highcharts.SeriesPieDataLabelsOptionsObject|Array<Highcharts.SeriesPieDataLabelsOptionsObject>);
|
|
250
|
-
/**
|
|
251
|
-
* (Highcharts) The mapping between the data table and the series data
|
|
252
|
-
* points. This is used in conjunction with the `dataTable` option (on
|
|
253
|
-
* chart or series level) to map columns from the data table to the
|
|
254
|
-
* properties of the data points. The keys of the `dataMapping` object
|
|
255
|
-
* correspond to the properties of the data points (e.g. `x`, `y`,
|
|
256
|
-
* `name`), and the values are objects that specify which column from
|
|
257
|
-
* which data table to use for that property.
|
|
258
|
-
*
|
|
259
|
-
* The keys can also be nested paths, for example `dataLabel.format`, to
|
|
260
|
-
* map to nested properties of the data points.
|
|
261
|
-
*
|
|
262
|
-
* The values can also be strings, in which case they are interpreted as
|
|
263
|
-
* column id's from the first data table.
|
|
264
|
-
*
|
|
265
|
-
* A typical use case is that multiple series share a common column,
|
|
266
|
-
* like `name` or `x`. In this case, to avoid repetition, the common
|
|
267
|
-
* column can be applied in `plotOptions.series.dataMapping` and the
|
|
268
|
-
* individual series can specify only the columns that are unique to
|
|
269
|
-
* them.
|
|
270
|
-
*
|
|
271
|
-
* The series name defaults to the column ID of the main data column in
|
|
272
|
-
* the mapping. The main data column is typically the `y` data for
|
|
273
|
-
* cartesian series, or `value` for map series. For example, if the
|
|
274
|
-
* mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
|
|
275
|
-
* online documentation for example)
|
|
276
|
-
*
|
|
277
|
-
* If the columns of the DataTable have keys matching the series keys,
|
|
278
|
-
* the data mapping is not necessary. For example, this DataTable will
|
|
279
|
-
* connect directly to the series' `x` and `y` keys: (see online
|
|
280
|
-
* documentation for example)
|
|
281
|
-
*/
|
|
282
|
-
dataMapping?: Highcharts.DataMappingOptionsObject;
|
|
283
|
-
/**
|
|
284
|
-
* (Highcharts) The thickness of a 3D pie.
|
|
285
|
-
*/
|
|
286
|
-
depth?: number;
|
|
287
|
-
/**
|
|
288
|
-
* (Highcharts) Deprecated. Use
|
|
289
|
-
* plotOptions.series.accessibility.description instead.
|
|
290
|
-
*
|
|
291
|
-
* A description of the series to add to the screen reader information
|
|
292
|
-
* about the series.
|
|
293
|
-
*
|
|
294
|
-
* @deprecated 8.0.0
|
|
295
|
-
*/
|
|
296
|
-
description?: string;
|
|
297
|
-
/**
|
|
298
|
-
* (Highcharts) Enable or disable the mouse tracking for a specific
|
|
299
|
-
* series. This includes point tooltips and click events on graphs and
|
|
300
|
-
* points. For large datasets it improves performance.
|
|
301
|
-
*/
|
|
302
|
-
enableMouseTracking?: boolean;
|
|
303
|
-
/**
|
|
304
|
-
* (Highcharts, Highmaps) The end angle of the pie in degrees where 0 is
|
|
305
|
-
* top and 90 is right. Defaults to `startAngle` plus 360.
|
|
306
|
-
*/
|
|
307
|
-
endAngle?: number;
|
|
308
|
-
/**
|
|
309
|
-
* (Highcharts) General event handlers for the series items. These event
|
|
310
|
-
* hooks can also be attached to the series at run time using the
|
|
311
|
-
* `Highcharts.addEvent` function.
|
|
312
|
-
*/
|
|
313
|
-
events?: Highcharts.SeriesEventsOptionsObject;
|
|
314
|
-
/**
|
|
315
|
-
* (Highcharts) If the total sum of the pie's values is 0, the series is
|
|
316
|
-
* represented as an empty circle . The `fillColor` option defines the
|
|
317
|
-
* color of that circle. Use pie.borderWidth to set the border
|
|
318
|
-
* thickness.
|
|
319
|
-
*/
|
|
320
|
-
fillColor?: Highcharts.ColorType;
|
|
11
|
+
interface PlotVariablepieAccessibilityPointOptions {
|
|
321
12
|
/**
|
|
322
|
-
* (Highcharts
|
|
323
|
-
*
|
|
13
|
+
* (Highcharts) Date format to use for points on datetime axes when
|
|
14
|
+
* describing them to screen reader users.
|
|
324
15
|
*
|
|
325
|
-
*
|
|
326
|
-
* larger time span. This can make the grouped points to have a greater
|
|
327
|
-
* distance than the absolute value of `gapSize` property, which will
|
|
328
|
-
* result in disappearing graph completely. To prevent this situation
|
|
329
|
-
* the mentioned distance between grouped points is used instead of
|
|
330
|
-
* previously defined `gapSize`.
|
|
16
|
+
* Defaults to the same format as in tooltip.
|
|
331
17
|
*
|
|
332
|
-
*
|
|
333
|
-
* series. In a stock chart, intraday data is available for daytime
|
|
334
|
-
* hours, while gaps will appear in nights and weekends.
|
|
18
|
+
* For an overview of the replacement codes, see dateFormat.
|
|
335
19
|
*/
|
|
336
|
-
|
|
20
|
+
dateFormat?: string;
|
|
337
21
|
/**
|
|
338
|
-
* (Highcharts
|
|
339
|
-
*
|
|
340
|
-
*
|
|
341
|
-
*
|
|
342
|
-
*
|
|
343
|
-
* of the two closest points, the graph will be broken.
|
|
344
|
-
*
|
|
345
|
-
* When the `gapUnit` is `"value"`, the gap is based on absolute axis
|
|
346
|
-
* values, which on a datetime axis is milliseconds. This also applies
|
|
347
|
-
* to the navigator series that inherits gap options from the base
|
|
348
|
-
* series.
|
|
22
|
+
* (Highcharts) Formatter function to determine the date/time format
|
|
23
|
+
* used with points on datetime axes when describing them to screen
|
|
24
|
+
* reader users. Receives one argument, `point`, referring to the point
|
|
25
|
+
* to describe. Should return a date format string compatible with
|
|
26
|
+
* dateFormat.
|
|
349
27
|
*/
|
|
350
|
-
|
|
28
|
+
dateFormatter?: Highcharts.ScreenReaderFormatterCallbackFunction<Highcharts.Point>;
|
|
351
29
|
/**
|
|
352
|
-
* (Highcharts
|
|
353
|
-
*
|
|
354
|
-
* point were `null`.
|
|
355
|
-
*
|
|
356
|
-
* The default value changed from `false` to `true` with Highcharts 3.0.
|
|
30
|
+
* (Highcharts) Whether or not to describe points with the value `null`
|
|
31
|
+
* to assistive technology, such as screen readers.
|
|
357
32
|
*/
|
|
358
|
-
|
|
33
|
+
describeNull?: boolean;
|
|
359
34
|
/**
|
|
360
|
-
* (Highcharts)
|
|
361
|
-
*
|
|
35
|
+
* (Highcharts) A format string to use instead of the default for point
|
|
36
|
+
* descriptions.
|
|
362
37
|
*
|
|
363
|
-
*
|
|
364
|
-
* adjusting opacity. Note that this approach could affect performance
|
|
365
|
-
* with large datasets.
|
|
366
|
-
*/
|
|
367
|
-
inactiveOtherPoints?: boolean;
|
|
368
|
-
/**
|
|
369
|
-
* (Highcharts) When set to `false` will prevent the series data from
|
|
370
|
-
* being included in any form of data export.
|
|
38
|
+
* The context of the format string is the point instance.
|
|
371
39
|
*
|
|
372
|
-
*
|
|
373
|
-
*
|
|
40
|
+
* As opposed to accessibility.point.valueDescriptionFormat, this option
|
|
41
|
+
* replaces the whole description.
|
|
374
42
|
*/
|
|
375
|
-
|
|
43
|
+
descriptionFormat?: string;
|
|
376
44
|
/**
|
|
377
|
-
* (Highcharts
|
|
378
|
-
*
|
|
379
|
-
*
|
|
380
|
-
*
|
|
45
|
+
* (Highcharts) Formatter function to use instead of the default for
|
|
46
|
+
* point descriptions. Same as
|
|
47
|
+
* `accessibility.point.descriptionFormatter`, but applies to a series
|
|
48
|
+
* instead of the whole chart.
|
|
381
49
|
*
|
|
382
|
-
* Note:
|
|
383
|
-
*
|
|
50
|
+
* Note: Prefer using accessibility.point.valueDescriptionFormat instead
|
|
51
|
+
* if possible, as default functionality such as describing annotations
|
|
52
|
+
* will be preserved.
|
|
384
53
|
*/
|
|
385
|
-
|
|
54
|
+
descriptionFormatter?: Highcharts.ScreenReaderFormatterCallbackFunction<Highcharts.Point>;
|
|
386
55
|
/**
|
|
387
|
-
* (Highcharts)
|
|
388
|
-
*
|
|
389
|
-
* unstructured data arrays from different sources.
|
|
56
|
+
* (Highcharts) Decimals to use for the values in the point
|
|
57
|
+
* descriptions. Uses tooltip.valueDecimals if not defined.
|
|
390
58
|
*/
|
|
391
|
-
|
|
59
|
+
valueDecimals?: number;
|
|
392
60
|
/**
|
|
393
|
-
* (Highcharts)
|
|
394
|
-
*
|
|
395
|
-
|
|
396
|
-
legendSymbol?: Highcharts.OptionsLegendSymbolValue;
|
|
397
|
-
/**
|
|
398
|
-
* (Highcharts, Highstock, Highmaps) Defines the color of the legend
|
|
399
|
-
* symbol for this series. Defaults to undefined, in which case the
|
|
400
|
-
* series color is used. Does not work with styled mode.
|
|
401
|
-
*/
|
|
402
|
-
legendSymbolColor?: Highcharts.ColorType;
|
|
403
|
-
/**
|
|
404
|
-
* (Highcharts) The line cap used for line ends and line joins on the
|
|
405
|
-
* graph.
|
|
406
|
-
*/
|
|
407
|
-
linecap?: Highcharts.SeriesLinecapValue;
|
|
408
|
-
/**
|
|
409
|
-
* (Highcharts) The maximum size of the points' radius related to
|
|
410
|
-
* chart's `plotArea`. If a number is set, it applies in pixels.
|
|
411
|
-
*/
|
|
412
|
-
maxPointSize?: (number|string);
|
|
413
|
-
/**
|
|
414
|
-
* (Highcharts) The minimum size of the points' radius related to
|
|
415
|
-
* chart's `plotArea`. If a number is set, it applies in pixels.
|
|
416
|
-
*/
|
|
417
|
-
minPointSize?: (number|string);
|
|
418
|
-
/**
|
|
419
|
-
* (Highcharts, Highmaps) The minimum size for a pie in response to auto
|
|
420
|
-
* margins. The pie will try to shrink to make room for data labels in
|
|
421
|
-
* side the plot area, but only to this size.
|
|
422
|
-
*/
|
|
423
|
-
minSize?: (number|string);
|
|
424
|
-
/**
|
|
425
|
-
* (Highcharts, Highstock) Whether or not data-points with the value of
|
|
426
|
-
* `null` should be interactive. When this is set to `true`, tooltips
|
|
427
|
-
* may highlight these points, and this option also enables keyboard
|
|
428
|
-
* navigation for such points. Format options for such points include
|
|
429
|
-
* `nullFormat` and `nullFormatter`. Works for these series: `line`,
|
|
430
|
-
* `spline`, `area`, `area-spline`, `column`, `bar`, and `timeline`.
|
|
431
|
-
*/
|
|
432
|
-
nullInteraction?: (boolean|undefined);
|
|
433
|
-
/**
|
|
434
|
-
* (Highcharts) Options for the _Series on point_ feature. Only `pie`
|
|
435
|
-
* and `sunburst` series are supported at this moment.
|
|
436
|
-
*/
|
|
437
|
-
onPoint?: (object|Highcharts.PlotVariablepieOnPointOptions);
|
|
438
|
-
/**
|
|
439
|
-
* (Highcharts) Opacity of a series parts: line, fill (e.g. area) and
|
|
440
|
-
* dataLabels.
|
|
441
|
-
*/
|
|
442
|
-
opacity?: number;
|
|
443
|
-
/**
|
|
444
|
-
* (Highcharts) Properties for each single point.
|
|
445
|
-
*/
|
|
446
|
-
point?: Highcharts.PlotSeriesPointOptions;
|
|
447
|
-
/**
|
|
448
|
-
* (Highcharts) Deprecated. Use
|
|
449
|
-
* series.accessibility.point.descriptionFormat instead.
|
|
61
|
+
* (Highcharts) Format to use for describing the values of data points
|
|
62
|
+
* to assistive technology - including screen readers. The point context
|
|
63
|
+
* is available as `{point}`.
|
|
450
64
|
*
|
|
451
|
-
*
|
|
452
|
-
*
|
|
65
|
+
* Other available context variables include `{index}`, `{value}`, and
|
|
66
|
+
* `{xDescription}`.
|
|
453
67
|
*
|
|
454
|
-
*
|
|
68
|
+
* Additionally, the series name, annotation info, and description added
|
|
69
|
+
* in `point.accessibility.description` is added by default if relevant.
|
|
70
|
+
* To override this, use the accessibility.point.descriptionFormatter
|
|
71
|
+
* option.
|
|
455
72
|
*/
|
|
456
|
-
|
|
73
|
+
valueDescriptionFormat?: string;
|
|
457
74
|
/**
|
|
458
|
-
* (Highcharts)
|
|
459
|
-
*
|
|
460
|
-
*
|
|
461
|
-
* Same as accessibility.series.descriptionFormatter, but for an
|
|
462
|
-
* individual series. Overrides the chart wide configuration.
|
|
463
|
-
*
|
|
464
|
-
* @deprecated 8.0.0
|
|
75
|
+
* (Highcharts) Prefix to add to the values in the point descriptions.
|
|
76
|
+
* Uses tooltip.valuePrefix if not defined.
|
|
465
77
|
*/
|
|
466
|
-
|
|
78
|
+
valuePrefix?: string;
|
|
467
79
|
/**
|
|
468
|
-
* (Highcharts
|
|
469
|
-
*
|
|
470
|
-
* `pointIntervalUnit` settings. This allows compression of the data for
|
|
471
|
-
* datasets with irregular X values.
|
|
472
|
-
*
|
|
473
|
-
* The real X values are computed on the formula `f(x) = ax + b`, where
|
|
474
|
-
* `a` is the `pointInterval` (optionally with a time unit given by
|
|
475
|
-
* `pointIntervalUnit`), and `b` is the `pointStart`.
|
|
80
|
+
* (Highcharts) Suffix to add to the values in the point descriptions.
|
|
81
|
+
* Uses tooltip.valueSuffix if not defined.
|
|
476
82
|
*/
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
* 2.3 the shadow can be an object configuration containing `color`,
|
|
487
|
-
* `offsetX`, `offsetY`, `opacity` and `width`.
|
|
488
|
-
*
|
|
489
|
-
* Note that in some cases, like stacked columns or other dense layouts,
|
|
490
|
-
* the series may cast shadows on each other. In that case, the
|
|
491
|
-
* `chart.seriesGroupShadow` allows applying a common drop shadow to the
|
|
492
|
-
* whole series group.
|
|
493
|
-
*/
|
|
494
|
-
shadow?: (boolean|Highcharts.ShadowOptionsObject);
|
|
495
|
-
/**
|
|
496
|
-
* (Highcharts) If true, a checkbox is displayed next to the legend item
|
|
497
|
-
* to allow selecting the series. The state of the checkbox is
|
|
498
|
-
* determined by the `selected` option.
|
|
499
|
-
*/
|
|
500
|
-
showCheckbox?: boolean;
|
|
501
|
-
/**
|
|
502
|
-
* (Highcharts, Highmaps) Whether to display this particular series or
|
|
503
|
-
* series type in the legend. Since 2.1, pies are not shown in the
|
|
504
|
-
* legend by default.
|
|
505
|
-
*/
|
|
506
|
-
showInLegend?: boolean;
|
|
507
|
-
/**
|
|
508
|
-
* (Highcharts, Highmaps) The diameter of the pie relative to the plot
|
|
509
|
-
* area. Can be a percentage or pixel value. Pixel values are given as
|
|
510
|
-
* integers. The default behavior (as of 3.0) is to scale to the plot
|
|
511
|
-
* area and give room for data labels within the plot area. slicedOffset
|
|
512
|
-
* is also included in the default size calculation. As a consequence,
|
|
513
|
-
* the size of the pie may vary when points are updated and data labels
|
|
514
|
-
* more around. In that case it is best to set a fixed value, for
|
|
515
|
-
* example `"75%"`.
|
|
516
|
-
*/
|
|
517
|
-
size?: (number|string|null);
|
|
518
|
-
/**
|
|
519
|
-
* (Highcharts) Whether the pie slice's value should be represented by
|
|
520
|
-
* the area or the radius of the slice. Can be either `area` or
|
|
521
|
-
* `radius`. The default, `area`, corresponds best to the human
|
|
522
|
-
* perception of the size of each pie slice.
|
|
523
|
-
*/
|
|
524
|
-
sizeBy?: Highcharts.VariablePieSizeByValue;
|
|
525
|
-
/**
|
|
526
|
-
* (Highcharts) Deprecated. Use series.accessibility.keyboardNavigation
|
|
527
|
-
* instead.
|
|
528
|
-
*
|
|
529
|
-
* If set to `true`, the accessibility module will skip past the points
|
|
530
|
-
* in this series for keyboard navigation.
|
|
531
|
-
*
|
|
532
|
-
* @deprecated 8.0.0
|
|
533
|
-
*/
|
|
534
|
-
skipKeyboardNavigation?: boolean;
|
|
535
|
-
/**
|
|
536
|
-
* (Highcharts, Highmaps) If a point is sliced, moved out from the
|
|
537
|
-
* center, how many pixels should it be moved?.
|
|
538
|
-
*/
|
|
539
|
-
slicedOffset?: number;
|
|
540
|
-
/**
|
|
541
|
-
* (Highcharts) Sonification/audio chart options for a series.
|
|
542
|
-
*/
|
|
543
|
-
sonification?: Highcharts.SeriesSonificationOptions;
|
|
544
|
-
/**
|
|
545
|
-
* (Highcharts, Highmaps) The start angle of the pie slices in degrees
|
|
546
|
-
* where 0 is top and 90 right.
|
|
547
|
-
*/
|
|
548
|
-
startAngle?: number;
|
|
549
|
-
/**
|
|
550
|
-
* (Highcharts) A collection of options for different series states.
|
|
551
|
-
*/
|
|
552
|
-
states?: Highcharts.SeriesStatesOptionsObject;
|
|
83
|
+
valueSuffix?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* (Highcharts) Options for the connector in the _Series on point_ feature.
|
|
87
|
+
*
|
|
88
|
+
* In styled mode, the connector can be styled with the
|
|
89
|
+
* `.highcharts-connector-seriesonpoint` class name.
|
|
90
|
+
*/
|
|
91
|
+
interface PlotVariablepieOnPointConnectorOptions {
|
|
553
92
|
/**
|
|
554
|
-
* (Highcharts
|
|
555
|
-
* the `mouseOut` event on a series isn't triggered until the mouse
|
|
556
|
-
* moves over another series, or out of the plot area. When false, the
|
|
557
|
-
* `mouseOut` event on a series is triggered when the mouse leaves the
|
|
558
|
-
* area around the series' graph or markers. This also implies the
|
|
559
|
-
* tooltip. When `stickyTracking` is false and `tooltip.shared` is
|
|
560
|
-
* false, the tooltip will be hidden when moving the mouse between
|
|
561
|
-
* series.
|
|
93
|
+
* (Highcharts) A name for the dash style to use for the connector.
|
|
562
94
|
*/
|
|
563
|
-
|
|
95
|
+
dashstyle?: string;
|
|
564
96
|
/**
|
|
565
|
-
* (Highcharts)
|
|
566
|
-
*
|
|
97
|
+
* (Highcharts) Color of the connector line. By default it's the series'
|
|
98
|
+
* color.
|
|
567
99
|
*/
|
|
568
|
-
|
|
100
|
+
stroke?: string;
|
|
569
101
|
/**
|
|
570
|
-
* (Highcharts)
|
|
571
|
-
* single series. Properties are inherited from tooltip, but only the
|
|
572
|
-
* following properties can be defined on a series level.
|
|
102
|
+
* (Highcharts) Pixel width of the connector line.
|
|
573
103
|
*/
|
|
574
|
-
|
|
104
|
+
width?: number;
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* (Highcharts) Options allowing to set a position and an offset of the
|
|
108
|
+
* series in the _Series on point_ feature.
|
|
109
|
+
*/
|
|
110
|
+
interface PlotVariablepieOnPointPositionOptions {
|
|
575
111
|
/**
|
|
576
|
-
* (Highcharts)
|
|
112
|
+
* (Highcharts) Series center offset from the original x position. If
|
|
113
|
+
* defined, the connector line is drawn connecting original position
|
|
114
|
+
* with new position.
|
|
577
115
|
*/
|
|
578
|
-
|
|
116
|
+
offsetX?: number;
|
|
579
117
|
/**
|
|
580
|
-
* (Highcharts)
|
|
581
|
-
*
|
|
582
|
-
*
|
|
118
|
+
* (Highcharts) Series center offset from the original y position. If
|
|
119
|
+
* defined, the connector line is drawn from original position to a new
|
|
120
|
+
* position.
|
|
583
121
|
*/
|
|
584
|
-
|
|
122
|
+
offsetY?: number;
|
|
585
123
|
/**
|
|
586
|
-
* (Highcharts)
|
|
587
|
-
*
|
|
588
|
-
* will be drawn according to the zMin value.
|
|
124
|
+
* (Highcharts) X position of the series center. By default, the series
|
|
125
|
+
* is displayed on the point that it is connected to.
|
|
589
126
|
*/
|
|
590
|
-
|
|
127
|
+
x?: number;
|
|
591
128
|
/**
|
|
592
|
-
* (Highcharts)
|
|
593
|
-
* is
|
|
594
|
-
* non-cartesian series. By default zooming is enabled for all series.
|
|
595
|
-
*
|
|
596
|
-
* **Note**: This option works only for non-cartesian series.
|
|
129
|
+
* (Highcharts) Y position of the series center. By default, the series
|
|
130
|
+
* is displayed on the point that it is connected to.
|
|
597
131
|
*/
|
|
598
|
-
|
|
132
|
+
y?: number;
|
|
599
133
|
}
|
|
600
134
|
/**
|
|
601
|
-
* (Highcharts) Animation
|
|
135
|
+
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
136
|
+
* line-type series.
|
|
602
137
|
*/
|
|
603
|
-
interface
|
|
138
|
+
interface PlotVariablepieStatesHoverAnimationOptions {
|
|
139
|
+
/**
|
|
140
|
+
* (Highcharts, Highstock) The duration of the hover animation in
|
|
141
|
+
* milliseconds. By default the hover state animates quickly in, and
|
|
142
|
+
* slowly back to normal.
|
|
143
|
+
*/
|
|
604
144
|
duration?: number;
|
|
605
145
|
}
|
|
606
146
|
/**
|
|
607
|
-
* (Highcharts, Highstock
|
|
608
|
-
*
|
|
609
|
-
* closest data points. This member gives the default string representations
|
|
610
|
-
* used for each unit. For an overview of the string or object
|
|
611
|
-
* configuration, see dateFormat.
|
|
147
|
+
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
148
|
+
* line-type series.
|
|
612
149
|
*/
|
|
613
|
-
interface
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
week?: string;
|
|
621
|
-
year?: string;
|
|
150
|
+
interface PlotVariablepieStatesSelectAnimationOptions {
|
|
151
|
+
/**
|
|
152
|
+
* (Highcharts, Highstock) The duration of the hover animation in
|
|
153
|
+
* milliseconds. By default the hover state animates quickly in, and
|
|
154
|
+
* slowly back to normal.
|
|
155
|
+
*/
|
|
156
|
+
duration?: number;
|
|
622
157
|
}
|
|
623
158
|
/**
|
|
624
|
-
* (Highcharts)
|
|
625
|
-
*
|
|
159
|
+
* (Highcharts) Options for the tooltip header when tooltip.split is
|
|
160
|
+
* enabled. The header is the box containing the X value in a split tooltip.
|
|
626
161
|
*/
|
|
627
|
-
interface
|
|
162
|
+
interface PlotVariablepieTooltipHeaderOptions {
|
|
628
163
|
/**
|
|
629
|
-
* (Highcharts)
|
|
164
|
+
* (Highcharts) Background color for the tooltip header when
|
|
165
|
+
* tooltip.split is enabled.
|
|
630
166
|
*/
|
|
631
|
-
|
|
167
|
+
backgroundColor?: Highcharts.ColorType;
|
|
632
168
|
/**
|
|
633
|
-
* (Highcharts)
|
|
634
|
-
*
|
|
635
|
-
* The default, `pane`, means that it is aligned within the plot area
|
|
636
|
-
* for that given series. If the tooltip is split (as default in Stock
|
|
637
|
-
* charts), each partial tooltip is aligned within the series' pane.
|
|
169
|
+
* (Highcharts) Border color for the tooltip header when tooltip.split
|
|
170
|
+
* is enabled.
|
|
638
171
|
*/
|
|
639
|
-
|
|
172
|
+
borderColor?: Highcharts.ColorType;
|
|
640
173
|
/**
|
|
641
|
-
* (Highcharts) The
|
|
174
|
+
* (Highcharts) The width of the border for the tooltip header when
|
|
175
|
+
* tooltip.split is enabled.
|
|
642
176
|
*/
|
|
643
|
-
|
|
177
|
+
borderWidth?: number;
|
|
644
178
|
/**
|
|
645
|
-
* (Highcharts)
|
|
646
|
-
*
|
|
647
|
-
*
|
|
179
|
+
* (Highcharts) Distance between the plot area and the header (except
|
|
180
|
+
* the chevron) in a split tooltip, in pixels. The default value makes
|
|
181
|
+
* the header text align with the axis labels.
|
|
648
182
|
*/
|
|
649
|
-
|
|
183
|
+
distance?: number;
|
|
650
184
|
/**
|
|
651
|
-
* (Highcharts)
|
|
652
|
-
*
|
|
653
|
-
*
|
|
185
|
+
* (Highcharts) The name of a symbol to use for the border around the
|
|
186
|
+
* tooltip header. Applies only when tooltip.split is enabled.
|
|
187
|
+
*
|
|
188
|
+
* Custom callbacks for symbol path generation can also be added to
|
|
189
|
+
* `Highcharts.SVGRenderer.prototype.symbols` the same way as for
|
|
190
|
+
* series.marker.symbol.
|
|
654
191
|
*/
|
|
655
|
-
|
|
192
|
+
shape?: string;
|
|
193
|
+
/**
|
|
194
|
+
* (Highcharts) CSS styles for the tooltip header. The default is `{
|
|
195
|
+
* fontSize: '1em' }`, ensuring that the header text is the same size as
|
|
196
|
+
* the axis labels.
|
|
197
|
+
*/
|
|
198
|
+
style?: object;
|
|
656
199
|
}
|
|
657
200
|
/**
|
|
658
201
|
* (Highcharts) A `variablepie` series. If the type option is not specified,
|