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
package/options/mappoint.d.ts
CHANGED
|
@@ -6,86 +6,184 @@
|
|
|
6
6
|
import * as Highcharts from "../highcharts";
|
|
7
7
|
declare module "../highcharts" {
|
|
8
8
|
/**
|
|
9
|
-
* (Highmaps)
|
|
9
|
+
* (Highcharts, Highstock, Highmaps, Gantt) Enable or disable the initial
|
|
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.
|
|
10
18
|
*/
|
|
11
|
-
interface
|
|
19
|
+
interface PlotMappointClusterDataLabelsAnimationOptions {
|
|
12
20
|
/**
|
|
13
|
-
* (
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
* Defaults to the same format as in tooltip.
|
|
17
|
-
*
|
|
18
|
-
* For an overview of the replacement codes, see dateFormat.
|
|
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.
|
|
19
24
|
*/
|
|
20
|
-
|
|
25
|
+
defer?: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* (Highcharts, Highstock, Highmaps, Gantt) Styles for the label. The
|
|
29
|
+
* default `color` setting is `"contrast"`, which is a pseudo color that
|
|
30
|
+
* Highcharts picks up and applies the maximum contrast to the underlying
|
|
31
|
+
* point item, for example the bar in a bar chart.
|
|
32
|
+
*
|
|
33
|
+
* The `textOutline` is a pseudo property that applies an outline of the
|
|
34
|
+
* given width with the given color, which by default is the maximum
|
|
35
|
+
* contrast to the text. So a bright text color will result in a black text
|
|
36
|
+
* outline for maximum readability on a mixed background. In some cases,
|
|
37
|
+
* especially with grayscale text, the text outline doesn't work well, in
|
|
38
|
+
* which cases it can be disabled by setting it to `"none"`. When `useHTML`
|
|
39
|
+
* is true, the `textOutline` will not be picked up. In this, case, the same
|
|
40
|
+
* effect can be achieved through the `text-shadow` CSS property. As a
|
|
41
|
+
* complementary or alternative to the `textOutline`, a
|
|
42
|
+
* `dataLabels.backgroundColor` can be used. It provides a more calm
|
|
43
|
+
* impression and ensures readable text label, at the cost of a risk of
|
|
44
|
+
* overshadowing the underlying chart elements.
|
|
45
|
+
*
|
|
46
|
+
* For some series types, where each point has an extent, like for example
|
|
47
|
+
* tree maps, the data label may overflow the point. There are two
|
|
48
|
+
* strategies for handling overflow. By default, the text will wrap to
|
|
49
|
+
* multiple lines. The other strategy is to set `style.textOverflow` to
|
|
50
|
+
* `ellipsis`, which will keep the text on one line plus it will break
|
|
51
|
+
* inside long words.
|
|
52
|
+
*/
|
|
53
|
+
interface PlotMappointClusterDataLabelsStyleOptions {
|
|
54
|
+
color?: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* (Highcharts, Highmaps) Options for layout algorithm. Inside there are
|
|
58
|
+
* options to change the type of the algorithm, gridSize, distance or
|
|
59
|
+
* iterations.
|
|
60
|
+
*/
|
|
61
|
+
interface PlotMappointClusterLayoutAlgorithmOptions {
|
|
21
62
|
/**
|
|
22
|
-
* (Highmaps)
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
63
|
+
* (Highcharts, Highmaps) When `type` is set to `kmeans`, `distance` is
|
|
64
|
+
* a maximum distance between point and cluster center so that this
|
|
65
|
+
* point will be inside the cluster. The distance is either a number
|
|
66
|
+
* defining pixels or a percentage defining a percentage of the plot
|
|
67
|
+
* area width.
|
|
27
68
|
*/
|
|
28
|
-
|
|
69
|
+
distance?: (number|string);
|
|
29
70
|
/**
|
|
30
|
-
* (Highmaps)
|
|
31
|
-
*
|
|
71
|
+
* (Highcharts, Highmaps) When `type` is set to the `grid`, `gridSize`
|
|
72
|
+
* is a size of a grid square element either as a number defining
|
|
73
|
+
* pixels, or a percentage defining a percentage of the plot area width.
|
|
32
74
|
*/
|
|
33
|
-
|
|
75
|
+
gridSize?: (number|string);
|
|
34
76
|
/**
|
|
35
|
-
* (Highmaps)
|
|
36
|
-
*
|
|
77
|
+
* (Highcharts, Highmaps) When `type` is set to `kmeans`, `iterations`
|
|
78
|
+
* are the number of iterations that this algorithm will be repeated to
|
|
79
|
+
* find clusters positions.
|
|
80
|
+
*/
|
|
81
|
+
iterations?: number;
|
|
82
|
+
/**
|
|
83
|
+
* (Highcharts, Highmaps) When `type` is set to `undefined` and there
|
|
84
|
+
* are more visible points than the kmeansThreshold the `grid` algorithm
|
|
85
|
+
* is used to find clusters, otherwise `kmeans`. It ensures good
|
|
86
|
+
* performance on large datasets and better clusters arrangement after
|
|
87
|
+
* the zoom.
|
|
88
|
+
*/
|
|
89
|
+
kmeansThreshold?: number;
|
|
90
|
+
/**
|
|
91
|
+
* (Highcharts, Highmaps) Type of the algorithm used to combine points
|
|
92
|
+
* into a cluster. There are three available algorithms:
|
|
93
|
+
*
|
|
94
|
+
* 1) `grid` - grid-based clustering technique. Points are assigned to
|
|
95
|
+
* squares of set size depending on their position on the plot area.
|
|
96
|
+
* Points inside the grid square are combined into a cluster. The grid
|
|
97
|
+
* size can be controlled by `gridSize` property (grid size changes at
|
|
98
|
+
* certain zoom levels).
|
|
99
|
+
*
|
|
100
|
+
* 2) `kmeans` - based on K-Means clustering technique. In the first
|
|
101
|
+
* step, points are divided using the grid method (distance property is
|
|
102
|
+
* a grid size) to find the initial amount of clusters. Next, each point
|
|
103
|
+
* is classified by computing the distance between each cluster center
|
|
104
|
+
* and that point. When the closest cluster distance is lower than
|
|
105
|
+
* distance property set by a user the point is added to this cluster
|
|
106
|
+
* otherwise is classified as `noise`. The algorithm is repeated until
|
|
107
|
+
* each cluster center not change its previous position more than one
|
|
108
|
+
* pixel. This technique is more accurate but also more time consuming
|
|
109
|
+
* than the `grid` algorithm, especially for big datasets.
|
|
37
110
|
*
|
|
38
|
-
*
|
|
111
|
+
* 3) `optimizedKmeans` - based on K-Means clustering technique. This
|
|
112
|
+
* algorithm uses k-means algorithm only on the chart initialization or
|
|
113
|
+
* when chart extremes have greater range than on initialization. When a
|
|
114
|
+
* chart is redrawn the algorithm checks only clustered points distance
|
|
115
|
+
* from the cluster center and rebuild it when the point is spaced
|
|
116
|
+
* enough to be outside the cluster. It provides performance improvement
|
|
117
|
+
* and more stable clusters position yet can be used rather on small and
|
|
118
|
+
* sparse datasets.
|
|
39
119
|
*
|
|
40
|
-
*
|
|
41
|
-
*
|
|
120
|
+
* By default, the algorithm depends on visible quantity of points and
|
|
121
|
+
* `kmeansThreshold`. When there are more visible points than the
|
|
122
|
+
* `kmeansThreshold` the `grid` algorithm is used, otherwise `kmeans`.
|
|
123
|
+
*
|
|
124
|
+
* The custom clustering algorithm can be added by assigning a callback
|
|
125
|
+
* function as the type property. This function takes an array of
|
|
126
|
+
* `processedXData`, `processedYData`, `processedXData` indexes and
|
|
127
|
+
* `layoutAlgorithm` options as arguments and should return an object
|
|
128
|
+
* with grouped data.
|
|
129
|
+
*
|
|
130
|
+
* The algorithm should return an object like that: (see online
|
|
131
|
+
* documentation for example)
|
|
132
|
+
*
|
|
133
|
+
* `clusterId` (example above - unique id of a cluster or noise) is an
|
|
134
|
+
* array of points belonging to a cluster. If the array has only one
|
|
135
|
+
* point or fewer points than set in `cluster.minimumClusterSize` it
|
|
136
|
+
* won't be combined into a cluster.
|
|
42
137
|
*/
|
|
43
|
-
|
|
138
|
+
type?: (string|Function);
|
|
139
|
+
}
|
|
140
|
+
interface PlotMappointClusterStatesHoverOptions {
|
|
44
141
|
/**
|
|
45
|
-
* (Highmaps)
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
49
|
-
* Note: Prefer using accessibility.point.valueDescriptionFormat instead
|
|
50
|
-
* if possible, as default functionality such as describing annotations
|
|
51
|
-
* will be preserved.
|
|
142
|
+
* (Highcharts, Highmaps) The fill color of the cluster marker in hover
|
|
143
|
+
* state. When `undefined`, the series' or point's fillColor for normal
|
|
144
|
+
* state is used.
|
|
52
145
|
*/
|
|
53
|
-
|
|
146
|
+
fillColor?: Highcharts.ColorType;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* (Highcharts, Highmaps) An array defining zones within marker clusters.
|
|
150
|
+
*
|
|
151
|
+
* In styled mode, the color zones are styled with the
|
|
152
|
+
* `.highcharts-cluster-zone-{n}` class, or custom classed from the
|
|
153
|
+
* `className` option.
|
|
154
|
+
*/
|
|
155
|
+
interface PlotMappointClusterZonesOptions {
|
|
54
156
|
/**
|
|
55
|
-
* (Highmaps)
|
|
56
|
-
*
|
|
157
|
+
* (Highcharts, Highmaps) Styled mode only. A custom class name for the
|
|
158
|
+
* zone.
|
|
57
159
|
*/
|
|
58
|
-
|
|
160
|
+
className?: string;
|
|
59
161
|
/**
|
|
60
|
-
* (Highmaps)
|
|
61
|
-
* assistive technology - including screen readers. The point context is
|
|
62
|
-
* available as `{point}`.
|
|
63
|
-
*
|
|
64
|
-
* Other available context variables include `{index}`, `{value}`, and
|
|
65
|
-
* `{xDescription}`.
|
|
66
|
-
*
|
|
67
|
-
* Additionally, the series name, annotation info, and description added
|
|
68
|
-
* in `point.accessibility.description` is added by default if relevant.
|
|
69
|
-
* To override this, use the accessibility.point.descriptionFormatter
|
|
70
|
-
* option.
|
|
162
|
+
* (Highcharts, Highmaps) The value where the zone starts.
|
|
71
163
|
*/
|
|
72
|
-
|
|
164
|
+
from?: number;
|
|
73
165
|
/**
|
|
74
|
-
* (Highmaps)
|
|
75
|
-
*
|
|
166
|
+
* (Highcharts, Highmaps) Settings for the cluster marker belonging to
|
|
167
|
+
* the zone.
|
|
76
168
|
*/
|
|
77
|
-
|
|
169
|
+
marker?: Highcharts.PointMarkerOptionsObject;
|
|
78
170
|
/**
|
|
79
|
-
* (Highmaps)
|
|
80
|
-
* Uses tooltip.valueSuffix if not defined.
|
|
171
|
+
* (Highcharts, Highmaps) The value where the zone ends.
|
|
81
172
|
*/
|
|
82
|
-
|
|
173
|
+
to?: number;
|
|
83
174
|
}
|
|
84
175
|
/**
|
|
85
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Options for the
|
|
86
|
-
* labels.
|
|
176
|
+
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
177
|
+
* labels, appearing next to each data point.
|
|
178
|
+
*
|
|
179
|
+
* Since v6.2.0, multiple data labels can be applied to each single point by
|
|
180
|
+
* defining them as an array of configs.
|
|
181
|
+
*
|
|
182
|
+
* In styled mode, the data labels can be styled with the
|
|
183
|
+
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
184
|
+
* (see example).
|
|
87
185
|
*/
|
|
88
|
-
interface
|
|
186
|
+
interface PlotMappointDataLabelsOptions {
|
|
89
187
|
/**
|
|
90
188
|
* (Highcharts, Highstock, Highmaps, Gantt) The alignment of the data
|
|
91
189
|
* label compared to the point. If `right`, the right side of the label
|
|
@@ -94,7 +192,7 @@ declare module "../highcharts" {
|
|
|
94
192
|
* as given with the inside option. Can be one of `left`, `center` or
|
|
95
193
|
* `right`.
|
|
96
194
|
*/
|
|
97
|
-
align?:
|
|
195
|
+
align?: (Highcharts.AlignValue|null);
|
|
98
196
|
/**
|
|
99
197
|
* (Highcharts, Highstock, Highmaps, Gantt) Alignment method for data
|
|
100
198
|
* labels. If set to `plotEdges`, the labels are aligned within the plot
|
|
@@ -122,7 +220,7 @@ declare module "../highcharts" {
|
|
|
122
220
|
*
|
|
123
221
|
* - `defer`: The animation delay time in milliseconds.
|
|
124
222
|
*/
|
|
125
|
-
animation?: (boolean|Highcharts.
|
|
223
|
+
animation?: (boolean|Highcharts.PlotMappointDataLabelsAnimationOptions|Partial<Highcharts.AnimationOptionsObject>);
|
|
126
224
|
/**
|
|
127
225
|
* (Highcharts, Highstock, Highmaps, Gantt) The background color or
|
|
128
226
|
* gradient for the data label. In addition to regular colors, there are
|
|
@@ -264,7 +362,7 @@ declare module "../highcharts" {
|
|
|
264
362
|
* will be moved inside the bar. To display data labels outside the plot
|
|
265
363
|
* area, set `crop` to `false` and `overflow` to `"allow"`.
|
|
266
364
|
*/
|
|
267
|
-
overflow?:
|
|
365
|
+
overflow?: boolean;
|
|
268
366
|
/**
|
|
269
367
|
* (Highcharts, Highstock, Highmaps, Gantt) When either the
|
|
270
368
|
* `borderWidth` or the `backgroundColor` is set, this is the padding
|
|
@@ -274,7 +372,7 @@ declare module "../highcharts" {
|
|
|
274
372
|
* of two numbers repeats the values for the horizontal and vertical
|
|
275
373
|
* sides.
|
|
276
374
|
*/
|
|
277
|
-
padding?:
|
|
375
|
+
padding?: (number|Array<number>);
|
|
278
376
|
/**
|
|
279
377
|
* (Highcharts, Highstock, Highmaps, Gantt) Aligns data labels relative
|
|
280
378
|
* to points. If `center` alignment is not possible, it defaults to
|
|
@@ -326,7 +424,7 @@ declare module "../highcharts" {
|
|
|
326
424
|
* to `ellipsis`, which will keep the text on one line plus it will
|
|
327
425
|
* break inside long words.
|
|
328
426
|
*/
|
|
329
|
-
style?: (Highcharts.CSSObject|Highcharts.
|
|
427
|
+
style?: (Highcharts.CSSObject|Highcharts.PlotMappointDataLabelsStyleOptions);
|
|
330
428
|
/**
|
|
331
429
|
* (Highcharts, Highstock, Highmaps, Gantt) Options for a label text
|
|
332
430
|
* which should follow marker's shape. Border and background are
|
|
@@ -351,7 +449,7 @@ declare module "../highcharts" {
|
|
|
351
449
|
* value depends on the data, for instance in a column chart, the label
|
|
352
450
|
* is above positive values and below negative values.
|
|
353
451
|
*/
|
|
354
|
-
verticalAlign?:
|
|
452
|
+
verticalAlign?: (Highcharts.VerticalAlignValue|null);
|
|
355
453
|
/**
|
|
356
454
|
* (Highcharts, Highstock, Highmaps, Gantt) The x position offset of the
|
|
357
455
|
* label relative to the point in pixels.
|
|
@@ -371,129 +469,11 @@ declare module "../highcharts" {
|
|
|
371
469
|
*/
|
|
372
470
|
zIndex?: number;
|
|
373
471
|
}
|
|
374
|
-
interface PlotMappointClusterEventsOptions {
|
|
375
|
-
/**
|
|
376
|
-
* (Highcharts, Highmaps) Fires when the cluster point is clicked and
|
|
377
|
-
* `drillToCluster` is enabled. One parameter, `event`, is passed to the
|
|
378
|
-
* function. The default action is to zoom to the cluster points range.
|
|
379
|
-
* This can be prevented by calling `event.preventDefault()`.
|
|
380
|
-
*/
|
|
381
|
-
drillToCluster?: Highcharts.MarkerClusterDrillCallbackFunction;
|
|
382
|
-
}
|
|
383
472
|
/**
|
|
384
|
-
* (
|
|
385
|
-
* sampling the data values into larger blocks in order to ease readability
|
|
386
|
-
* and increase performance of the JavaScript charts.
|
|
387
|
-
*
|
|
388
|
-
* Note: marker clusters module is not working with `boost` and
|
|
389
|
-
* `draggable-points` modules.
|
|
390
|
-
*
|
|
391
|
-
* The marker clusters feature requires the marker-clusters.js file to be
|
|
392
|
-
* loaded, found in the modules directory of the download package, or online
|
|
393
|
-
* at code.highcharts.com/modules/marker-clusters.js.
|
|
473
|
+
* (Highmaps) Animation when hovering over the marker.
|
|
394
474
|
*/
|
|
395
|
-
interface
|
|
396
|
-
|
|
397
|
-
* (Highcharts, Highmaps) When set to `false` prevent cluster
|
|
398
|
-
* overlapping - this option works only when `layoutAlgorithm.type =
|
|
399
|
-
* "grid"`.
|
|
400
|
-
*/
|
|
401
|
-
allowOverlap?: boolean;
|
|
402
|
-
/**
|
|
403
|
-
* (Highcharts, Highmaps) Options for the cluster marker animation.
|
|
404
|
-
*/
|
|
405
|
-
animation?: (boolean|Partial<Highcharts.AnimationOptionsObject>);
|
|
406
|
-
/**
|
|
407
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Options for the cluster data
|
|
408
|
-
* labels.
|
|
409
|
-
*/
|
|
410
|
-
dataLabels?: (Highcharts.DataLabelsOptions|Highcharts.PlotMappointClusterDataLabelsOptions);
|
|
411
|
-
/**
|
|
412
|
-
* (Highcharts, Highmaps) Zoom the plot area to the cluster points range
|
|
413
|
-
* when a cluster is clicked.
|
|
414
|
-
*/
|
|
415
|
-
drillToCluster?: boolean;
|
|
416
|
-
/**
|
|
417
|
-
* (Highcharts, Highmaps) Whether to enable the marker-clusters module.
|
|
418
|
-
*/
|
|
419
|
-
enabled?: boolean;
|
|
420
|
-
events?: Highcharts.PlotMappointClusterEventsOptions;
|
|
421
|
-
/**
|
|
422
|
-
* (Highcharts, Highmaps) Options for layout algorithm. Inside there are
|
|
423
|
-
* options to change the type of the algorithm, gridSize, distance or
|
|
424
|
-
* iterations.
|
|
425
|
-
*/
|
|
426
|
-
layoutAlgorithm?: Highcharts.PlotMappointClusterLayoutAlgorithmOptions;
|
|
427
|
-
/**
|
|
428
|
-
* (Highcharts, Highmaps) Options for the cluster marker.
|
|
429
|
-
*/
|
|
430
|
-
marker?: Highcharts.PointMarkerOptionsObject;
|
|
431
|
-
/**
|
|
432
|
-
* (Highcharts, Highmaps) The minimum amount of points to be combined
|
|
433
|
-
* into a cluster. This value has to be greater or equal to 2.
|
|
434
|
-
*/
|
|
435
|
-
minimumClusterSize?: number;
|
|
436
|
-
states?: Highcharts.PlotMappointClusterStatesOptions;
|
|
437
|
-
/**
|
|
438
|
-
* (Highcharts, Highmaps) An array defining zones within marker
|
|
439
|
-
* clusters.
|
|
440
|
-
*
|
|
441
|
-
* In styled mode, the color zones are styled with the
|
|
442
|
-
* `.highcharts-cluster-zone-{n}` class, or custom classed from the
|
|
443
|
-
* `className` option.
|
|
444
|
-
*/
|
|
445
|
-
zones?: Array<Highcharts.PlotMappointClusterZonesOptions>;
|
|
446
|
-
}
|
|
447
|
-
interface PlotMappointClusterStatesOptions {
|
|
448
|
-
hover?: Highcharts.PlotMappointClusterStatesHoverOptions;
|
|
449
|
-
}
|
|
450
|
-
/**
|
|
451
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Enable or disable the initial
|
|
452
|
-
* animation when a series is displayed for the `dataLabels`. The animation
|
|
453
|
-
* can also be set as a configuration object. Please note that this option
|
|
454
|
-
* only applies to the initial animation.
|
|
455
|
-
*
|
|
456
|
-
* For other animations, see chart.animation and the animation parameter
|
|
457
|
-
* under the API methods. The following properties are supported:
|
|
458
|
-
*
|
|
459
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
460
|
-
*/
|
|
461
|
-
interface PlotMappointDataLabelsAnimationOptions {
|
|
462
|
-
/**
|
|
463
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The animation delay time in
|
|
464
|
-
* milliseconds. Set to `0` to render the data labels immediately. As
|
|
465
|
-
* `undefined` inherits defer time from the series.animation.defer.
|
|
466
|
-
*/
|
|
467
|
-
defer?: number;
|
|
468
|
-
}
|
|
469
|
-
/**
|
|
470
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Styles for the label. The
|
|
471
|
-
* default `color` setting is `"contrast"`, which is a pseudo color that
|
|
472
|
-
* Highcharts picks up and applies the maximum contrast to the underlying
|
|
473
|
-
* point item, for example the bar in a bar chart.
|
|
474
|
-
*
|
|
475
|
-
* The `textOutline` is a pseudo property that applies an outline of the
|
|
476
|
-
* given width with the given color, which by default is the maximum
|
|
477
|
-
* contrast to the text. So a bright text color will result in a black text
|
|
478
|
-
* outline for maximum readability on a mixed background. In some cases,
|
|
479
|
-
* especially with grayscale text, the text outline doesn't work well, in
|
|
480
|
-
* which cases it can be disabled by setting it to `"none"`. When `useHTML`
|
|
481
|
-
* is true, the `textOutline` will not be picked up. In this, case, the same
|
|
482
|
-
* effect can be achieved through the `text-shadow` CSS property. As a
|
|
483
|
-
* complementary or alternative to the `textOutline`, a
|
|
484
|
-
* `dataLabels.backgroundColor` can be used. It provides a more calm
|
|
485
|
-
* impression and ensures readable text label, at the cost of a risk of
|
|
486
|
-
* overshadowing the underlying chart elements.
|
|
487
|
-
*
|
|
488
|
-
* For some series types, where each point has an extent, like for example
|
|
489
|
-
* tree maps, the data label may overflow the point. There are two
|
|
490
|
-
* strategies for handling overflow. By default, the text will wrap to
|
|
491
|
-
* multiple lines. The other strategy is to set `style.textOverflow` to
|
|
492
|
-
* `ellipsis`, which will keep the text on one line plus it will break
|
|
493
|
-
* inside long words.
|
|
494
|
-
*/
|
|
495
|
-
interface PlotMappointDataLabelsStyleOptions {
|
|
496
|
-
color?: string;
|
|
475
|
+
interface PlotMappointMarkerStatesHoverAnimationOptions {
|
|
476
|
+
duration?: number;
|
|
497
477
|
}
|
|
498
478
|
/**
|
|
499
479
|
* (Highmaps) Options for the connector in the _Series on point_ feature.
|
|
@@ -545,54 +525,58 @@ declare module "../highcharts" {
|
|
|
545
525
|
y?: number;
|
|
546
526
|
}
|
|
547
527
|
/**
|
|
548
|
-
* (
|
|
528
|
+
* (Highcharts, Highstock, Gantt) For series on datetime axes, the date
|
|
529
|
+
* format in the tooltip's header will by default be guessed based on the
|
|
530
|
+
* closest data points. This member gives the default string representations
|
|
531
|
+
* used for each unit. For an overview of the string or object
|
|
532
|
+
* configuration, see dateFormat.
|
|
549
533
|
*/
|
|
550
|
-
interface
|
|
551
|
-
|
|
534
|
+
interface PlotMappointTooltipDateTimeLabelFormatsOptions {
|
|
535
|
+
day?: string;
|
|
536
|
+
hour?: string;
|
|
537
|
+
millisecond?: string;
|
|
538
|
+
minute?: string;
|
|
539
|
+
month?: string;
|
|
540
|
+
second?: string;
|
|
541
|
+
week?: string;
|
|
542
|
+
year?: string;
|
|
552
543
|
}
|
|
553
544
|
/**
|
|
554
|
-
* (Highcharts, Highstock, Highmaps)
|
|
555
|
-
*
|
|
556
|
-
* a split tooltip.
|
|
545
|
+
* (Highcharts, Highstock, Highmaps) Positioning options for fixed tooltip,
|
|
546
|
+
* taking effect only when tooltip.fixed is `true`.
|
|
557
547
|
*/
|
|
558
|
-
interface
|
|
548
|
+
interface PlotMappointTooltipPositionOptions {
|
|
559
549
|
/**
|
|
560
|
-
* (Highcharts, Highstock, Highmaps)
|
|
561
|
-
*
|
|
550
|
+
* (Highcharts, Highstock, Highmaps) The horizontal alignment of the
|
|
551
|
+
* fixed tooltip.
|
|
562
552
|
*/
|
|
563
|
-
|
|
553
|
+
align?: Highcharts.AlignValue;
|
|
564
554
|
/**
|
|
565
|
-
* (Highcharts, Highstock, Highmaps)
|
|
566
|
-
*
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
*
|
|
571
|
-
* tooltip header when tooltip.split is enabled.
|
|
555
|
+
* (Highcharts, Highstock, Highmaps) What the fixed tooltip alignment
|
|
556
|
+
* should be relative to.
|
|
557
|
+
*
|
|
558
|
+
* The default, `pane`, means that it is aligned within the plot area
|
|
559
|
+
* for that given series. If the tooltip is split (as default in Stock
|
|
560
|
+
* charts), each partial tooltip is aligned within the series' pane.
|
|
572
561
|
*/
|
|
573
|
-
|
|
562
|
+
relativeTo?: Highcharts.OptionsRelativeToValue;
|
|
574
563
|
/**
|
|
575
|
-
* (Highcharts, Highstock, Highmaps)
|
|
576
|
-
*
|
|
577
|
-
* default value makes the header text align with the axis labels.
|
|
564
|
+
* (Highcharts, Highstock, Highmaps) The vertical alignment of the fixed
|
|
565
|
+
* tooltip.
|
|
578
566
|
*/
|
|
579
|
-
|
|
567
|
+
verticalAlign?: Highcharts.VerticalAlignValue;
|
|
580
568
|
/**
|
|
581
|
-
* (Highcharts, Highstock, Highmaps)
|
|
582
|
-
*
|
|
583
|
-
*
|
|
584
|
-
*
|
|
585
|
-
* Custom callbacks for symbol path generation can also be added to
|
|
586
|
-
* `Highcharts.SVGRenderer.prototype.symbols` the same way as for
|
|
587
|
-
* series.marker.symbol.
|
|
569
|
+
* (Highcharts, Highstock, Highmaps) X pixel offset from the given
|
|
570
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
571
|
+
* avoid the tooltip overlapping other elements.
|
|
588
572
|
*/
|
|
589
|
-
|
|
573
|
+
x?: number;
|
|
590
574
|
/**
|
|
591
|
-
* (Highcharts, Highstock, Highmaps)
|
|
592
|
-
*
|
|
593
|
-
*
|
|
575
|
+
* (Highcharts, Highstock, Highmaps) Y pixel offset from the given
|
|
576
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
577
|
+
* avoid the tooltip overlapping other elements.
|
|
594
578
|
*/
|
|
595
|
-
|
|
579
|
+
y?: number;
|
|
596
580
|
}
|
|
597
581
|
/**
|
|
598
582
|
* (Highmaps) An array of data points for the series. For the `mappoint`
|
|
@@ -668,6 +652,10 @@ declare module "../highcharts" {
|
|
|
668
652
|
name?: string;
|
|
669
653
|
/**
|
|
670
654
|
* (Highmaps) A collection of options for different series states.
|
|
655
|
+
*
|
|
656
|
+
* In addition to the options documented under each state, any option
|
|
657
|
+
* from the parent series type can be set, with exception of `data` and
|
|
658
|
+
* `states`.
|
|
671
659
|
*/
|
|
672
660
|
states?: Highcharts.SeriesStatesOptionsObject;
|
|
673
661
|
/**
|
|
@@ -679,70 +667,4 @@ declare module "../highcharts" {
|
|
|
679
667
|
*/
|
|
680
668
|
y?: (number|null);
|
|
681
669
|
}
|
|
682
|
-
/**
|
|
683
|
-
* (Highmaps) A `mappoint` series. If the type option is not specified, it
|
|
684
|
-
* is inherited from chart.type.
|
|
685
|
-
*
|
|
686
|
-
* Configuration options for the series are given in three levels:
|
|
687
|
-
*
|
|
688
|
-
* 1. Options for all series in a chart are defined in the
|
|
689
|
-
* plotOptions.series object.
|
|
690
|
-
*
|
|
691
|
-
* 2. Options for all `mappoint` series are defined in plotOptions.mappoint.
|
|
692
|
-
*
|
|
693
|
-
* 3. Options for one single series are given in the series instance array.
|
|
694
|
-
* (see online documentation for example)
|
|
695
|
-
*
|
|
696
|
-
* **TypeScript:**
|
|
697
|
-
*
|
|
698
|
-
* - type option should always be set, otherwise a broad set of unsupported
|
|
699
|
-
* options is allowed.
|
|
700
|
-
*
|
|
701
|
-
* - when accessing an array of series, the combined set of all series types
|
|
702
|
-
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
703
|
-
* specific type can be done by checking the `type` property. (see online
|
|
704
|
-
* documentation for example)
|
|
705
|
-
*
|
|
706
|
-
* You have to extend the `SeriesMappointOptions` via an interface to allow
|
|
707
|
-
* custom properties: ``` declare interface SeriesMappointOptions {
|
|
708
|
-
* customProperty: string; }
|
|
709
|
-
*
|
|
710
|
-
*/
|
|
711
|
-
interface SeriesMappointOptions extends Highcharts.PlotMappointOptions, Highcharts.SeriesOptions {
|
|
712
|
-
/**
|
|
713
|
-
* (Highmaps) An array of data points for the series. For the `mappoint`
|
|
714
|
-
* series type, points can be given in the following ways:
|
|
715
|
-
*
|
|
716
|
-
* 1. An array of numerical values. In this case, the numerical values
|
|
717
|
-
* will be interpreted as `y` options. The `x` values will be
|
|
718
|
-
* automatically calculated, either starting at 0 and incremented by 1,
|
|
719
|
-
* or from `pointStart` and `pointInterval` given in the series options.
|
|
720
|
-
* If the axis has categories, these will be used. Example: (see online
|
|
721
|
-
* documentation for example)
|
|
722
|
-
*
|
|
723
|
-
* 2. An array of arrays with 2 values. In this case, the values
|
|
724
|
-
* correspond to `[hc-key, value]`. Example: (see online documentation
|
|
725
|
-
* for example)
|
|
726
|
-
*
|
|
727
|
-
* 3. An array of objects with named values. The following snippet shows
|
|
728
|
-
* only a few settings, see the complete options set below. If the total
|
|
729
|
-
* number of data points exceeds the series' turboThreshold, this option
|
|
730
|
-
* is not available. (see online documentation for example)
|
|
731
|
-
*/
|
|
732
|
-
data?: Array<(number|[number, (number|null)]|null|Highcharts.SeriesMappointDataOptions)>;
|
|
733
|
-
/**
|
|
734
|
-
* Not available
|
|
735
|
-
*/
|
|
736
|
-
dataParser?: undefined;
|
|
737
|
-
/**
|
|
738
|
-
* Not available
|
|
739
|
-
*/
|
|
740
|
-
dataURL?: undefined;
|
|
741
|
-
/**
|
|
742
|
-
* (Highcharts, Highstock, Highmaps, Gantt) This property is only in
|
|
743
|
-
* TypeScript non-optional and might be `undefined` in series objects
|
|
744
|
-
* from unknown sources.
|
|
745
|
-
*/
|
|
746
|
-
type: "mappoint";
|
|
747
|
-
}
|
|
748
670
|
}
|