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/xrange.src.d.ts
CHANGED
|
@@ -6,415 +6,193 @@
|
|
|
6
6
|
import * as Highcharts from "../highcharts.src";
|
|
7
7
|
declare module "../highcharts.src" {
|
|
8
8
|
/**
|
|
9
|
-
* (Highcharts, Highstock, Gantt)
|
|
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
|
|
12
|
-
/**
|
|
13
|
-
* (Highcharts, Highstock, Gantt) Date format to use for points on
|
|
14
|
-
* datetime axes when describing them to screen reader users.
|
|
15
|
-
*
|
|
16
|
-
* Defaults to the same format as in tooltip.
|
|
17
|
-
*
|
|
18
|
-
* For an overview of the replacement codes, see dateFormat.
|
|
19
|
-
*/
|
|
20
|
-
dateFormat?: string;
|
|
21
|
-
/**
|
|
22
|
-
* (Highcharts, Highstock, Gantt) Formatter function to determine the
|
|
23
|
-
* date/time format used with points on datetime axes when describing
|
|
24
|
-
* them to screen reader users. Receives one argument, `point`,
|
|
25
|
-
* referring to the point to describe. Should return a date format
|
|
26
|
-
* string compatible with dateFormat.
|
|
27
|
-
*/
|
|
28
|
-
dateFormatter?: Highcharts.ScreenReaderFormatterCallbackFunction<Highcharts.Point>;
|
|
29
|
-
/**
|
|
30
|
-
* (Highcharts, Highstock, Gantt) Whether or not to describe points with
|
|
31
|
-
* the value `null` to assistive technology, such as screen readers.
|
|
32
|
-
*/
|
|
33
|
-
describeNull?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* (Highcharts, Highstock, Gantt) A format string to use instead of the
|
|
36
|
-
* default for point descriptions.
|
|
37
|
-
*
|
|
38
|
-
* The context of the format string is the point instance.
|
|
39
|
-
*
|
|
40
|
-
* As opposed to accessibility.point.valueDescriptionFormat, this option
|
|
41
|
-
* replaces the whole description.
|
|
42
|
-
*/
|
|
43
|
-
descriptionFormat?: string;
|
|
44
|
-
/**
|
|
45
|
-
* (Highcharts, Highstock, Gantt) Formatter function to use instead of
|
|
46
|
-
* the default for point descriptions. Same as
|
|
47
|
-
* `accessibility.point.descriptionFormatter`, but applies to a series
|
|
48
|
-
* instead of the whole chart.
|
|
49
|
-
*
|
|
50
|
-
* Note: Prefer using accessibility.point.valueDescriptionFormat instead
|
|
51
|
-
* if possible, as default functionality such as describing annotations
|
|
52
|
-
* will be preserved.
|
|
53
|
-
*/
|
|
54
|
-
descriptionFormatter?: Highcharts.ScreenReaderFormatterCallbackFunction<Highcharts.Point>;
|
|
19
|
+
interface PlotXrangeDataLabelsAnimationOptions {
|
|
55
20
|
/**
|
|
56
|
-
* (Highcharts, Highstock, Gantt)
|
|
57
|
-
*
|
|
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.
|
|
58
24
|
*/
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* (Highcharts, Highstock, Gantt) Format to use for describing the
|
|
62
|
-
* values of data points to assistive technology - including screen
|
|
63
|
-
* readers. The point context is available as `{point}`.
|
|
64
|
-
*
|
|
65
|
-
* Other available context variables include `{index}`, `{value}`, and
|
|
66
|
-
* `{xDescription}`.
|
|
67
|
-
*
|
|
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.
|
|
72
|
-
*/
|
|
73
|
-
valueDescriptionFormat?: string;
|
|
74
|
-
/**
|
|
75
|
-
* (Highcharts, Highstock, Gantt) Prefix to add to the values in the
|
|
76
|
-
* point descriptions. Uses tooltip.valuePrefix if not defined.
|
|
77
|
-
*/
|
|
78
|
-
valuePrefix?: string;
|
|
79
|
-
/**
|
|
80
|
-
* (Highcharts, Highstock, Gantt) Suffix to add to the values in the
|
|
81
|
-
* point descriptions. Uses tooltip.valueSuffix if not defined.
|
|
82
|
-
*/
|
|
83
|
-
valueSuffix?: string;
|
|
25
|
+
defer?: number;
|
|
84
26
|
}
|
|
85
27
|
/**
|
|
86
|
-
* (Highcharts, Highstock, Highmaps, Gantt)
|
|
87
|
-
*
|
|
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.
|
|
88
32
|
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
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.
|
|
91
45
|
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
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.
|
|
95
52
|
*/
|
|
96
|
-
interface
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Alignment method for data
|
|
108
|
-
* labels. If set to `plotEdges`, the labels are aligned within the plot
|
|
109
|
-
* area in the direction of the y-axis. So in a regular column chart,
|
|
110
|
-
* the labels are aligned vertically according to the `verticalAlign`
|
|
111
|
-
* setting. In a bar chart, which is inverted, the labels are aligned
|
|
112
|
-
* horizontally according to the `align` setting. Applies to cartesian
|
|
113
|
-
* series only.
|
|
114
|
-
*/
|
|
115
|
-
alignTo?: string;
|
|
116
|
-
/**
|
|
117
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Whether to allow data labels
|
|
118
|
-
* to overlap. To make the labels less sensitive for overlapping, the
|
|
119
|
-
* dataLabels.padding can be set to 0.
|
|
120
|
-
*/
|
|
121
|
-
allowOverlap?: boolean;
|
|
122
|
-
/**
|
|
123
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Enable or disable the
|
|
124
|
-
* initial animation when a series is displayed for the `dataLabels`.
|
|
125
|
-
* The animation can also be set as a configuration object. Please note
|
|
126
|
-
* that this option only applies to the initial animation.
|
|
127
|
-
*
|
|
128
|
-
* For other animations, see chart.animation and the animation parameter
|
|
129
|
-
* under the API methods. The following properties are supported:
|
|
130
|
-
*
|
|
131
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
132
|
-
*/
|
|
133
|
-
animation?: (boolean|Highcharts.PlotXrangeDataLabelsAnimationOptions|Partial<Highcharts.AnimationOptionsObject>);
|
|
134
|
-
/**
|
|
135
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The background color or
|
|
136
|
-
* gradient for the data label. In addition to regular colors, there are
|
|
137
|
-
* two special setting for this option:
|
|
138
|
-
*
|
|
139
|
-
* - `auto` will set the background color the point's color.
|
|
140
|
-
*
|
|
141
|
-
* - `contrast` will set it to a contrast against the text color, with
|
|
142
|
-
* an opacity allowing to see the underlying content. The contrast is
|
|
143
|
-
* great enough to ensure readability for the text according to
|
|
144
|
-
* accessibility standards.
|
|
145
|
-
*/
|
|
146
|
-
backgroundColor?: Highcharts.ColorType;
|
|
147
|
-
/**
|
|
148
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The border color for the
|
|
149
|
-
* data label. Setting it to `auto` will use the point's color. Defaults
|
|
150
|
-
* to `undefined`.
|
|
151
|
-
*/
|
|
152
|
-
borderColor?: Highcharts.ColorType;
|
|
153
|
-
/**
|
|
154
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The border radius in pixels
|
|
155
|
-
* for the data label.
|
|
156
|
-
*/
|
|
157
|
-
borderRadius?: number;
|
|
158
|
-
/**
|
|
159
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The border width in pixels
|
|
160
|
-
* for the data label.
|
|
161
|
-
*/
|
|
162
|
-
borderWidth?: number;
|
|
163
|
-
/**
|
|
164
|
-
* (Highcharts, Highstock, Highmaps, Gantt) A class name for the data
|
|
165
|
-
* label. Particularly in styled mode, this can be used to give each
|
|
166
|
-
* series' or point's data label unique styling. In addition to this
|
|
167
|
-
* option, a default color class name is added so that we can give the
|
|
168
|
-
* labels a contrast text shadow.
|
|
169
|
-
*/
|
|
170
|
-
className?: string;
|
|
171
|
-
/**
|
|
172
|
-
* (Highcharts, Highstock, Highmaps, Gantt) This options is deprecated.
|
|
173
|
-
* Use style.color instead.
|
|
174
|
-
*
|
|
175
|
-
* The text color for the data labels. Defaults to `undefined`. For
|
|
176
|
-
* certain series types, like column or map, the data labels can be
|
|
177
|
-
* drawn inside the points. In this case the data label will be drawn
|
|
178
|
-
* with maximum contrast by default. Additionally, it will be given a
|
|
179
|
-
* `text-outline` style with the opposite color, to further increase the
|
|
180
|
-
* contrast. This can be overridden by setting the `text-outline` style
|
|
181
|
-
* to `none` in the `dataLabels.style` option.
|
|
182
|
-
*
|
|
183
|
-
* @deprecated 10.3.0
|
|
184
|
-
*/
|
|
185
|
-
color?: Highcharts.ColorType;
|
|
186
|
-
/**
|
|
187
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Whether to hide data labels
|
|
188
|
-
* that are outside the plot area. By default, the data label is moved
|
|
189
|
-
* inside the plot area according to the overflow option.
|
|
190
|
-
*/
|
|
191
|
-
crop?: boolean;
|
|
192
|
-
/**
|
|
193
|
-
* (Highcharts, Highstock, Gantt) Whether to defer displaying the data
|
|
194
|
-
* labels until the initial series animation has finished. Setting to
|
|
195
|
-
* `false` renders the data label immediately. If set to `true` inherits
|
|
196
|
-
* the defer time set in plotOptions.series.animation.
|
|
197
|
-
*/
|
|
198
|
-
defer?: boolean;
|
|
199
|
-
/**
|
|
200
|
-
* (Highcharts, Highstock, Gantt) The distance of the data label from
|
|
201
|
-
* the data point. Note that the `padding` setting also affects the
|
|
202
|
-
* rendered distance, but is not visible unless the data label has a
|
|
203
|
-
* border or background.
|
|
204
|
-
*/
|
|
205
|
-
distance?: number;
|
|
206
|
-
/**
|
|
207
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Enable or disable the data
|
|
208
|
-
* labels.
|
|
209
|
-
*/
|
|
210
|
-
enabled?: boolean;
|
|
211
|
-
/**
|
|
212
|
-
* (Highcharts, Highstock, Highmaps, Gantt) A declarative filter to
|
|
213
|
-
* control of which data labels to display. The declarative filter is
|
|
214
|
-
* designed for use when callback functions are not available, like when
|
|
215
|
-
* the chart options require a pure JSON structure or for use with
|
|
216
|
-
* graphical editors. For programmatic control, use the `formatter`
|
|
217
|
-
* instead, and return `undefined` to disable a single data label. (see
|
|
218
|
-
* online documentation for example)
|
|
219
|
-
*/
|
|
220
|
-
filter?: Highcharts.DataLabelsFilterOptionsObject;
|
|
221
|
-
/**
|
|
222
|
-
* (Highcharts, Highstock, Highmaps, Gantt) A format string for the data
|
|
223
|
-
* label. Available variables are the same as for `formatter`.
|
|
224
|
-
*/
|
|
225
|
-
format?: string;
|
|
226
|
-
/**
|
|
227
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Callback JavaScript function
|
|
228
|
-
* to format the data label. Note that if a `format` is defined, the
|
|
229
|
-
* format takes precedence and the formatter is ignored.
|
|
230
|
-
*/
|
|
231
|
-
formatter?: Highcharts.DataLabelsFormatterCallbackFunction;
|
|
232
|
-
/**
|
|
233
|
-
* (Highcharts, Highstock, Highmaps, Gantt) For points with an extent,
|
|
234
|
-
* like columns or map areas, whether to align the data label inside the
|
|
235
|
-
* box or to the actual value point. Defaults to `false` in most cases,
|
|
236
|
-
* `true` in stacked columns.
|
|
237
|
-
*/
|
|
238
|
-
inside?: boolean;
|
|
53
|
+
interface PlotXrangeDataLabelsStyleOptions {
|
|
54
|
+
whiteSpace?: string;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* (Highcharts, Highstock, Gantt) Options for the connector in the _Series
|
|
58
|
+
* on point_ feature.
|
|
59
|
+
*
|
|
60
|
+
* In styled mode, the connector can be styled with the
|
|
61
|
+
* `.highcharts-connector-seriesonpoint` class name.
|
|
62
|
+
*/
|
|
63
|
+
interface PlotXrangeOnPointConnectorOptions {
|
|
239
64
|
/**
|
|
240
|
-
* (Highcharts, Highstock,
|
|
241
|
-
*
|
|
242
|
-
* overlap, only the one with the highest `labelrank` will be drawn.
|
|
65
|
+
* (Highcharts, Highstock, Gantt) A name for the dash style to use for
|
|
66
|
+
* the connector.
|
|
243
67
|
*/
|
|
244
|
-
|
|
68
|
+
dashstyle?: string;
|
|
245
69
|
/**
|
|
246
|
-
* (Highcharts, Highstock,
|
|
247
|
-
*
|
|
248
|
-
* applied only to series which support displaying null points.
|
|
249
|
-
* `heatmap` and `tilemap` supports `nullFormat` by default while the
|
|
250
|
-
* following series requires [#series.nullInteraction] set to `true`:
|
|
251
|
-
* `line`, `spline`, `area`, `area-spline`, `column`, `bar`, and
|
|
252
|
-
* `timeline`. Does not work with series that don't display null points,
|
|
253
|
-
* like `pie`.
|
|
70
|
+
* (Highcharts, Highstock, Gantt) Color of the connector line. By
|
|
71
|
+
* default it's the series' color.
|
|
254
72
|
*/
|
|
255
|
-
|
|
73
|
+
stroke?: string;
|
|
256
74
|
/**
|
|
257
|
-
* (Highcharts, Highstock,
|
|
258
|
-
* that defines formatting for points with the value of null. Works
|
|
259
|
-
* analogously to formatter. `nullFormatter` can be applied only to
|
|
260
|
-
* series which support displaying null points. `heatmap` and `tilemap`
|
|
261
|
-
* supports `nullFormatter` by default while the following series
|
|
262
|
-
* requires (series.nullInteraction)[#series.nullInteraction] set to
|
|
263
|
-
* `true`: `line`, `spline`, `area`, `area-spline`, `column`, `bar`, and
|
|
264
|
-
* `timeline`. Does not work with series that don't display null points,
|
|
265
|
-
* like `pie`.
|
|
75
|
+
* (Highcharts, Highstock, Gantt) Pixel width of the connector line.
|
|
266
76
|
*/
|
|
267
|
-
|
|
77
|
+
width?: number;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* (Highcharts, Highstock, Gantt) Options allowing to set a position and an
|
|
81
|
+
* offset of the series in the _Series on point_ feature.
|
|
82
|
+
*/
|
|
83
|
+
interface PlotXrangeOnPointPositionOptions {
|
|
268
84
|
/**
|
|
269
|
-
* (Highcharts, Highstock,
|
|
270
|
-
*
|
|
271
|
-
*
|
|
272
|
-
* will be moved inside the bar. To display data labels outside the plot
|
|
273
|
-
* area, set `crop` to `false` and `overflow` to `"allow"`.
|
|
85
|
+
* (Highcharts, Highstock, Gantt) Series center offset from the original
|
|
86
|
+
* x position. If defined, the connector line is drawn connecting
|
|
87
|
+
* original position with new position.
|
|
274
88
|
*/
|
|
275
|
-
|
|
89
|
+
offsetX?: number;
|
|
276
90
|
/**
|
|
277
|
-
* (Highcharts, Highstock,
|
|
278
|
-
*
|
|
279
|
-
*
|
|
280
|
-
*
|
|
281
|
-
* An array of numbers sets padding for the respective sides. An array
|
|
282
|
-
* of two numbers repeats the values for the horizontal and vertical
|
|
283
|
-
* sides.
|
|
91
|
+
* (Highcharts, Highstock, Gantt) Series center offset from the original
|
|
92
|
+
* y position. If defined, the connector line is drawn from original
|
|
93
|
+
* position to a new position.
|
|
284
94
|
*/
|
|
285
|
-
|
|
95
|
+
offsetY?: number;
|
|
286
96
|
/**
|
|
287
|
-
* (Highcharts, Highstock,
|
|
288
|
-
*
|
|
289
|
-
*
|
|
97
|
+
* (Highcharts, Highstock, Gantt) X position of the series center. By
|
|
98
|
+
* default, the series is displayed on the point that it is connected
|
|
99
|
+
* to.
|
|
290
100
|
*/
|
|
291
|
-
|
|
101
|
+
x?: number;
|
|
292
102
|
/**
|
|
293
|
-
* (Highcharts, Highstock,
|
|
294
|
-
*
|
|
295
|
-
*
|
|
103
|
+
* (Highcharts, Highstock, Gantt) Y position of the series center. By
|
|
104
|
+
* default, the series is displayed on the point that it is connected
|
|
105
|
+
* to.
|
|
296
106
|
*/
|
|
297
|
-
|
|
107
|
+
y?: number;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* (Highcharts, Highstock, Gantt) A partial fill for each point, typically
|
|
111
|
+
* used to visualize how much of a task is performed. The partial fill
|
|
112
|
+
* object can be set either on series or point level. When set as a number,
|
|
113
|
+
* works as `{ amount: number }`.
|
|
114
|
+
*/
|
|
115
|
+
interface PlotXrangePartialFillOptions {
|
|
298
116
|
/**
|
|
299
|
-
* (Highcharts, Highstock,
|
|
300
|
-
*
|
|
301
|
-
* can be an object configuration containing `color`, `offsetX`,
|
|
302
|
-
* `offsetY`, `opacity` and `width`.
|
|
117
|
+
* (Highcharts, Highstock, Gantt) The fill color to be used for partial
|
|
118
|
+
* fills. Defaults to a darker shade of the point color.
|
|
303
119
|
*/
|
|
304
|
-
|
|
120
|
+
fill?: Highcharts.ColorType;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* (Highcharts, Highstock) Animation when not hovering over the marker.
|
|
124
|
+
*/
|
|
125
|
+
interface PlotXrangeStatesInactiveAnimationOptions {
|
|
305
126
|
/**
|
|
306
|
-
* (Highcharts, Highstock
|
|
307
|
-
*
|
|
308
|
-
*
|
|
127
|
+
* (Highcharts, Highstock) The duration of the hover animation in
|
|
128
|
+
* milliseconds. By default the hover state animates quickly in, and
|
|
129
|
+
* slowly back to normal.
|
|
309
130
|
*/
|
|
310
|
-
|
|
131
|
+
duration?: number;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* (Highcharts, Highstock, Gantt) For series on datetime axes, the date
|
|
135
|
+
* format in the tooltip's header will by default be guessed based on the
|
|
136
|
+
* closest data points. This member gives the default string representations
|
|
137
|
+
* used for each unit. For an overview of the string or object
|
|
138
|
+
* configuration, see dateFormat.
|
|
139
|
+
*/
|
|
140
|
+
interface PlotXrangeTooltipDateTimeLabelFormatsOptions {
|
|
141
|
+
day?: string;
|
|
142
|
+
hour?: string;
|
|
143
|
+
millisecond?: string;
|
|
144
|
+
minute?: string;
|
|
145
|
+
month?: string;
|
|
146
|
+
second?: string;
|
|
147
|
+
week?: string;
|
|
148
|
+
year?: string;
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* (Highcharts, Highstock, Gantt) Positioning options for fixed tooltip,
|
|
152
|
+
* taking effect only when tooltip.fixed is `true`.
|
|
153
|
+
*/
|
|
154
|
+
interface PlotXrangeTooltipPositionOptions {
|
|
311
155
|
/**
|
|
312
|
-
* (Highcharts, Highstock,
|
|
313
|
-
*
|
|
314
|
-
* Highcharts picks up and applies the maximum contrast to the
|
|
315
|
-
* underlying point item, for example the bar in a bar chart.
|
|
316
|
-
*
|
|
317
|
-
* The `textOutline` is a pseudo property that applies an outline of the
|
|
318
|
-
* given width with the given color, which by default is the maximum
|
|
319
|
-
* contrast to the text. So a bright text color will result in a black
|
|
320
|
-
* text outline for maximum readability on a mixed background. In some
|
|
321
|
-
* cases, especially with grayscale text, the text outline doesn't work
|
|
322
|
-
* well, in which cases it can be disabled by setting it to `"none"`.
|
|
323
|
-
* When `useHTML` is true, the `textOutline` will not be picked up. In
|
|
324
|
-
* this, case, the same effect can be achieved through the `text-shadow`
|
|
325
|
-
* CSS property. As a complementary or alternative to the `textOutline`,
|
|
326
|
-
* a `dataLabels.backgroundColor` can be used. It provides a more calm
|
|
327
|
-
* impression and ensures readable text label, at the cost of a risk of
|
|
328
|
-
* overshadowing the underlying chart elements.
|
|
329
|
-
*
|
|
330
|
-
* For some series types, where each point has an extent, like for
|
|
331
|
-
* example tree maps, the data label may overflow the point. There are
|
|
332
|
-
* two strategies for handling overflow. By default, the text will wrap
|
|
333
|
-
* to multiple lines. The other strategy is to set `style.textOverflow`
|
|
334
|
-
* to `ellipsis`, which will keep the text on one line plus it will
|
|
335
|
-
* break inside long words.
|
|
156
|
+
* (Highcharts, Highstock, Gantt) The horizontal alignment of the fixed
|
|
157
|
+
* tooltip.
|
|
336
158
|
*/
|
|
337
|
-
|
|
159
|
+
align?: Highcharts.AlignValue;
|
|
338
160
|
/**
|
|
339
|
-
* (Highcharts, Highstock,
|
|
340
|
-
*
|
|
341
|
-
* disabled for a label that follows a path.
|
|
342
|
-
*
|
|
343
|
-
* **Note:** Only SVG-based renderer supports this option. Setting
|
|
344
|
-
* `useHTML` to true will disable this option.
|
|
161
|
+
* (Highcharts, Highstock, Gantt) What the fixed tooltip alignment
|
|
162
|
+
* should be relative to.
|
|
345
163
|
*
|
|
346
|
-
*
|
|
347
|
-
*
|
|
348
|
-
*
|
|
164
|
+
* The default, `pane`, means that it is aligned within the plot area
|
|
165
|
+
* for that given series. If the tooltip is split (as default in Stock
|
|
166
|
+
* charts), each partial tooltip is aligned within the series' pane.
|
|
349
167
|
*/
|
|
350
|
-
|
|
168
|
+
relativeTo?: Highcharts.OptionsRelativeToValue;
|
|
351
169
|
/**
|
|
352
|
-
* (Highcharts, Highstock,
|
|
353
|
-
*
|
|
170
|
+
* (Highcharts, Highstock, Gantt) The vertical alignment of the fixed
|
|
171
|
+
* tooltip.
|
|
354
172
|
*/
|
|
355
|
-
|
|
173
|
+
verticalAlign?: Highcharts.VerticalAlignValue;
|
|
356
174
|
/**
|
|
357
|
-
* (Highcharts, Highstock,
|
|
358
|
-
*
|
|
359
|
-
*
|
|
360
|
-
* is above positive values and below negative values.
|
|
361
|
-
*/
|
|
362
|
-
verticalAlign?: string;
|
|
363
|
-
/**
|
|
364
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The x position offset of the
|
|
365
|
-
* label relative to the point in pixels.
|
|
175
|
+
* (Highcharts, Highstock, Gantt) X pixel offset from the given
|
|
176
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
177
|
+
* avoid the tooltip overlapping other elements.
|
|
366
178
|
*/
|
|
367
179
|
x?: number;
|
|
368
180
|
/**
|
|
369
|
-
* (Highcharts, Highstock,
|
|
370
|
-
*
|
|
181
|
+
* (Highcharts, Highstock, Gantt) Y pixel offset from the given
|
|
182
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
183
|
+
* avoid the tooltip overlapping other elements.
|
|
371
184
|
*/
|
|
372
185
|
y?: number;
|
|
373
|
-
/**
|
|
374
|
-
* (Highcharts, Highstock, Highmaps, Gantt) The z index of the data
|
|
375
|
-
* labels group. Does not apply below series level options.
|
|
376
|
-
*
|
|
377
|
-
* Use a `zIndex` of 6 to display it above the series, or use a `zIndex`
|
|
378
|
-
* of 2 to display it behind the series.
|
|
379
|
-
*/
|
|
380
|
-
zIndex?: number;
|
|
381
186
|
}
|
|
382
187
|
/**
|
|
383
|
-
* (Highcharts, Highstock
|
|
384
|
-
* defaults to the series color, or a contrast color if `onArea`.
|
|
385
|
-
*/
|
|
386
|
-
interface PlotXrangeLabelStyleOptions {
|
|
387
|
-
fontSize?: number;
|
|
388
|
-
fontWeight?: string;
|
|
389
|
-
}
|
|
390
|
-
/**
|
|
391
|
-
* (Highcharts, Highstock, Gantt) Options for the _Series on point_ feature.
|
|
392
|
-
* Only `pie` and `sunburst` series are supported at this moment.
|
|
188
|
+
* (Highcharts, Highstock) Animation when hovering over the marker.
|
|
393
189
|
*/
|
|
394
|
-
interface
|
|
395
|
-
|
|
396
|
-
* (Highcharts, Highstock, Gantt) Options for the connector in the
|
|
397
|
-
* _Series on point_ feature.
|
|
398
|
-
*
|
|
399
|
-
* In styled mode, the connector can be styled with the
|
|
400
|
-
* `.highcharts-connector-seriesonpoint` class name.
|
|
401
|
-
*/
|
|
402
|
-
connectorOptions?: (Highcharts.PlotXrangeOnPointConnectorOptions|Highcharts.SVGAttributes);
|
|
403
|
-
/**
|
|
404
|
-
* (Highcharts, Highstock, Gantt) The `id` of the point that we connect
|
|
405
|
-
* the series to. Only points with a given `plotX` and `plotY` values
|
|
406
|
-
* and map points are valid.
|
|
407
|
-
*/
|
|
408
|
-
id?: string;
|
|
409
|
-
/**
|
|
410
|
-
* (Highcharts, Highstock, Gantt) Options allowing to set a position and
|
|
411
|
-
* an offset of the series in the _Series on point_ feature.
|
|
412
|
-
*/
|
|
413
|
-
position?: (object|Highcharts.PlotXrangeOnPointPositionOptions);
|
|
190
|
+
interface SeriesXrangeDataMarkerStatesHoverAnimationOptions {
|
|
191
|
+
duration?: number;
|
|
414
192
|
}
|
|
415
193
|
/**
|
|
416
|
-
* (Highcharts, Highstock, Gantt)
|
|
417
|
-
*
|
|
194
|
+
* (Highcharts, Highstock, Gantt) An `xrange` series. If the type option is
|
|
195
|
+
* not specified, it is inherited from chart.type.
|
|
418
196
|
*
|
|
419
197
|
* Configuration options for the series are given in three levels:
|
|
420
198
|
*
|
|
@@ -435,708 +213,40 @@ declare module "../highcharts.src" {
|
|
|
435
213
|
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
436
214
|
* specific type can be done by checking the `type` property. (see online
|
|
437
215
|
* documentation for example)
|
|
216
|
+
*
|
|
217
|
+
* You have to extend the `SeriesXrangeOptions` via an interface to allow
|
|
218
|
+
* custom properties: ``` declare interface SeriesXrangeOptions {
|
|
219
|
+
* customProperty: string; }
|
|
220
|
+
*
|
|
438
221
|
*/
|
|
439
|
-
interface PlotXrangeOptions {
|
|
440
|
-
/**
|
|
441
|
-
* (Highcharts, Highstock, Gantt) Accessibility options for a series.
|
|
442
|
-
*/
|
|
443
|
-
accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
|
|
444
|
-
/**
|
|
445
|
-
* (Highcharts, Highstock, Gantt) Allow this series' points to be
|
|
446
|
-
* selected by clicking on the graphic (columns, point markers, pie
|
|
447
|
-
* slices, map areas etc).
|
|
448
|
-
*
|
|
449
|
-
* The selected points can be handled by point select and unselect
|
|
450
|
-
* events, or collectively by the getSelectedPoints function.
|
|
451
|
-
*
|
|
452
|
-
* And alternative way of selecting points is through dragging.
|
|
453
|
-
*/
|
|
454
|
-
allowPointSelect?: boolean;
|
|
455
|
-
/**
|
|
456
|
-
* (Highcharts, Highstock, Gantt) Enable or disable the initial
|
|
457
|
-
* animation when a series is displayed. The animation can also be set
|
|
458
|
-
* as a configuration object. Please note that this option only applies
|
|
459
|
-
* to the initial animation of the series itself. For other animations,
|
|
460
|
-
* see chart.animation and the animation parameter under the API
|
|
461
|
-
* methods. The following properties are supported:
|
|
462
|
-
*
|
|
463
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
464
|
-
*
|
|
465
|
-
* - `duration`: The duration of the animation in milliseconds.
|
|
466
|
-
* (Defaults to `1000`)
|
|
467
|
-
*
|
|
468
|
-
* - `easing`: Can be a string reference to an easing function set on
|
|
469
|
-
* the `Math` object or a function. See the _Custom easing function_
|
|
470
|
-
* demo below. (Defaults to `easeInOutSine`)
|
|
471
|
-
*
|
|
472
|
-
* Due to poor performance, animation is disabled in old IE browsers for
|
|
473
|
-
* several chart types.
|
|
474
|
-
*/
|
|
475
|
-
animation?: (boolean|Highcharts.AnimationOptionsObject);
|
|
476
|
-
/**
|
|
477
|
-
* (Highcharts, Highstock, Gantt) For some series, there is a limit that
|
|
478
|
-
* shuts down animation by default when the total number of points in
|
|
479
|
-
* the chart is too high. For example, for a column chart and its
|
|
480
|
-
* derivatives, animation does not run if there is more than 250 points
|
|
481
|
-
* totally. To disable this cap, set `animationLimit` to `Infinity`.
|
|
482
|
-
* This option works if animation is fired on individual points, not on
|
|
483
|
-
* a group of points like e.g. during the initial animation.
|
|
484
|
-
*/
|
|
485
|
-
animationLimit?: number;
|
|
486
|
-
/**
|
|
487
|
-
* (Highcharts, Highstock, Gantt) The color of the border surrounding
|
|
488
|
-
* each column or bar.
|
|
489
|
-
*
|
|
490
|
-
* In styled mode, the border stroke can be set with the
|
|
491
|
-
* `.highcharts-point` rule.
|
|
492
|
-
*/
|
|
493
|
-
borderColor?: Highcharts.ColorType;
|
|
494
|
-
/**
|
|
495
|
-
* (Highcharts, Highstock, Gantt) The corner radius of the border
|
|
496
|
-
* surrounding each column or bar. A number signifies pixels. A
|
|
497
|
-
* percentage string, like for example `50%`, signifies a relative size.
|
|
498
|
-
* For columns this is relative to the column width, for pies it is
|
|
499
|
-
* relative to the radius and the inner radius.
|
|
500
|
-
*/
|
|
501
|
-
borderRadius?: number;
|
|
502
|
-
/**
|
|
503
|
-
* (Highcharts, Highstock, Gantt) The width of the border surrounding
|
|
504
|
-
* each column or bar. Defaults to `1` when there is room for a border,
|
|
505
|
-
* but to `0` when the columns are so dense that a border would cover
|
|
506
|
-
* the next column.
|
|
507
|
-
*
|
|
508
|
-
* In styled mode, the stroke width can be set with the
|
|
509
|
-
* `.highcharts-point` rule.
|
|
510
|
-
*/
|
|
511
|
-
borderWidth?: number;
|
|
512
|
-
/**
|
|
513
|
-
* (Highcharts, Highstock, Gantt) When `true`, the columns will center
|
|
514
|
-
* in the category, ignoring null or missing points. When `false`, space
|
|
515
|
-
* will be reserved for null or missing points.
|
|
516
|
-
*/
|
|
517
|
-
centerInCategory?: boolean;
|
|
518
|
-
/**
|
|
519
|
-
* (Highcharts, Highstock, Gantt) An additional class name to apply to
|
|
520
|
-
* the series' graphical elements. This option does not replace default
|
|
521
|
-
* class names of the graphical element. Changes to the series' color
|
|
522
|
-
* will also be reflected in a chart's legend and tooltip.
|
|
523
|
-
*/
|
|
524
|
-
className?: string;
|
|
525
|
-
/**
|
|
526
|
-
* (Highcharts, Highstock, Gantt) Disable this option to allow series
|
|
527
|
-
* rendering in the whole plotting area.
|
|
528
|
-
*
|
|
529
|
-
* **Note:** Clipping should be always enabled when chart.zoomType is
|
|
530
|
-
* set
|
|
531
|
-
*/
|
|
532
|
-
clip?: boolean;
|
|
533
|
-
/**
|
|
534
|
-
* (Highcharts, Highstock, Gantt) The main color of the series. In line
|
|
535
|
-
* type series it applies to the line and the point markers unless
|
|
536
|
-
* otherwise specified. In bar type series it applies to the bars unless
|
|
537
|
-
* a color is specified per point. The default value is pulled from the
|
|
538
|
-
* `options.colors` array.
|
|
539
|
-
*
|
|
540
|
-
* In styled mode, the color can be defined by the colorIndex option.
|
|
541
|
-
* Also, the series color can be set with the `.highcharts-series`,
|
|
542
|
-
* `.highcharts-color-{n}`, `.highcharts-{type}-series` or
|
|
543
|
-
* `.highcharts-series-{n}` class, or individual classes given by the
|
|
544
|
-
* `className` option.
|
|
545
|
-
*/
|
|
546
|
-
color?: Highcharts.ColorType;
|
|
222
|
+
interface SeriesXrangeOptions extends Highcharts.PlotXrangeOptions, Highcharts.SeriesOptions {
|
|
547
223
|
/**
|
|
548
|
-
* (Highcharts, Highstock,
|
|
549
|
-
*
|
|
550
|
-
*
|
|
551
|
-
* axis in the colorAxis array, with 0 being the first. Set this option
|
|
552
|
-
* to false to prevent a series from connecting to the default color
|
|
553
|
-
* axis.
|
|
224
|
+
* (Highcharts, Highstock, Gantt) An array of data points for the
|
|
225
|
+
* series. For the `xrange` series type, points can be given in the
|
|
226
|
+
* following ways:
|
|
554
227
|
*
|
|
555
|
-
*
|
|
556
|
-
*
|
|
228
|
+
* 1. An array of objects with named values. The objects are point
|
|
229
|
+
* configuration objects as seen below. (see online documentation for
|
|
230
|
+
* example)
|
|
557
231
|
*/
|
|
558
|
-
|
|
232
|
+
data?: Array<Highcharts.XrangePointOptionsObject>;
|
|
559
233
|
/**
|
|
560
|
-
*
|
|
561
|
-
* makes all points of the same Y-axis category the same color.
|
|
234
|
+
* Not available
|
|
562
235
|
*/
|
|
563
|
-
|
|
236
|
+
depth?: undefined;
|
|
564
237
|
/**
|
|
565
|
-
*
|
|
566
|
-
* index to use for the series, so its graphic representations are given
|
|
567
|
-
* the class name `highcharts-color-{n}`.
|
|
568
|
-
*
|
|
569
|
-
* Since v11, CSS variables on the form `--highcharts-color-{n}` make
|
|
570
|
-
* changing the color scheme very convenient.
|
|
571
|
-
*/
|
|
572
|
-
colorIndex?: number;
|
|
573
|
-
/**
|
|
574
|
-
* (Highcharts, Highstock, Highmaps) Determines what data value should
|
|
575
|
-
* be used to calculate point color if `colorAxis` is used. Requires to
|
|
576
|
-
* set `min` and `max` if some custom point property is used or if
|
|
577
|
-
* approximation for data grouping is set to `'sum'`.
|
|
238
|
+
* Not available
|
|
578
239
|
*/
|
|
579
|
-
|
|
240
|
+
edgeColor?: undefined;
|
|
580
241
|
/**
|
|
581
|
-
*
|
|
582
|
-
* specific color set to apply instead of the global colors when
|
|
583
|
-
* colorByPoint is true.
|
|
584
|
-
*/
|
|
585
|
-
colors?: Array<Highcharts.ColorType>;
|
|
586
|
-
/**
|
|
587
|
-
* (Highstock) Compare the values of the series against the first
|
|
588
|
-
* non-null, non- zero value in the visible range. The y axis will show
|
|
589
|
-
* percentage or absolute change depending on whether `compare` is set
|
|
590
|
-
* to `"percent"` or `"value"`. When this is applied to multiple series,
|
|
591
|
-
* it allows comparing the development of the series against each other.
|
|
592
|
-
* Adds a `change` field to every point object. If a `compare` value is
|
|
593
|
-
* not set on a linked series, it will be inherited from the parent
|
|
594
|
-
* series.
|
|
595
|
-
*/
|
|
596
|
-
compare?: Highcharts.OptionsCompareValue;
|
|
597
|
-
/**
|
|
598
|
-
* (Highstock) When compare is `percent`, this option dictates whether
|
|
599
|
-
* to use 0 or 100 as the base of comparison.
|
|
600
|
-
*/
|
|
601
|
-
compareBase?: (0|100);
|
|
602
|
-
/**
|
|
603
|
-
* (Highstock) Defines if comparison should start from the first point
|
|
604
|
-
* within the visible range or should start from the last point
|
|
605
|
-
* **before** the range.
|
|
606
|
-
*
|
|
607
|
-
* In other words, this flag determines if first point within the
|
|
608
|
-
* visible range will have 0% (`compareStart=true`) or should have been
|
|
609
|
-
* already calculated according to the previous point
|
|
610
|
-
* (`compareStart=false`).
|
|
611
|
-
*/
|
|
612
|
-
compareStart?: boolean;
|
|
613
|
-
/**
|
|
614
|
-
* (Gantt) Override Pathfinder connector options for a series. Requires
|
|
615
|
-
* Highcharts Gantt to be loaded.
|
|
616
|
-
*/
|
|
617
|
-
connectors?: Highcharts.SeriesConnectorsOptionsObject;
|
|
618
|
-
/**
|
|
619
|
-
* (Highstock) Cumulative Sum feature replaces points' values with the
|
|
620
|
-
* following formula: `sum of all previous points' values + current
|
|
621
|
-
* point's value`. Works only for points in a visible range. Adds the
|
|
622
|
-
* `cumulativeSum` field to each point object that can be accessed e.g.
|
|
623
|
-
* in the tooltip.pointFormat.
|
|
624
|
-
*
|
|
625
|
-
* With `dataGrouping` enabled, default grouping approximation is set to
|
|
626
|
-
* `sum`.
|
|
627
|
-
*/
|
|
628
|
-
cumulative?: boolean;
|
|
629
|
-
/**
|
|
630
|
-
* (Highstock) Defines if cumulation should start from the first point
|
|
631
|
-
* within the visible range or should start from the last point
|
|
632
|
-
* **before** the range.
|
|
633
|
-
*
|
|
634
|
-
* In other words, this flag determines if first point within the
|
|
635
|
-
* visible range will start at 0 (`cumulativeStart=true`) or should have
|
|
636
|
-
* been already calculated according to the previous point
|
|
637
|
-
* (`cumulativeStart=false`).
|
|
638
|
-
*/
|
|
639
|
-
cumulativeStart?: boolean;
|
|
640
|
-
/**
|
|
641
|
-
* (Highcharts, Highstock, Gantt) You can set the cursor to "pointer" if
|
|
642
|
-
* you have click events attached to the series, to signal to the user
|
|
643
|
-
* that the points and lines can be clicked.
|
|
644
|
-
*
|
|
645
|
-
* In styled mode, the series cursor can be set with the same classes as
|
|
646
|
-
* listed under series.color.
|
|
242
|
+
* Not available
|
|
647
243
|
*/
|
|
648
|
-
|
|
244
|
+
edgeWidth?: undefined;
|
|
649
245
|
/**
|
|
650
|
-
* (Highcharts, Highstock, Gantt)
|
|
651
|
-
*
|
|
652
|
-
*
|
|
246
|
+
* (Highcharts, Highstock, Highmaps, Gantt) This property is only in
|
|
247
|
+
* TypeScript non-optional and might be `undefined` in series objects
|
|
248
|
+
* from unknown sources.
|
|
653
249
|
*/
|
|
654
|
-
|
|
655
|
-
/**
|
|
656
|
-
* (Highcharts, Highstock, Gantt) Name of the dash style to use for the
|
|
657
|
-
* graph, or for some series types the outline of each shape.
|
|
658
|
-
*
|
|
659
|
-
* In styled mode, the stroke dash-array can be set with the same
|
|
660
|
-
* classes as listed under series.color.
|
|
661
|
-
*/
|
|
662
|
-
dashStyle?: Highcharts.DashStyleValue;
|
|
663
|
-
/**
|
|
664
|
-
* (Highstock) Data grouping is the concept of sampling the data values
|
|
665
|
-
* into larger blocks in order to ease readability and increase
|
|
666
|
-
* performance of the JavaScript charts. Highcharts Stock by default
|
|
667
|
-
* applies data grouping when the points become closer than a certain
|
|
668
|
-
* pixel value, determined by the `groupPixelWidth` option.
|
|
669
|
-
*
|
|
670
|
-
* If data grouping is applied, the grouping information of grouped
|
|
671
|
-
* points can be read from the Point.dataGroup. If point options other
|
|
672
|
-
* than the data itself are set, for example `name` or `color` or custom
|
|
673
|
-
* properties, the grouping logic doesn't know how to group it. In this
|
|
674
|
-
* case the options of the first point instance are copied over to the
|
|
675
|
-
* group point. This can be altered through a custom `approximation`
|
|
676
|
-
* callback function.
|
|
677
|
-
*/
|
|
678
|
-
dataGrouping?: Highcharts.DataGroupingOptionsObject;
|
|
679
|
-
/**
|
|
680
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
681
|
-
* labels, appearing next to each data point.
|
|
682
|
-
*
|
|
683
|
-
* Since v6.2.0, multiple data labels can be applied to each single
|
|
684
|
-
* point by defining them as an array of configs.
|
|
685
|
-
*
|
|
686
|
-
* In styled mode, the data labels can be styled with the
|
|
687
|
-
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
688
|
-
* (see example).
|
|
689
|
-
*/
|
|
690
|
-
dataLabels?: (Highcharts.PlotXrangeDataLabelsOptions|Array<Highcharts.PlotXrangeDataLabelsOptions>);
|
|
691
|
-
/**
|
|
692
|
-
* (Highcharts, Highstock, Gantt) The mapping between the data table and
|
|
693
|
-
* the series data points. This is used in conjunction with the
|
|
694
|
-
* `dataTable` option (on chart or series level) to map columns from the
|
|
695
|
-
* data table to the properties of the data points. The keys of the
|
|
696
|
-
* `dataMapping` object correspond to the properties of the data points
|
|
697
|
-
* (e.g. `x`, `y`, `name`), and the values are objects that specify
|
|
698
|
-
* which column from which data table to use for that property.
|
|
699
|
-
*
|
|
700
|
-
* The keys can also be nested paths, for example `dataLabel.format`, to
|
|
701
|
-
* map to nested properties of the data points.
|
|
702
|
-
*
|
|
703
|
-
* The values can also be strings, in which case they are interpreted as
|
|
704
|
-
* column id's from the first data table.
|
|
705
|
-
*
|
|
706
|
-
* A typical use case is that multiple series share a common column,
|
|
707
|
-
* like `name` or `x`. In this case, to avoid repetition, the common
|
|
708
|
-
* column can be applied in `plotOptions.series.dataMapping` and the
|
|
709
|
-
* individual series can specify only the columns that are unique to
|
|
710
|
-
* them.
|
|
711
|
-
*
|
|
712
|
-
* The series name defaults to the column ID of the main data column in
|
|
713
|
-
* the mapping. The main data column is typically the `y` data for
|
|
714
|
-
* cartesian series, or `value` for map series. For example, if the
|
|
715
|
-
* mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
|
|
716
|
-
* online documentation for example)
|
|
717
|
-
*
|
|
718
|
-
* If the columns of the DataTable have keys matching the series keys,
|
|
719
|
-
* the data mapping is not necessary. For example, this DataTable will
|
|
720
|
-
* connect directly to the series' `x` and `y` keys: (see online
|
|
721
|
-
* documentation for example)
|
|
722
|
-
*/
|
|
723
|
-
dataMapping?: Highcharts.DataMappingOptionsObject;
|
|
724
|
-
/**
|
|
725
|
-
* (Highcharts, Highstock, Gantt) Deprecated. Use
|
|
726
|
-
* plotOptions.series.accessibility.description instead.
|
|
727
|
-
*
|
|
728
|
-
* A description of the series to add to the screen reader information
|
|
729
|
-
* about the series.
|
|
730
|
-
*
|
|
731
|
-
* @deprecated 8.0.0
|
|
732
|
-
*/
|
|
733
|
-
description?: string;
|
|
734
|
-
/**
|
|
735
|
-
* (Highcharts, Highstock, Gantt) The draggable-points module allows
|
|
736
|
-
* points to be moved around or modified in the chart. In addition to
|
|
737
|
-
* the options mentioned under the `dragDrop` API structure, the module
|
|
738
|
-
* fires three events, point.dragStart, point.drag and point.drop.
|
|
739
|
-
*/
|
|
740
|
-
dragDrop?: Highcharts.SeriesDragDropOptionsObject;
|
|
741
|
-
/**
|
|
742
|
-
* (Highcharts, Highstock, Gantt) Enable or disable the mouse tracking
|
|
743
|
-
* for a specific series. This includes point tooltips and click events
|
|
744
|
-
* on graphs and points. For large datasets it improves performance.
|
|
745
|
-
*/
|
|
746
|
-
enableMouseTracking?: boolean;
|
|
747
|
-
/**
|
|
748
|
-
* (Highcharts, Highstock, Gantt) General event handlers for the series
|
|
749
|
-
* items. These event hooks can also be attached to the series at run
|
|
750
|
-
* time using the `Highcharts.addEvent` function.
|
|
751
|
-
*/
|
|
752
|
-
events?: Highcharts.SeriesEventsOptionsObject;
|
|
753
|
-
/**
|
|
754
|
-
* (Highcharts, Highstock, Gantt) Whether to group non-stacked columns
|
|
755
|
-
* or to let them render independent of each other. Non-grouped columns
|
|
756
|
-
* will be laid out individually and overlap each other.
|
|
757
|
-
*/
|
|
758
|
-
grouping?: boolean;
|
|
759
|
-
/**
|
|
760
|
-
* (Highcharts, Highstock, Gantt) Padding between each value groups, in
|
|
761
|
-
* x axis units.
|
|
762
|
-
*/
|
|
763
|
-
groupPadding?: number;
|
|
764
|
-
/**
|
|
765
|
-
* (Highcharts) The spacing between columns on the Z Axis in a 3D chart.
|
|
766
|
-
*/
|
|
767
|
-
groupZPadding?: number;
|
|
768
|
-
/**
|
|
769
|
-
* (Highcharts, Highstock, Gantt) Highlight only the hovered point and
|
|
770
|
-
* fade the remaining points.
|
|
771
|
-
*
|
|
772
|
-
* Scatter-type series require enabling the 'inactive' marker state and
|
|
773
|
-
* adjusting opacity. Note that this approach could affect performance
|
|
774
|
-
* with large datasets.
|
|
775
|
-
*/
|
|
776
|
-
inactiveOtherPoints?: boolean;
|
|
777
|
-
/**
|
|
778
|
-
* (Highcharts, Highstock, Gantt) When set to `false` will prevent the
|
|
779
|
-
* series data from being included in any form of data export.
|
|
780
|
-
*
|
|
781
|
-
* Since version 6.0.0 until 7.1.0 the option was existing undocumented
|
|
782
|
-
* as `includeInCSVExport`.
|
|
783
|
-
*/
|
|
784
|
-
includeInDataExport?: boolean;
|
|
785
|
-
/**
|
|
786
|
-
* (Highcharts, Highstock, Gantt) An array specifying which option maps
|
|
787
|
-
* to which key in the data point array. This makes it convenient to
|
|
788
|
-
* work with unstructured data arrays from different sources.
|
|
789
|
-
*/
|
|
790
|
-
keys?: Array<string>;
|
|
791
|
-
/**
|
|
792
|
-
* (Highcharts, Highstock, Gantt) Series labels are placed as close to
|
|
793
|
-
* the series as possible in a natural way, seeking to avoid other
|
|
794
|
-
* series. The goal of this feature is to make the chart more easily
|
|
795
|
-
* readable, like if a human designer placed the labels in the optimal
|
|
796
|
-
* position.
|
|
797
|
-
*
|
|
798
|
-
* The series labels currently work with series types having a `graph`
|
|
799
|
-
* or an `area`.
|
|
800
|
-
*/
|
|
801
|
-
label?: Highcharts.SeriesLabelOptionsObject;
|
|
802
|
-
/**
|
|
803
|
-
* (Highstock) The line marks the last price from all points.
|
|
804
|
-
*/
|
|
805
|
-
lastPrice?: Highcharts.SeriesLastPriceOptionsObject;
|
|
806
|
-
/**
|
|
807
|
-
* (Highstock) The line marks the last price from visible range of
|
|
808
|
-
* points.
|
|
809
|
-
*/
|
|
810
|
-
lastVisiblePrice?: Highcharts.SeriesLastVisiblePriceOptionsObject;
|
|
811
|
-
/**
|
|
812
|
-
* (Highcharts, Highstock, Gantt) What type of legend symbol to render
|
|
813
|
-
* for this series. Can be one of `areaMarker`, `lineMarker` or
|
|
814
|
-
* `rectangle`.
|
|
815
|
-
*/
|
|
816
|
-
legendSymbol?: Highcharts.OptionsLegendSymbolValue;
|
|
817
|
-
/**
|
|
818
|
-
* (Highcharts, Highstock, Highmaps) Defines the color of the legend
|
|
819
|
-
* symbol for this series. Defaults to undefined, in which case the
|
|
820
|
-
* series color is used. Does not work with styled mode.
|
|
821
|
-
*/
|
|
822
|
-
legendSymbolColor?: Highcharts.ColorType;
|
|
823
|
-
/**
|
|
824
|
-
* (Highcharts, Highstock, Gantt) The id of another series to link to.
|
|
825
|
-
* Additionally, the value can be ":previous" to link to the previous
|
|
826
|
-
* series. When two series are linked, only the first one appears in the
|
|
827
|
-
* legend. Toggling the visibility of this also toggles the linked
|
|
828
|
-
* series.
|
|
829
|
-
*
|
|
830
|
-
* If master series uses data sorting and linked series does not have
|
|
831
|
-
* its own sorting definition, the linked series will be sorted in the
|
|
832
|
-
* same order as the master one.
|
|
833
|
-
*
|
|
834
|
-
* If a `compare` value is not set on a linked series, it will be
|
|
835
|
-
* inherited from the parent series.
|
|
836
|
-
*/
|
|
837
|
-
linkedTo?: string;
|
|
838
|
-
/**
|
|
839
|
-
* (Highcharts, Highstock, Gantt) The maximum allowed pixel width for a
|
|
840
|
-
* column, translated to the height of a bar in a bar chart. This
|
|
841
|
-
* prevents the columns from becoming too wide when there is a small
|
|
842
|
-
* number of points in the chart.
|
|
843
|
-
*/
|
|
844
|
-
maxPointWidth?: number;
|
|
845
|
-
/**
|
|
846
|
-
* (Highcharts, Highstock, Gantt) The minimal height for a column or
|
|
847
|
-
* width for a bar. By default, 0 values are not shown. To visualize a 0
|
|
848
|
-
* (or close to zero) point, set the minimal point length to a pixel
|
|
849
|
-
* value like 3\. In stacked column charts, minPointLength might not be
|
|
850
|
-
* respected for tightly packed values.
|
|
851
|
-
*/
|
|
852
|
-
minPointLength?: number;
|
|
853
|
-
/**
|
|
854
|
-
* (Highstock) Options for the corresponding navigator series if
|
|
855
|
-
* `showInNavigator` is `true` for this series. Available options are
|
|
856
|
-
* the same as any series, documented at plotOptions and series.
|
|
857
|
-
*
|
|
858
|
-
* These options are merged with options in navigator.series, and will
|
|
859
|
-
* take precedence if the same option is defined both places.
|
|
860
|
-
*/
|
|
861
|
-
navigatorOptions?: Highcharts.PlotSeriesOptions;
|
|
862
|
-
/**
|
|
863
|
-
* (Highcharts, Highstock) Whether or not data-points with the value of
|
|
864
|
-
* `null` should be interactive. When this is set to `true`, tooltips
|
|
865
|
-
* may highlight these points, and this option also enables keyboard
|
|
866
|
-
* navigation for such points. Format options for such points include
|
|
867
|
-
* `nullFormat` and `nullFormatter`. Works for these series: `line`,
|
|
868
|
-
* `spline`, `area`, `area-spline`, `column`, `bar`, and `timeline`.
|
|
869
|
-
*/
|
|
870
|
-
nullInteraction?: (boolean|undefined);
|
|
871
|
-
/**
|
|
872
|
-
* (Highcharts, Highstock, Gantt) Options for the _Series on point_
|
|
873
|
-
* feature. Only `pie` and `sunburst` series are supported at this
|
|
874
|
-
* moment.
|
|
875
|
-
*/
|
|
876
|
-
onPoint?: (object|Highcharts.PlotXrangeOnPointOptions);
|
|
877
|
-
/**
|
|
878
|
-
* (Highcharts, Highstock, Gantt) Opacity of a series parts: line, fill
|
|
879
|
-
* (e.g. area) and dataLabels.
|
|
880
|
-
*/
|
|
881
|
-
opacity?: number;
|
|
882
|
-
/**
|
|
883
|
-
* (Highcharts, Highstock, Gantt) A partial fill for each point,
|
|
884
|
-
* typically used to visualize how much of a task is performed. The
|
|
885
|
-
* partial fill object can be set either on series or point level. When
|
|
886
|
-
* set as a number, works as `{ amount: number }`.
|
|
887
|
-
*/
|
|
888
|
-
partialFill?: Highcharts.PlotXrangePartialFillOptions;
|
|
889
|
-
/**
|
|
890
|
-
* (Highcharts, Highstock, Gantt) Properties for each single point.
|
|
891
|
-
*/
|
|
892
|
-
point?: Highcharts.PlotSeriesPointOptions;
|
|
893
|
-
/**
|
|
894
|
-
* (Highcharts, Highstock, Gantt) Deprecated. Use
|
|
895
|
-
* series.accessibility.point.descriptionFormat instead.
|
|
896
|
-
*
|
|
897
|
-
* Same as accessibility.point.descriptionFormat, but for an individual
|
|
898
|
-
* series. Overrides the chart wide configuration.
|
|
899
|
-
*
|
|
900
|
-
* @deprecated 12.6.0
|
|
901
|
-
*/
|
|
902
|
-
pointDescriptionFormat?: Function;
|
|
903
|
-
/**
|
|
904
|
-
* (Highcharts, Highstock, Gantt) Deprecated. Use
|
|
905
|
-
* series.accessibility.point.descriptionFormatter instead.
|
|
906
|
-
*
|
|
907
|
-
* Same as accessibility.series.descriptionFormatter, but for an
|
|
908
|
-
* individual series. Overrides the chart wide configuration.
|
|
909
|
-
*
|
|
910
|
-
* @deprecated 8.0.0
|
|
911
|
-
*/
|
|
912
|
-
pointDescriptionFormatter?: Function;
|
|
913
|
-
/**
|
|
914
|
-
* (Highcharts, Highstock, Gantt) Padding between each column or bar, in
|
|
915
|
-
* x axis units.
|
|
916
|
-
*/
|
|
917
|
-
pointPadding?: number;
|
|
918
|
-
pointRange?: number;
|
|
919
|
-
/**
|
|
920
|
-
* (Highcharts, Highstock, Gantt) A pixel value specifying a fixed width
|
|
921
|
-
* for each column or bar point. When set to `undefined`, the width is
|
|
922
|
-
* calculated from the `pointPadding` and `groupPadding`. The width
|
|
923
|
-
* effects the dimension that is not based on the point value. For
|
|
924
|
-
* column series it is the horizontal length and for bar series it is
|
|
925
|
-
* the vertical length.
|
|
926
|
-
*/
|
|
927
|
-
pointWidth?: number;
|
|
928
|
-
/**
|
|
929
|
-
* (Highcharts, Highstock) When true, X values in the data set are
|
|
930
|
-
* relative to the current `pointStart`, `pointInterval` and
|
|
931
|
-
* `pointIntervalUnit` settings. This allows compression of the data for
|
|
932
|
-
* datasets with irregular X values.
|
|
933
|
-
*
|
|
934
|
-
* The real X values are computed on the formula `f(x) = ax + b`, where
|
|
935
|
-
* `a` is the `pointInterval` (optionally with a time unit given by
|
|
936
|
-
* `pointIntervalUnit`), and `b` is the `pointStart`.
|
|
937
|
-
*/
|
|
938
|
-
relativeXValue?: boolean;
|
|
939
|
-
/**
|
|
940
|
-
* (Highcharts, Highstock, Gantt) Whether to select the series
|
|
941
|
-
* initially. If `showCheckbox` is true, the checkbox next to the series
|
|
942
|
-
* name in the legend will be checked for a selected series.
|
|
943
|
-
*/
|
|
944
|
-
selected?: boolean;
|
|
945
|
-
/**
|
|
946
|
-
* (Highcharts, Highstock, Gantt) Whether to apply a drop shadow to the
|
|
947
|
-
* graph line. Since 2.3 the shadow can be an object configuration
|
|
948
|
-
* containing `color`, `offsetX`, `offsetY`, `opacity` and `width`.
|
|
949
|
-
*
|
|
950
|
-
* Note that in some cases, like stacked columns or other dense layouts,
|
|
951
|
-
* the series may cast shadows on each other. In that case, the
|
|
952
|
-
* `chart.seriesGroupShadow` allows applying a common drop shadow to the
|
|
953
|
-
* whole series group.
|
|
954
|
-
*/
|
|
955
|
-
shadow?: (boolean|Highcharts.ShadowOptionsObject);
|
|
956
|
-
/**
|
|
957
|
-
* (Highcharts, Highstock, Gantt) If true, a checkbox is displayed next
|
|
958
|
-
* to the legend item to allow selecting the series. The state of the
|
|
959
|
-
* checkbox is determined by the `selected` option.
|
|
960
|
-
*/
|
|
961
|
-
showCheckbox?: boolean;
|
|
962
|
-
/**
|
|
963
|
-
* (Highcharts, Highstock, Gantt) Whether to display this particular
|
|
964
|
-
* series or series type in the legend. Standalone series are shown in
|
|
965
|
-
* legend by default, and linked series are not. Since v7.2.0 it is
|
|
966
|
-
* possible to show series that use colorAxis by setting this option to
|
|
967
|
-
* `true`.
|
|
968
|
-
*/
|
|
969
|
-
showInLegend?: boolean;
|
|
970
|
-
/**
|
|
971
|
-
* (Highstock) Whether or not to show the series in the navigator. Takes
|
|
972
|
-
* precedence over navigator.baseSeries if defined.
|
|
973
|
-
*/
|
|
974
|
-
showInNavigator?: boolean;
|
|
975
|
-
/**
|
|
976
|
-
* (Highcharts, Highstock, Gantt) Deprecated. Use
|
|
977
|
-
* series.accessibility.keyboardNavigation instead.
|
|
978
|
-
*
|
|
979
|
-
* If set to `true`, the accessibility module will skip past the points
|
|
980
|
-
* in this series for keyboard navigation.
|
|
981
|
-
*
|
|
982
|
-
* @deprecated 8.0.0
|
|
983
|
-
*/
|
|
984
|
-
skipKeyboardNavigation?: boolean;
|
|
985
|
-
/**
|
|
986
|
-
* (Highcharts, Highstock, Gantt) Sonification/audio chart options for a
|
|
987
|
-
* series.
|
|
988
|
-
*/
|
|
989
|
-
sonification?: Highcharts.SeriesSonificationOptions;
|
|
990
|
-
/**
|
|
991
|
-
* (Highcharts, Highstock, Gantt) A collection of options for different
|
|
992
|
-
* series states.
|
|
993
|
-
*/
|
|
994
|
-
states?: Highcharts.SeriesStatesOptionsObject;
|
|
995
|
-
/**
|
|
996
|
-
* (Highcharts, Highstock, Gantt) Sticky tracking of mouse events. When
|
|
997
|
-
* true, the `mouseOut` event on a series isn't triggered until the
|
|
998
|
-
* mouse moves over another series, or out of the plot area. When false,
|
|
999
|
-
* the `mouseOut` event on a series is triggered when the mouse leaves
|
|
1000
|
-
* the area around the series' graph or markers. This also implies the
|
|
1001
|
-
* tooltip when not shared. When `stickyTracking` is false and
|
|
1002
|
-
* `tooltip.shared` is false, the tooltip will be hidden when moving the
|
|
1003
|
-
* mouse between series. Defaults to true for line and area type series,
|
|
1004
|
-
* but to false for columns, pies etc.
|
|
1005
|
-
*
|
|
1006
|
-
* **Note:** The boost module will force this option because of
|
|
1007
|
-
* technical limitations.
|
|
1008
|
-
*/
|
|
1009
|
-
stickyTracking?: boolean;
|
|
1010
|
-
/**
|
|
1011
|
-
* (Highcharts, Highstock, Gantt) A configuration object for the tooltip
|
|
1012
|
-
* rendering of each single series. Properties are inherited from
|
|
1013
|
-
* tooltip, but only the following properties can be defined on a series
|
|
1014
|
-
* level.
|
|
1015
|
-
*/
|
|
1016
|
-
tooltip?: Highcharts.SeriesTooltipOptionsObject;
|
|
1017
|
-
/**
|
|
1018
|
-
* (Highcharts, Highstock, Gantt) When a series contains a `data` array
|
|
1019
|
-
* that is longer than this, the Series class looks for data
|
|
1020
|
-
* configurations of plain numbers or arrays of numbers. The first and
|
|
1021
|
-
* last valid points are checked. If found, the rest of the data is
|
|
1022
|
-
* assumed to be the same. This saves expensive data checking and
|
|
1023
|
-
* indexing in long series, and makes data-heavy charts render faster.
|
|
1024
|
-
*
|
|
1025
|
-
* Set it to `0` disable.
|
|
1026
|
-
*
|
|
1027
|
-
* Note:
|
|
1028
|
-
*
|
|
1029
|
-
* - In boost mode turbo threshold is forced. Only array of numbers or
|
|
1030
|
-
* two dimensional arrays are allowed.
|
|
1031
|
-
*
|
|
1032
|
-
* - In version 11.4.3 and earlier, if object configurations were passed
|
|
1033
|
-
* beyond the turbo threshold, a warning was logged in the console and
|
|
1034
|
-
* the data series didn't render.
|
|
1035
|
-
*/
|
|
1036
|
-
turboThreshold?: number;
|
|
1037
|
-
/**
|
|
1038
|
-
* (Highcharts, Highstock, Gantt) Set the initial visibility of the
|
|
1039
|
-
* series.
|
|
1040
|
-
*/
|
|
1041
|
-
visible?: boolean;
|
|
1042
|
-
/**
|
|
1043
|
-
* (Highcharts, Highstock) Defines the Axis on which the zones are
|
|
1044
|
-
* applied.
|
|
1045
|
-
*/
|
|
1046
|
-
zoneAxis?: string;
|
|
1047
|
-
/**
|
|
1048
|
-
* (Highcharts, Highstock) An array defining zones within a series.
|
|
1049
|
-
* Zones can be applied to the X axis, Y axis or Z axis for bubbles,
|
|
1050
|
-
* according to the `zoneAxis` option. The zone definitions have to be
|
|
1051
|
-
* in ascending order regarding to the value.
|
|
1052
|
-
*
|
|
1053
|
-
* In styled mode, the color zones are styled with the
|
|
1054
|
-
* `.highcharts-zone-{n}` class, or custom classed from the `className`
|
|
1055
|
-
* option (view live demo).
|
|
1056
|
-
*/
|
|
1057
|
-
zones?: Array<Highcharts.SeriesZonesOptionsObject>;
|
|
1058
|
-
/**
|
|
1059
|
-
* (Highcharts, Highstock, Gantt) Whether to zoom non-cartesian series.
|
|
1060
|
-
* If `chart.zooming` is set, the option allows to disable zooming on an
|
|
1061
|
-
* individual non-cartesian series. By default zooming is enabled for
|
|
1062
|
-
* all series.
|
|
1063
|
-
*
|
|
1064
|
-
* **Note**: This option works only for non-cartesian series.
|
|
1065
|
-
*/
|
|
1066
|
-
zoomEnabled?: boolean;
|
|
1067
|
-
}
|
|
1068
|
-
/**
|
|
1069
|
-
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
1070
|
-
* line-type series.
|
|
1071
|
-
*/
|
|
1072
|
-
interface PlotXrangeStatesHoverAnimationOptions {
|
|
1073
|
-
/**
|
|
1074
|
-
* (Highcharts, Highstock) The duration of the hover animation in
|
|
1075
|
-
* milliseconds. By default the hover state animates quickly in, and
|
|
1076
|
-
* slowly back to normal.
|
|
1077
|
-
*/
|
|
1078
|
-
duration?: number;
|
|
1079
|
-
}
|
|
1080
|
-
/**
|
|
1081
|
-
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
1082
|
-
* line-type series.
|
|
1083
|
-
*/
|
|
1084
|
-
interface PlotXrangeStatesSelectAnimationOptions {
|
|
1085
|
-
/**
|
|
1086
|
-
* (Highcharts, Highstock) The duration of the hover animation in
|
|
1087
|
-
* milliseconds. By default the hover state animates quickly in, and
|
|
1088
|
-
* slowly back to normal.
|
|
1089
|
-
*/
|
|
1090
|
-
duration?: number;
|
|
1091
|
-
}
|
|
1092
|
-
/**
|
|
1093
|
-
* (Highcharts, Highstock, Gantt) Options for the tooltip header when
|
|
1094
|
-
* tooltip.split is enabled. The header is the box containing the X value in
|
|
1095
|
-
* a split tooltip.
|
|
1096
|
-
*/
|
|
1097
|
-
interface PlotXrangeTooltipHeaderOptions {
|
|
1098
|
-
/**
|
|
1099
|
-
* (Highcharts, Highstock, Gantt) Background color for the tooltip
|
|
1100
|
-
* header when tooltip.split is enabled.
|
|
1101
|
-
*/
|
|
1102
|
-
backgroundColor?: Highcharts.ColorType;
|
|
1103
|
-
/**
|
|
1104
|
-
* (Highcharts, Highstock, Gantt) Border color for the tooltip header
|
|
1105
|
-
* when tooltip.split is enabled.
|
|
1106
|
-
*/
|
|
1107
|
-
borderColor?: Highcharts.ColorType;
|
|
1108
|
-
/**
|
|
1109
|
-
* (Highcharts, Highstock, Gantt) The width of the border for the
|
|
1110
|
-
* tooltip header when tooltip.split is enabled.
|
|
1111
|
-
*/
|
|
1112
|
-
borderWidth?: number;
|
|
1113
|
-
/**
|
|
1114
|
-
* (Highcharts, Highstock, Gantt) Distance between the plot area and the
|
|
1115
|
-
* header (except the chevron) in a split tooltip, in pixels. The
|
|
1116
|
-
* default value makes the header text align with the axis labels.
|
|
1117
|
-
*/
|
|
1118
|
-
distance?: number;
|
|
1119
|
-
/**
|
|
1120
|
-
* (Highcharts, Highstock, Gantt) The name of a symbol to use for the
|
|
1121
|
-
* border around the tooltip header. Applies only when tooltip.split is
|
|
1122
|
-
* enabled.
|
|
1123
|
-
*
|
|
1124
|
-
* Custom callbacks for symbol path generation can also be added to
|
|
1125
|
-
* `Highcharts.SVGRenderer.prototype.symbols` the same way as for
|
|
1126
|
-
* series.marker.symbol.
|
|
1127
|
-
*/
|
|
1128
|
-
shape?: string;
|
|
1129
|
-
/**
|
|
1130
|
-
* (Highcharts, Highstock, Gantt) CSS styles for the tooltip header. The
|
|
1131
|
-
* default is `{ fontSize: '1em' }`, ensuring that the header text is
|
|
1132
|
-
* the same size as the axis labels.
|
|
1133
|
-
*/
|
|
1134
|
-
style?: object;
|
|
1135
|
-
}
|
|
1136
|
-
/**
|
|
1137
|
-
* (Highcharts, Highstock) Animation when hovering over the marker.
|
|
1138
|
-
*/
|
|
1139
|
-
interface SeriesXrangeDataMarkerStatesHoverAnimationOptions {
|
|
1140
|
-
duration?: number;
|
|
250
|
+
type: "xrange";
|
|
1141
251
|
}
|
|
1142
252
|
}
|