highcharts 13.0.2 → 13.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/highcharts.css +6 -2
- package/es-modules/Accessibility/Components/InfoRegionsComponent.js +10 -6
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesComponent.js +2 -1
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesDescriber.js +25 -1
- package/es-modules/Accessibility/KeyboardNavigation.js +1 -1
- package/es-modules/Accessibility/Utils/HTMLUtilities.js +13 -3
- package/es-modules/Core/Animation/AnimationUtilities.js +7 -2
- package/es-modules/Core/Animation/Fx.js +1 -0
- package/es-modules/Core/Axis/Axis.js +181 -211
- package/es-modules/Core/Axis/Axis3DComposition.js +13 -15
- package/es-modules/Core/Axis/AxisDefaults.js +9 -8
- package/es-modules/Core/Axis/BrokenAxis.js +5 -4
- package/es-modules/Core/Axis/Color/ColorAxis.js +66 -54
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +3 -0
- package/es-modules/Core/Axis/Color/ColorAxisDefaults.js +6 -4
- package/es-modules/Core/Axis/DateTimeAxis.js +4 -3
- package/es-modules/Core/Axis/GridAxis.js +17 -13
- package/es-modules/Core/Axis/LogarithmicAxis.js +4 -3
- package/es-modules/Core/Axis/NavigatorAxisComposition.js +3 -4
- package/es-modules/Core/Axis/OrdinalAxis.js +0 -15
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBand.js +135 -72
- package/es-modules/Core/Axis/PlotLineOrBand/PlotLineOrBandAxis.js +72 -124
- package/es-modules/Core/Axis/RadialAxis.js +50 -7
- package/es-modules/Core/Axis/ScrollbarAxis.js +3 -0
- package/es-modules/Core/Axis/Stacking/StackItem.js +49 -75
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +34 -22
- package/es-modules/Core/Axis/Tick.js +95 -92
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +9 -13
- package/es-modules/Core/Axis/WaterfallAxis.js +1 -1
- package/es-modules/Core/Chart/Chart.js +13 -4
- package/es-modules/Core/Chart/StockChart.js +20 -26
- package/es-modules/Core/Defaults.js +18 -0
- package/es-modules/Core/Globals.js +9 -7
- package/es-modules/Core/Pointer.js +7 -8
- package/es-modules/Core/Renderer/HTML/AST.js +18 -11
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +5 -1
- package/es-modules/Core/Renderer/SVG/SVGElement.js +1 -0
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +1 -1
- package/es-modules/Core/Renderer/SVG/Symbols.js +1 -1
- package/es-modules/Core/Renderer/SVG/TextBuilder.js +6 -2
- package/es-modules/Core/Series/OverlappingDataLabels.js +41 -32
- package/es-modules/Core/Series/Point.js +14 -11
- package/es-modules/Core/Series/Series.js +21 -10
- package/es-modules/Core/Tooltip.js +35 -40
- package/es-modules/Data/DataCursor.js +3 -2
- package/es-modules/Data/DataTable.js +21 -2
- package/es-modules/Data/DataTableCore.js +28 -4
- package/es-modules/Data/Formula/FormulaParser.js +30 -10
- package/es-modules/Extensions/Annotations/Annotation.js +5 -7
- package/es-modules/Extensions/Annotations/AnnotationChart.js +2 -1
- package/es-modules/Extensions/Boost/BoostSeries.js +4 -13
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +6 -4
- package/es-modules/Extensions/Breadcrumbs/BreadcrumbsDefaults.js +1 -1
- package/es-modules/Extensions/Data.js +4 -2
- package/es-modules/Extensions/DragPanes/DragPanes.js +6 -9
- package/es-modules/Extensions/Drilldown/Drilldown.js +9 -4
- package/es-modules/Extensions/ExportData/ExportData.js +24 -4
- package/es-modules/Extensions/Pane/Pane.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates/ParallelAxis.js +5 -4
- package/es-modules/Extensions/StaticScale.js +13 -11
- package/es-modules/Series/Area/AreaSeriesDefaults.js +1 -1
- package/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +1 -1
- package/es-modules/Series/AreaSpline/AreaSplineSeries.js +1 -1
- package/es-modules/Series/AreaSplineRange/AreaSplineRangeSeries.js +1 -1
- package/es-modules/Series/Bar/BarSeries.js +1 -1
- package/es-modules/Series/Bellcurve/BellcurveSeriesDefaults.js +1 -1
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +1 -1
- package/es-modules/Series/Bubble/BubbleSeries.js +1 -1
- package/es-modules/Series/Bullet/BulletSeriesDefaults.js +1 -1
- package/es-modules/Series/Candlestick/CandlestickSeriesDefaults.js +1 -1
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +6 -3
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeriesDefaults.js +2 -3
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesDefaults.js +1 -1
- package/es-modules/Series/Contour/ContourSeriesDefaults.js +12 -14
- package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +1 -1
- package/es-modules/Series/Flags/FlagsPoint.js +4 -2
- package/es-modules/Series/Flags/FlagsPointOptions.js +12 -0
- package/es-modules/Series/Flags/FlagsSeries.js +8 -7
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +7 -7
- package/es-modules/Series/Flags/FlagsSeriesOptions.js +12 -0
- package/es-modules/Series/Flags/FlagsSymbols.js +5 -3
- package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +1 -1
- package/es-modules/Series/Gauge/GaugeSeries.js +1 -1
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +1 -1
- package/es-modules/Series/HLC/HLCSeriesDefaults.js +1 -7
- package/es-modules/Series/Heatmap/HeatmapSeriesDefaults.js +1 -1
- package/es-modules/Series/HeikinAshi/HeikinAshiSeriesDefaults.js +1 -1
- package/es-modules/Series/Histogram/HistogramSeriesDefaults.js +1 -1
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +1 -1
- package/es-modules/Series/Item/ItemSeriesDefaults.js +1 -1
- package/es-modules/Series/Line/LineSeries.js +0 -1
- package/es-modules/Series/Map/MapSeriesDefaults.js +1 -1
- package/es-modules/Series/MapBubble/MapBubbleSeries.js +0 -1
- package/es-modules/Series/MapLine/MapLineSeriesDefaults.js +1 -1
- package/es-modules/Series/MapPoint/MapPointSeriesDefaults.js +0 -1
- package/es-modules/Series/Networkgraph/ReingoldFruchtermanLayout.js +5 -5
- package/es-modules/Series/OHLC/OHLCSeriesDefaults.js +0 -1
- package/es-modules/Series/PackedBubble/PackedBubbleChart.js +18 -0
- package/es-modules/Series/PackedBubble/PackedBubbleDataLabelOptions.js +12 -0
- package/es-modules/Series/PackedBubble/PackedBubbleIntegration.js +3 -3
- package/es-modules/Series/PackedBubble/PackedBubbleLayout.js +2 -2
- package/es-modules/Series/PackedBubble/PackedBubblePoint.js +1 -1
- package/es-modules/Series/PackedBubble/PackedBubblePointOptions.js +12 -0
- package/es-modules/Series/PackedBubble/PackedBubbleSeries.js +20 -20
- package/es-modules/Series/PackedBubble/PackedBubbleSeriesDefaults.js +2 -2
- package/es-modules/Series/PackedBubble/PackedBubbleSeriesOptions.js +12 -0
- package/es-modules/Series/ParetoSeries/ParetoPoint.js +17 -0
- package/es-modules/Series/ParetoSeries/ParetoPointOptions.js +12 -0
- package/es-modules/Series/ParetoSeries/ParetoSeries.js +3 -3
- package/es-modules/Series/ParetoSeries/ParetoSeriesDefaults.js +1 -1
- package/es-modules/Series/ParetoSeries/ParetoSeriesOptions.js +12 -0
- package/es-modules/Series/PathUtilities.js +3 -1
- package/es-modules/Series/Pictorial/PictorialPointOptions.js +12 -0
- package/es-modules/Series/Pictorial/PictorialSeries.js +5 -25
- package/es-modules/Series/Pictorial/PictorialSeriesDefaults.js +45 -0
- package/es-modules/Series/Pictorial/PictorialSeriesOptions.js +12 -0
- package/es-modules/Series/Pie/PieSeriesDefaults.js +1 -1
- package/es-modules/Series/Pie3D/Pie3DPoint.js +1 -1
- package/es-modules/Series/Pie3D/Pie3DSeries.js +6 -6
- package/es-modules/Series/PolarComposition.js +22 -21
- package/es-modules/Series/Polygon/PolygonPoint.js +17 -0
- package/es-modules/Series/Polygon/PolygonPointOptions.js +12 -0
- package/es-modules/Series/Polygon/PolygonSeriesDefaults.js +1 -1
- package/es-modules/Series/Polygon/PolygonSeriesOptions.js +12 -0
- package/es-modules/Series/Pyramid/PyramidPoint.js +19 -0
- package/es-modules/Series/Pyramid/PyramidPointOptions.js +14 -0
- package/es-modules/Series/Pyramid/PyramidSeries.js +1 -1
- package/es-modules/Series/Pyramid/PyramidSeriesDefaults.js +1 -1
- package/es-modules/Series/Pyramid/PyramidSeriesOptions.js +14 -0
- package/es-modules/Series/Pyramid3D/Pyramid3DPoint.js +19 -0
- package/es-modules/Series/Pyramid3D/Pyramid3DPointOptions.js +14 -0
- package/es-modules/Series/Pyramid3D/Pyramid3DSeries.js +1 -1
- package/es-modules/Series/Pyramid3D/Pyramid3DSeriesOptions.js +14 -0
- package/es-modules/Series/Renko/RenkoSeriesDefaults.js +1 -2
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +6 -7
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +1 -1
- package/es-modules/Series/SolidGauge/SolidGaugeSeriesDefaults.js +1 -1
- package/es-modules/Series/Spline/SplineSeries.js +1 -1
- package/es-modules/Series/Streamgraph/StreamgraphSeriesDefaults.js +1 -1
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +1 -1
- package/es-modules/Series/TiledWebMap/TiledWebMapSeriesDefaults.js +2 -2
- package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +1 -1
- package/es-modules/Series/Timeline/TimelineSeriesDefaults.js +1 -1
- package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +1 -1
- package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +1 -1
- package/es-modules/Series/Variwide/VariwideComposition.js +11 -8
- package/es-modules/Series/Vector/VectorSeriesDefaults.js +1 -1
- package/es-modules/Series/Venn/VennSeriesDefaults.js +1 -1
- package/es-modules/Series/Waterfall/WaterfallSeriesDefaults.js +1 -1
- package/es-modules/Series/Windbarb/WindbarbSeriesDefaults.js +1 -1
- package/es-modules/Shared/Utilities.js +7 -0
- package/es-modules/Stock/Indicators/ABands/ABandsIndicator.js +1 -1
- package/es-modules/Stock/Indicators/AD/ADIndicator.js +0 -1
- package/es-modules/Stock/Indicators/AO/AOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/APO/APOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/ATR/ATRIndicator.js +0 -1
- package/es-modules/Stock/Indicators/Aroon/AroonIndicator.js +1 -1
- package/es-modules/Stock/Indicators/AroonOscillator/AroonOscillatorIndicator.js +2 -2
- package/es-modules/Stock/Indicators/BB/BBIndicator.js +0 -1
- package/es-modules/Stock/Indicators/CCI/CCIIndicator.js +0 -1
- package/es-modules/Stock/Indicators/CMF/CMFIndicator.js +0 -1
- package/es-modules/Stock/Indicators/CMO/CMOIndicator.js +0 -1
- package/es-modules/Stock/Indicators/Chaikin/ChaikinIndicator.js +1 -1
- package/es-modules/Stock/Indicators/DEMA/DEMAIndicator.js +1 -1
- package/es-modules/Stock/Indicators/DMI/DMIIndicator.js +3 -3
- package/es-modules/Stock/Indicators/DPO/DPOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/DisparityIndex/DisparityIndexIndicator.js +3 -3
- package/es-modules/Stock/Indicators/EMA/EMAIndicator.js +0 -1
- package/es-modules/Stock/Indicators/IKH/IKHIndicator.js +0 -1
- package/es-modules/Stock/Indicators/KeltnerChannels/KeltnerChannelsIndicator.js +1 -1
- package/es-modules/Stock/Indicators/LinearRegression/LinearRegressionIndicator.js +0 -1
- package/es-modules/Stock/Indicators/LinearRegressionAngle/LinearRegressionAngleIndicator.js +0 -1
- package/es-modules/Stock/Indicators/LinearRegressionIntercept/LinearRegressionInterceptIndicator.js +0 -1
- package/es-modules/Stock/Indicators/LinearRegressionSlopes/LinearRegressionSlopesIndicator.js +0 -1
- package/es-modules/Stock/Indicators/MACD/MACDIndicator.js +0 -1
- package/es-modules/Stock/Indicators/MFI/MFIIndicator.js +0 -1
- package/es-modules/Stock/Indicators/Momentum/MomentumIndicator.js +0 -1
- package/es-modules/Stock/Indicators/NATR/NATRIndicator.js +0 -1
- package/es-modules/Stock/Indicators/OBV/OBVIndicator.js +0 -1
- package/es-modules/Stock/Indicators/PC/PCIndicator.js +1 -1
- package/es-modules/Stock/Indicators/PPO/PPOIndicator.js +1 -1
- package/es-modules/Stock/Indicators/PSAR/PSARIndicator.js +0 -1
- package/es-modules/Stock/Indicators/PivotPoints/PivotPointsIndicator.js +0 -1
- package/es-modules/Stock/Indicators/PriceEnvelopes/PriceEnvelopesIndicator.js +0 -1
- package/es-modules/Stock/Indicators/ROC/ROCIndicator.js +0 -1
- package/es-modules/Stock/Indicators/RSI/RSIIndicator.js +0 -1
- package/es-modules/Stock/Indicators/SMA/SMAIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Stochastic/StochasticIndicator.js +3 -3
- package/es-modules/Stock/Indicators/Supertrend/SupertrendIndicator.js +1 -1
- package/es-modules/Stock/Indicators/TEMA/TEMAIndicator.js +1 -1
- package/es-modules/Stock/Indicators/TRIX/TRIXIndicator.js +1 -1
- package/es-modules/Stock/Indicators/TrendLine/TrendLineIndicator.js +0 -1
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -1
- package/es-modules/Stock/Indicators/VWAP/VWAPIndicator.js +0 -1
- package/es-modules/Stock/Indicators/WMA/WMAIndicator.js +0 -1
- package/es-modules/Stock/Indicators/WilliamsR/WilliamsRIndicator.js +1 -1
- package/es-modules/Stock/Indicators/Zigzag/ZigzagIndicator.js +0 -1
- package/es-modules/Stock/Navigator/ChartNavigatorComposition.js +5 -5
- package/es-modules/Stock/Navigator/Navigator.js +1 -5
- package/es-modules/Stock/Navigator/StandaloneNavigator.js +38 -8
- package/es-modules/Stock/RangeSelector/RangeSelectorComposition.js +2 -2
- package/es-modules/Stock/Scrollbar/ScrollbarDefaults.js +1 -3
- 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 +1 -1
- 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 +1 -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 +1 -1
- 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 +38 -61
- package/esm/highcharts-autoload.js +2 -2
- package/esm/highcharts-autoload.src.js +18 -39
- package/esm/highcharts-gantt.js +1 -1
- package/esm/highcharts-gantt.src.js +1 -1
- package/esm/highcharts-more.js +2 -2
- package/esm/highcharts-more.src.js +142 -120
- package/esm/highcharts.js +4 -4
- package/esm/highcharts.src.js +824 -750
- package/esm/highmaps.js +1 -1
- package/esm/highmaps.src.js +1 -1
- package/esm/highstock.js +1 -1
- package/esm/highstock.src.js +1 -1
- package/esm/i18n/fr-FR.js +2 -2
- package/esm/i18n/fr-FR.src.js +17 -38
- package/esm/i18n/nb-NO.js +2 -2
- package/esm/i18n/nb-NO.src.js +17 -38
- package/esm/i18n/zh-CN.js +2 -2
- package/esm/i18n/zh-CN.src.js +17 -38
- package/esm/indicators/acceleration-bands.js +2 -2
- package/esm/indicators/acceleration-bands.src.js +18 -39
- package/esm/indicators/accumulation-distribution.js +2 -2
- package/esm/indicators/accumulation-distribution.src.js +17 -39
- package/esm/indicators/ao.js +2 -2
- package/esm/indicators/ao.src.js +18 -39
- package/esm/indicators/apo.js +2 -2
- package/esm/indicators/apo.src.js +18 -39
- package/esm/indicators/aroon-oscillator.js +2 -2
- package/esm/indicators/aroon-oscillator.src.js +19 -40
- package/esm/indicators/aroon.js +2 -2
- package/esm/indicators/aroon.src.js +18 -39
- package/esm/indicators/atr.js +2 -2
- package/esm/indicators/atr.src.js +17 -39
- package/esm/indicators/bollinger-bands.js +2 -2
- package/esm/indicators/bollinger-bands.src.js +17 -39
- package/esm/indicators/cci.js +2 -2
- package/esm/indicators/cci.src.js +17 -39
- package/esm/indicators/chaikin.js +2 -2
- package/esm/indicators/chaikin.src.js +18 -40
- package/esm/indicators/cmf.js +2 -2
- package/esm/indicators/cmf.src.js +17 -39
- package/esm/indicators/cmo.js +2 -2
- package/esm/indicators/cmo.src.js +17 -39
- package/esm/indicators/dema.js +2 -2
- package/esm/indicators/dema.src.js +18 -39
- package/esm/indicators/disparity-index.js +2 -2
- package/esm/indicators/disparity-index.src.js +20 -41
- package/esm/indicators/dmi.js +2 -2
- package/esm/indicators/dmi.src.js +20 -41
- package/esm/indicators/dpo.js +2 -2
- package/esm/indicators/dpo.src.js +18 -39
- package/esm/indicators/ichimoku-kinko-hyo.js +2 -2
- package/esm/indicators/ichimoku-kinko-hyo.src.js +18 -40
- package/esm/indicators/indicators-all.js +2 -2
- package/esm/indicators/indicators-all.src.js +76 -99
- package/esm/indicators/indicators.js +2 -2
- package/esm/indicators/indicators.src.js +48 -46
- package/esm/indicators/keltner-channels.js +2 -2
- package/esm/indicators/keltner-channels.src.js +18 -39
- package/esm/indicators/klinger.js +2 -2
- package/esm/indicators/klinger.src.js +17 -38
- package/esm/indicators/macd.js +2 -2
- package/esm/indicators/macd.src.js +17 -39
- package/esm/indicators/mfi.js +2 -2
- package/esm/indicators/mfi.src.js +17 -39
- package/esm/indicators/momentum.js +2 -2
- package/esm/indicators/momentum.src.js +17 -39
- package/esm/indicators/natr.js +2 -2
- package/esm/indicators/natr.src.js +17 -39
- package/esm/indicators/obv.js +2 -2
- package/esm/indicators/obv.src.js +17 -39
- package/esm/indicators/pivot-points.js +2 -2
- package/esm/indicators/pivot-points.src.js +17 -39
- package/esm/indicators/ppo.js +2 -2
- package/esm/indicators/ppo.src.js +18 -39
- package/esm/indicators/price-channel.js +2 -2
- package/esm/indicators/price-channel.src.js +18 -39
- package/esm/indicators/price-envelopes.js +2 -2
- package/esm/indicators/price-envelopes.src.js +17 -39
- package/esm/indicators/psar.js +2 -2
- package/esm/indicators/psar.src.js +17 -39
- package/esm/indicators/regressions.js +2 -2
- package/esm/indicators/regressions.src.js +17 -42
- package/esm/indicators/roc.js +2 -2
- package/esm/indicators/roc.src.js +17 -39
- package/esm/indicators/rsi.js +2 -2
- package/esm/indicators/rsi.src.js +17 -39
- package/esm/indicators/slow-stochastic.js +2 -2
- package/esm/indicators/slow-stochastic.src.js +17 -38
- package/esm/indicators/stochastic.js +2 -2
- package/esm/indicators/stochastic.src.js +20 -41
- package/esm/indicators/supertrend.js +2 -2
- package/esm/indicators/supertrend.src.js +19 -40
- package/esm/indicators/tema.js +2 -2
- package/esm/indicators/tema.src.js +18 -39
- package/esm/indicators/trendline.js +2 -2
- package/esm/indicators/trendline.src.js +17 -39
- package/esm/indicators/trix.js +2 -2
- package/esm/indicators/trix.src.js +18 -39
- package/esm/indicators/volume-by-price.js +2 -2
- package/esm/indicators/volume-by-price.src.js +18 -39
- package/esm/indicators/vwap.js +2 -2
- package/esm/indicators/vwap.src.js +17 -39
- package/esm/indicators/williams-r.js +2 -2
- package/esm/indicators/williams-r.src.js +18 -39
- package/esm/indicators/wma.js +2 -2
- package/esm/indicators/wma.src.js +17 -39
- package/esm/indicators/zigzag.js +2 -2
- package/esm/indicators/zigzag.src.js +17 -39
- package/esm/modules/accessibility.js +2 -2
- package/esm/modules/accessibility.src.js +90 -76
- package/esm/modules/annotations-advanced.js +3 -3
- package/esm/modules/annotations-advanced.src.js +36 -58
- package/esm/modules/annotations.js +3 -3
- package/esm/modules/annotations.src.js +36 -58
- package/esm/modules/arc-diagram.js +2 -2
- package/esm/modules/arc-diagram.src.js +18 -39
- package/esm/modules/arrow-symbols.js +3 -3
- package/esm/modules/arrow-symbols.src.js +17 -38
- package/esm/modules/boost-canvas.js +2 -2
- package/esm/modules/boost-canvas.src.js +57 -63
- package/esm/modules/boost.js +2 -2
- package/esm/modules/boost.src.js +56 -62
- package/esm/modules/broken-axis.js +2 -2
- package/esm/modules/broken-axis.src.js +21 -41
- package/esm/modules/bullet.js +2 -2
- package/esm/modules/bullet.src.js +18 -39
- package/esm/modules/coloraxis.js +2 -2
- package/esm/modules/coloraxis.src.js +92 -96
- package/esm/modules/contour.js +3 -3
- package/esm/modules/contour.src.js +29 -52
- package/esm/modules/current-date-indicator.js +2 -2
- package/esm/modules/current-date-indicator.src.js +17 -38
- package/esm/modules/cylinder.js +2 -2
- package/esm/modules/cylinder.src.js +18 -39
- package/esm/modules/data-sorting.js +2 -2
- package/esm/modules/data-sorting.src.js +18 -39
- package/esm/modules/data-tools.js +2 -2
- package/esm/modules/data-tools.src.js +110 -67
- package/esm/modules/data.js +4 -4
- package/esm/modules/data.src.js +53 -48
- package/esm/modules/datagrouping.js +2 -2
- package/esm/modules/datagrouping.src.js +52 -48
- package/esm/modules/debugger.js +2 -2
- package/esm/modules/debugger.src.js +17 -38
- package/esm/modules/dependency-wheel.js +2 -2
- package/esm/modules/dependency-wheel.src.js +17 -38
- package/esm/modules/dotplot.js +2 -2
- package/esm/modules/dotplot.src.js +17 -38
- package/esm/modules/drag-panes.js +2 -2
- package/esm/modules/drag-panes.src.js +22 -46
- package/esm/modules/draggable-points.js +2 -2
- package/esm/modules/draggable-points.src.js +17 -38
- package/esm/modules/drilldown.js +2 -2
- package/esm/modules/drilldown.src.js +40 -54
- package/esm/modules/dumbbell.js +2 -2
- package/esm/modules/dumbbell.src.js +18 -39
- package/esm/modules/export-data.js +2 -2
- package/esm/modules/export-data.src.js +42 -43
- package/esm/modules/exporting.js +2 -2
- package/esm/modules/exporting.src.js +26 -47
- package/esm/modules/flowmap.js +2 -2
- package/esm/modules/flowmap.src.js +17 -38
- package/esm/modules/full-screen.js +2 -2
- package/esm/modules/full-screen.src.js +17 -38
- package/esm/modules/funnel.js +2 -2
- package/esm/modules/funnel.src.js +21 -42
- package/esm/modules/funnel3d.js +2 -2
- package/esm/modules/funnel3d.src.js +18 -39
- package/esm/modules/gantt.js +2 -2
- package/esm/modules/gantt.src.js +84 -104
- package/esm/modules/geoheatmap.js +2 -2
- package/esm/modules/geoheatmap.src.js +18 -39
- package/esm/modules/grid-axis.js +2 -2
- package/esm/modules/grid-axis.src.js +34 -51
- package/esm/modules/heatmap.js +2 -2
- package/esm/modules/heatmap.src.js +20 -41
- package/esm/modules/heikinashi.js +2 -2
- package/esm/modules/heikinashi.src.js +18 -39
- package/esm/modules/histogram-bellcurve.js +2 -2
- package/esm/modules/histogram-bellcurve.src.js +19 -40
- package/esm/modules/hollowcandlestick.js +2 -2
- package/esm/modules/hollowcandlestick.src.js +18 -39
- package/esm/modules/item-series.js +2 -2
- package/esm/modules/item-series.src.js +19 -40
- package/esm/modules/lollipop.js +2 -2
- package/esm/modules/lollipop.src.js +18 -39
- package/esm/modules/map.js +2 -2
- package/esm/modules/map.src.js +64 -63
- package/esm/modules/marker-clusters.js +2 -2
- package/esm/modules/marker-clusters.src.js +49 -46
- package/esm/modules/mouse-wheel-zoom.js +2 -2
- package/esm/modules/mouse-wheel-zoom.src.js +17 -38
- package/esm/modules/navigator.js +2 -2
- package/esm/modules/navigator.src.js +72 -67
- package/esm/modules/networkgraph.js +2 -2
- package/esm/modules/networkgraph.src.js +24 -45
- package/esm/modules/no-data-to-display.js +2 -2
- package/esm/modules/no-data-to-display.src.js +17 -38
- package/esm/modules/non-cartesian-zoom.js +2 -2
- package/esm/modules/non-cartesian-zoom.src.js +17 -38
- package/esm/modules/offline-exporting.js +2 -2
- package/esm/modules/offline-exporting.src.js +19 -40
- package/esm/modules/organization.js +2 -2
- package/esm/modules/organization.src.js +20 -39
- package/esm/modules/parallel-coordinates.js +2 -2
- package/esm/modules/parallel-coordinates.src.js +24 -44
- package/esm/modules/pareto.js +2 -2
- package/esm/modules/pareto.src.js +21 -42
- package/esm/modules/pathfinder.js +2 -2
- package/esm/modules/pathfinder.src.js +20 -39
- package/esm/modules/pattern-fill.js +2 -2
- package/esm/modules/pattern-fill.src.js +17 -38
- package/esm/modules/pictorial.js +2 -2
- package/esm/modules/pictorial.src.js +71 -65
- package/esm/modules/pointandfigure.js +2 -2
- package/esm/modules/pointandfigure.src.js +47 -44
- package/esm/modules/price-indicator.js +2 -2
- package/esm/modules/price-indicator.src.js +17 -38
- package/esm/modules/pyramid3d.js +2 -2
- package/esm/modules/pyramid3d.src.js +18 -39
- package/esm/modules/renko.js +2 -2
- package/esm/modules/renko.src.js +18 -40
- package/esm/modules/sankey.js +2 -2
- package/esm/modules/sankey.src.js +24 -46
- package/esm/modules/series-label.js +2 -2
- package/esm/modules/series-label.src.js +17 -38
- package/esm/modules/series-on-point.js +2 -2
- package/esm/modules/series-on-point.src.js +47 -44
- package/esm/modules/solid-gauge.js +2 -2
- package/esm/modules/solid-gauge.src.js +18 -39
- package/esm/modules/sonification.js +2 -2
- package/esm/modules/sonification.src.js +18 -39
- package/esm/modules/static-scale.js +2 -2
- package/esm/modules/static-scale.src.js +30 -49
- package/esm/modules/stock-tools.js +2 -2
- package/esm/modules/stock-tools.src.js +29 -50
- package/esm/modules/stock.js +2 -2
- package/esm/modules/stock.src.js +117 -141
- package/esm/modules/streamgraph.js +2 -2
- package/esm/modules/streamgraph.src.js +18 -39
- package/esm/modules/sunburst.js +2 -2
- package/esm/modules/sunburst.src.js +38 -57
- package/esm/modules/textpath.js +2 -2
- package/esm/modules/textpath.src.js +17 -38
- package/esm/modules/tiledwebmap.js +3 -3
- package/esm/modules/tiledwebmap.src.js +19 -40
- package/esm/modules/tilemap.js +2 -2
- package/esm/modules/tilemap.src.js +22 -40
- package/esm/modules/timeline.js +2 -2
- package/esm/modules/timeline.src.js +19 -40
- package/esm/modules/treegraph.js +2 -2
- package/esm/modules/treegraph.src.js +23 -42
- package/esm/modules/treegrid.js +2 -2
- package/esm/modules/treegrid.src.js +47 -67
- package/esm/modules/treemap.js +2 -2
- package/esm/modules/treemap.src.js +34 -53
- package/esm/modules/variable-pie.js +2 -2
- package/esm/modules/variable-pie.src.js +19 -40
- package/esm/modules/variwide.js +2 -2
- package/esm/modules/variwide.src.js +28 -46
- package/esm/modules/vector.js +2 -2
- package/esm/modules/vector.src.js +18 -39
- package/esm/modules/venn.js +2 -2
- package/esm/modules/venn.src.js +18 -39
- package/esm/modules/windbarb.js +2 -2
- package/esm/modules/windbarb.src.js +18 -39
- package/esm/modules/wordcloud.js +2 -2
- package/esm/modules/wordcloud.src.js +18 -39
- package/esm/modules/xrange.js +2 -2
- package/esm/modules/xrange.src.js +18 -39
- package/esm/standalone-navigator.js +4 -4
- package/esm/standalone-navigator.src.js +876 -776
- package/esm/themes/adaptive.js +2 -2
- package/esm/themes/adaptive.src.js +17 -38
- package/esm/themes/avocado.js +2 -2
- package/esm/themes/avocado.src.js +17 -38
- package/esm/themes/dark-unica.js +2 -2
- package/esm/themes/dark-unica.src.js +17 -38
- package/esm/themes/grid-light.js +2 -2
- package/esm/themes/grid-light.src.js +17 -38
- package/esm/themes/high-contrast.js +2 -2
- package/esm/themes/high-contrast.src.js +17 -38
- package/esm/themes/sand-signika.js +2 -2
- package/esm/themes/sand-signika.src.js +17 -38
- package/esm/themes/sunset.js +2 -2
- package/esm/themes/sunset.src.js +17 -38
- package/highcharts-3d.js +2 -2
- package/highcharts-3d.src.js +43 -66
- package/highcharts-autoload.d.ts +0 -1
- package/highcharts-autoload.js +4 -4
- package/highcharts-autoload.src.d.ts +0 -1
- package/highcharts-autoload.src.js +833 -778
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +895 -839
- package/highcharts-more.d.ts +10 -0
- package/highcharts-more.js +2 -2
- package/highcharts-more.src.d.ts +10 -0
- package/highcharts-more.src.js +147 -125
- package/highcharts.d.ts +2785 -80144
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +2785 -80144
- package/highcharts.src.js +832 -777
- package/highmaps.js +4 -4
- package/highmaps.src.js +915 -845
- package/highstock.js +4 -4
- package/highstock.src.js +903 -874
- package/i18n/fr-FR.js +2 -2
- package/i18n/fr-FR.src.js +26 -37
- package/i18n/nb-NO.js +2 -2
- package/i18n/nb-NO.src.js +26 -37
- package/i18n/zh-CN.js +2 -2
- package/i18n/zh-CN.src.js +26 -37
- package/indicators/acceleration-bands.js +2 -2
- package/indicators/acceleration-bands.src.js +23 -44
- package/indicators/accumulation-distribution.js +2 -2
- package/indicators/accumulation-distribution.src.js +22 -44
- package/indicators/ao.js +2 -2
- package/indicators/ao.src.js +23 -44
- package/indicators/apo.js +2 -2
- package/indicators/apo.src.js +23 -44
- package/indicators/aroon-oscillator.js +2 -2
- package/indicators/aroon-oscillator.src.js +24 -45
- package/indicators/aroon.js +2 -2
- package/indicators/aroon.src.js +23 -44
- package/indicators/atr.js +2 -2
- package/indicators/atr.src.js +22 -44
- package/indicators/bollinger-bands.js +2 -2
- package/indicators/bollinger-bands.src.js +22 -44
- package/indicators/cci.js +2 -2
- package/indicators/cci.src.js +22 -44
- package/indicators/chaikin.js +2 -2
- package/indicators/chaikin.src.js +23 -45
- package/indicators/cmf.js +2 -2
- package/indicators/cmf.src.js +22 -44
- package/indicators/cmo.js +2 -2
- package/indicators/cmo.src.js +22 -44
- package/indicators/dema.js +2 -2
- package/indicators/dema.src.js +23 -44
- package/indicators/disparity-index.js +2 -2
- package/indicators/disparity-index.src.js +25 -46
- package/indicators/dmi.js +2 -2
- package/indicators/dmi.src.js +25 -46
- package/indicators/dpo.js +2 -2
- package/indicators/dpo.src.js +23 -44
- package/indicators/ichimoku-kinko-hyo.js +2 -2
- package/indicators/ichimoku-kinko-hyo.src.js +23 -45
- package/indicators/indicators-all.js +2 -2
- package/indicators/indicators-all.src.js +81 -104
- package/indicators/indicators.js +2 -2
- package/indicators/indicators.src.js +53 -51
- package/indicators/keltner-channels.js +2 -2
- package/indicators/keltner-channels.src.js +23 -44
- package/indicators/klinger.js +2 -2
- package/indicators/klinger.src.js +22 -43
- package/indicators/macd.js +2 -2
- package/indicators/macd.src.js +22 -44
- package/indicators/mfi.js +2 -2
- package/indicators/mfi.src.js +22 -44
- package/indicators/momentum.js +2 -2
- package/indicators/momentum.src.js +22 -44
- package/indicators/natr.js +2 -2
- package/indicators/natr.src.js +22 -44
- package/indicators/obv.js +2 -2
- package/indicators/obv.src.js +22 -44
- package/indicators/pivot-points.js +2 -2
- package/indicators/pivot-points.src.js +22 -44
- package/indicators/ppo.js +2 -2
- package/indicators/ppo.src.js +23 -44
- package/indicators/price-channel.js +2 -2
- package/indicators/price-channel.src.js +23 -44
- package/indicators/price-envelopes.js +2 -2
- package/indicators/price-envelopes.src.js +22 -44
- package/indicators/psar.js +2 -2
- package/indicators/psar.src.js +22 -44
- package/indicators/regressions.js +2 -2
- package/indicators/regressions.src.js +22 -47
- package/indicators/roc.js +2 -2
- package/indicators/roc.src.js +22 -44
- package/indicators/rsi.js +2 -2
- package/indicators/rsi.src.js +22 -44
- package/indicators/slow-stochastic.js +2 -2
- package/indicators/slow-stochastic.src.js +22 -43
- package/indicators/stochastic.js +2 -2
- package/indicators/stochastic.src.js +25 -46
- package/indicators/supertrend.js +2 -2
- package/indicators/supertrend.src.js +24 -45
- package/indicators/tema.js +2 -2
- package/indicators/tema.src.js +23 -44
- package/indicators/trendline.js +2 -2
- package/indicators/trendline.src.js +22 -44
- package/indicators/trix.js +2 -2
- package/indicators/trix.src.js +23 -44
- package/indicators/volume-by-price.js +2 -2
- package/indicators/volume-by-price.src.js +23 -44
- package/indicators/vwap.js +2 -2
- package/indicators/vwap.src.js +22 -44
- package/indicators/williams-r.js +2 -2
- package/indicators/williams-r.src.js +23 -44
- package/indicators/wma.js +2 -2
- package/indicators/wma.src.js +22 -44
- package/indicators/zigzag.js +2 -2
- package/indicators/zigzag.src.js +22 -44
- package/modules/accessibility.js +2 -2
- package/modules/accessibility.src.js +95 -81
- package/modules/annotations-advanced.js +9 -9
- package/modules/annotations-advanced.src.js +41 -63
- package/modules/annotations.js +3 -3
- package/modules/annotations.src.js +41 -63
- package/modules/arc-diagram.js +2 -2
- package/modules/arc-diagram.src.js +23 -44
- package/modules/arrow-symbols.js +2 -2
- package/modules/arrow-symbols.src.js +17 -38
- package/modules/boost-canvas.js +2 -2
- package/modules/boost-canvas.src.js +62 -68
- package/modules/boost.js +2 -2
- package/modules/boost.src.js +61 -67
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.src.js +26 -46
- package/modules/bullet.js +2 -2
- package/modules/bullet.src.js +23 -44
- package/modules/coloraxis.js +2 -2
- package/modules/coloraxis.src.js +97 -101
- package/modules/contour.js +5 -5
- package/modules/contour.src.js +111 -117
- package/modules/current-date-indicator.js +2 -2
- package/modules/current-date-indicator.src.js +17 -38
- package/modules/cylinder.js +2 -2
- package/modules/cylinder.src.js +23 -44
- package/modules/data-sorting.js +2 -2
- package/modules/data-sorting.src.js +18 -39
- package/modules/data-tools.js +2 -2
- package/modules/data-tools.src.js +110 -67
- package/modules/data.js +4 -4
- package/modules/data.src.js +58 -53
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.src.js +57 -53
- package/modules/debugger.js +2 -2
- package/modules/debugger.src.js +17 -38
- package/modules/dependency-wheel.js +2 -2
- package/modules/dependency-wheel.src.js +22 -43
- package/modules/dotplot.js +2 -2
- package/modules/dotplot.src.js +22 -43
- package/modules/drag-panes.js +2 -2
- package/modules/drag-panes.src.js +22 -46
- package/modules/draggable-points.js +2 -2
- package/modules/draggable-points.src.js +17 -38
- package/modules/drilldown.js +2 -2
- package/modules/drilldown.src.js +45 -59
- package/modules/dumbbell.js +2 -2
- package/modules/dumbbell.src.js +23 -44
- package/modules/export-data.js +2 -2
- package/modules/export-data.src.js +47 -48
- package/modules/exporting.js +2 -2
- package/modules/exporting.src.js +31 -52
- package/modules/flowmap.js +2 -2
- package/modules/flowmap.src.js +22 -43
- package/modules/full-screen.js +2 -2
- package/modules/full-screen.src.js +22 -43
- package/modules/funnel.js +2 -2
- package/modules/funnel.src.js +26 -47
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.src.js +23 -44
- package/modules/gantt.js +8 -8
- package/modules/gantt.src.js +93 -113
- package/modules/geoheatmap.js +2 -2
- package/modules/geoheatmap.src.js +23 -44
- package/modules/grid-axis.js +2 -2
- package/modules/grid-axis.src.js +39 -56
- package/modules/heatmap.js +4 -4
- package/modules/heatmap.src.js +101 -105
- package/modules/heikinashi.js +2 -2
- package/modules/heikinashi.src.js +23 -44
- package/modules/histogram-bellcurve.js +2 -2
- package/modules/histogram-bellcurve.src.js +24 -45
- package/modules/hollowcandlestick.js +2 -2
- package/modules/hollowcandlestick.src.js +23 -44
- package/modules/item-series.js +2 -2
- package/modules/item-series.src.js +24 -45
- package/modules/lollipop.js +2 -2
- package/modules/lollipop.src.js +23 -44
- package/modules/map.js +4 -4
- package/modules/map.src.js +146 -128
- package/modules/marker-clusters.js +2 -2
- package/modules/marker-clusters.src.js +49 -46
- package/modules/mouse-wheel-zoom.js +2 -2
- package/modules/mouse-wheel-zoom.src.js +17 -38
- package/modules/navigator.js +2 -2
- package/modules/navigator.src.js +77 -72
- package/modules/networkgraph.js +2 -2
- package/modules/networkgraph.src.js +29 -50
- package/modules/no-data-to-display.js +2 -2
- package/modules/no-data-to-display.src.js +22 -43
- package/modules/non-cartesian-zoom.js +2 -2
- package/modules/non-cartesian-zoom.src.js +17 -38
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +24 -45
- package/modules/organization.js +3 -3
- package/modules/organization.src.js +25 -44
- package/modules/parallel-coordinates.js +2 -2
- package/modules/parallel-coordinates.src.js +29 -49
- package/modules/pareto.js +2 -2
- package/modules/pareto.src.js +26 -47
- package/modules/pathfinder.js +2 -2
- package/modules/pathfinder.src.js +25 -44
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.src.js +17 -38
- package/modules/pictorial.js +2 -2
- package/modules/pictorial.src.js +76 -70
- package/modules/pointandfigure.js +2 -2
- package/modules/pointandfigure.src.js +52 -49
- package/modules/price-indicator.js +2 -2
- package/modules/price-indicator.src.js +17 -38
- package/modules/pyramid3d.js +2 -2
- package/modules/pyramid3d.src.js +23 -44
- package/modules/renko.js +2 -2
- package/modules/renko.src.js +23 -45
- package/modules/sankey.js +2 -2
- package/modules/sankey.src.js +29 -51
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +22 -43
- package/modules/series-on-point.js +2 -2
- package/modules/series-on-point.src.js +52 -49
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.src.js +23 -44
- package/modules/sonification.js +2 -2
- package/modules/sonification.src.js +23 -44
- package/modules/static-scale.js +2 -2
- package/modules/static-scale.src.js +30 -49
- package/modules/stock-tools.js +2 -2
- package/modules/stock-tools.src.js +34 -55
- package/modules/stock.js +6 -6
- package/modules/stock.src.js +132 -154
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +23 -44
- package/modules/sunburst.js +2 -2
- package/modules/sunburst.src.js +43 -62
- package/modules/textpath.js +2 -2
- package/modules/textpath.src.js +17 -38
- package/modules/tiledwebmap.js +3 -3
- package/modules/tiledwebmap.src.js +24 -45
- package/modules/tilemap.js +2 -2
- package/modules/tilemap.src.js +27 -45
- package/modules/timeline.js +2 -2
- package/modules/timeline.src.js +24 -45
- package/modules/treegraph.js +2 -2
- package/modules/treegraph.src.js +28 -47
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.src.js +52 -72
- package/modules/treemap.js +2 -2
- package/modules/treemap.src.js +39 -58
- package/modules/variable-pie.js +2 -2
- package/modules/variable-pie.src.js +24 -45
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +33 -51
- package/modules/vector.js +2 -2
- package/modules/vector.src.js +23 -44
- package/modules/venn.js +2 -2
- package/modules/venn.src.js +23 -44
- package/modules/windbarb.js +2 -2
- package/modules/windbarb.src.js +23 -44
- package/modules/wordcloud.js +2 -2
- package/modules/wordcloud.src.js +23 -44
- package/modules/xrange.js +2 -2
- package/modules/xrange.src.js +23 -44
- package/options/abands.d.ts +183 -8
- package/options/abands.src.d.ts +183 -8
- package/options/ad.d.ts +176 -5
- package/options/ad.src.d.ts +176 -5
- package/options/ao.d.ts +202 -0
- package/options/ao.src.d.ts +202 -0
- package/options/apo.d.ts +178 -8
- package/options/apo.src.d.ts +178 -8
- package/options/arcdiagram.d.ts +785 -0
- package/options/arcdiagram.src.d.ts +785 -0
- package/options/area.d.ts +226 -0
- package/options/area.src.d.ts +226 -0
- package/options/arearange.d.ts +229 -8
- package/options/arearange.src.d.ts +229 -8
- package/options/areaspline.d.ts +1344 -8
- package/options/areaspline.src.d.ts +1344 -8
- package/options/areasplinerange.d.ts +972 -8
- package/options/areasplinerange.src.d.ts +972 -8
- package/options/aroon.d.ts +219 -0
- package/options/aroon.src.d.ts +219 -0
- package/options/aroonoscillator.d.ts +1140 -8
- package/options/aroonoscillator.src.d.ts +1140 -8
- package/options/atr.d.ts +210 -0
- package/options/atr.src.d.ts +210 -0
- package/options/bar.d.ts +183 -10
- package/options/bar.src.d.ts +183 -10
- package/options/bb.d.ts +1232 -0
- package/options/bb.src.d.ts +1232 -0
- package/options/bellcurve.d.ts +1167 -8
- package/options/bellcurve.src.d.ts +1167 -8
- package/options/boxplot.d.ts +163 -10
- package/options/boxplot.src.d.ts +163 -10
- package/options/bubble.d.ts +1005 -8
- package/options/bubble.src.d.ts +1005 -8
- package/options/bullet.d.ts +953 -8
- package/options/bullet.src.d.ts +953 -8
- package/options/candlestick.d.ts +1309 -8
- package/options/candlestick.src.d.ts +1309 -8
- package/options/cci.d.ts +210 -0
- package/options/cci.src.d.ts +210 -0
- package/options/chaikin.d.ts +180 -8
- package/options/chaikin.src.d.ts +180 -8
- package/options/cmf.d.ts +211 -0
- package/options/cmf.src.d.ts +211 -0
- package/options/cmo.d.ts +175 -5
- package/options/cmo.src.d.ts +175 -5
- package/options/column.d.ts +252 -2
- package/options/column.src.d.ts +252 -2
- package/options/columnpyramid.d.ts +1296 -0
- package/options/columnpyramid.src.d.ts +1296 -0
- package/options/columnrange.d.ts +216 -2
- package/options/columnrange.src.d.ts +216 -2
- package/options/contour.d.ts +1148 -0
- package/options/contour.src.d.ts +1148 -0
- package/options/cylinder.d.ts +183 -2
- package/options/cylinder.src.d.ts +183 -2
- package/options/dema.d.ts +1181 -0
- package/options/dema.src.d.ts +1181 -0
- package/options/dependencywheel.d.ts +315 -0
- package/options/dependencywheel.src.d.ts +315 -0
- package/options/disparityindex.d.ts +1157 -8
- package/options/disparityindex.src.d.ts +1157 -8
- package/options/dmi.d.ts +1227 -0
- package/options/dmi.src.d.ts +1227 -0
- package/options/dpo.d.ts +1140 -8
- package/options/dpo.src.d.ts +1140 -8
- package/options/dumbbell.d.ts +286 -0
- package/options/dumbbell.src.d.ts +286 -0
- package/options/ema.d.ts +1156 -5
- package/options/ema.src.d.ts +1156 -5
- package/options/errorbar.d.ts +1286 -0
- package/options/errorbar.src.d.ts +1286 -0
- package/options/flags.d.ts +1269 -8
- package/options/flags.src.d.ts +1269 -8
- package/options/flowmap.d.ts +551 -0
- package/options/flowmap.src.d.ts +551 -0
- package/options/funnel.d.ts +728 -10
- package/options/funnel.src.d.ts +728 -10
- package/options/gantt.d.ts +1011 -0
- package/options/gantt.src.d.ts +1011 -0
- package/options/gauge.d.ts +675 -0
- package/options/gauge.src.d.ts +675 -0
- package/options/geoheatmap.d.ts +585 -8
- package/options/geoheatmap.src.d.ts +585 -8
- package/options/heatmap.d.ts +1054 -8
- package/options/heatmap.src.d.ts +1054 -8
- package/options/heikinashi.d.ts +178 -10
- package/options/heikinashi.src.d.ts +178 -10
- package/options/histogram.d.ts +1226 -0
- package/options/histogram.src.d.ts +1226 -0
- package/options/hlc.d.ts +223 -2
- package/options/hlc.src.d.ts +223 -2
- package/options/hollowcandlestick.d.ts +1335 -0
- package/options/hollowcandlestick.src.d.ts +1335 -0
- package/options/ikh.d.ts +228 -5
- package/options/ikh.src.d.ts +228 -5
- package/options/item.d.ts +217 -8
- package/options/item.src.d.ts +217 -8
- package/options/keltnerchannels.d.ts +1220 -0
- package/options/keltnerchannels.src.d.ts +1220 -0
- package/options/klinger.d.ts +1162 -0
- package/options/klinger.src.d.ts +1162 -0
- package/options/line.d.ts +1377 -8
- package/options/line.src.d.ts +1377 -8
- package/options/linearregression.d.ts +199 -5
- package/options/linearregression.src.d.ts +199 -5
- package/options/linearregressionangle.d.ts +1157 -5
- package/options/linearregressionangle.src.d.ts +1157 -5
- package/options/linearregressionintercept.d.ts +240 -0
- package/options/linearregressionintercept.src.d.ts +240 -0
- package/options/linearregressionslope.d.ts +240 -0
- package/options/linearregressionslope.src.d.ts +240 -0
- package/options/lollipop.d.ts +949 -0
- package/options/lollipop.src.d.ts +949 -0
- package/options/macd.d.ts +254 -0
- package/options/macd.src.d.ts +254 -0
- package/options/map.d.ts +150 -8
- package/options/map.src.d.ts +150 -8
- package/options/mapbubble.d.ts +1016 -8
- package/options/mapbubble.src.d.ts +1016 -8
- package/options/mapline.d.ts +994 -0
- package/options/mapline.src.d.ts +994 -0
- package/options/mappoint.d.ts +1105 -1
- package/options/mappoint.src.d.ts +1105 -1
- package/options/mfi.d.ts +181 -5
- package/options/mfi.src.d.ts +181 -5
- package/options/momentum.d.ts +215 -0
- package/options/momentum.src.d.ts +215 -0
- package/options/natr.d.ts +170 -5
- package/options/natr.src.d.ts +170 -5
- package/options/networkgraph.d.ts +365 -0
- package/options/networkgraph.src.d.ts +365 -0
- package/options/obv.d.ts +170 -5
- package/options/obv.src.d.ts +170 -5
- package/options/ohlc.d.ts +183 -7
- package/options/ohlc.src.d.ts +183 -7
- package/options/organization.d.ts +808 -0
- package/options/organization.src.d.ts +808 -0
- package/options/packedbubble.d.ts +877 -8
- package/options/packedbubble.src.d.ts +877 -8
- package/options/pareto.d.ts +1028 -0
- package/options/pareto.src.d.ts +1028 -0
- package/options/pc.d.ts +183 -8
- package/options/pc.src.d.ts +183 -8
- package/options/pictorial.d.ts +202 -2
- package/options/pictorial.src.d.ts +202 -2
- package/options/pie.d.ts +196 -8
- package/options/pie.src.d.ts +196 -8
- package/options/pivotpoints.d.ts +1199 -0
- package/options/pivotpoints.src.d.ts +1199 -0
- package/options/pointandfigure.d.ts +980 -0
- package/options/pointandfigure.src.d.ts +980 -0
- package/options/polygon.d.ts +234 -0
- package/options/polygon.src.d.ts +234 -0
- package/options/ppo.d.ts +1156 -8
- package/options/ppo.src.d.ts +1156 -8
- package/options/priceenvelopes.d.ts +1229 -0
- package/options/priceenvelopes.src.d.ts +1229 -0
- package/options/psar.d.ts +1156 -5
- package/options/psar.src.d.ts +1156 -5
- package/options/pyramid.d.ts +837 -2
- package/options/pyramid.src.d.ts +837 -2
- package/options/renko.d.ts +247 -10
- package/options/renko.src.d.ts +247 -10
- package/options/roc.d.ts +1215 -0
- package/options/roc.src.d.ts +1215 -0
- package/options/rsi.d.ts +1157 -5
- package/options/rsi.src.d.ts +1157 -5
- package/options/sankey.d.ts +276 -8
- package/options/sankey.src.d.ts +276 -8
- package/options/scatter.d.ts +3043 -1018
- package/options/scatter.src.d.ts +3043 -1018
- package/options/series.d.ts +175 -0
- package/options/series.src.d.ts +175 -0
- package/options/slowstochastic.d.ts +183 -0
- package/options/slowstochastic.src.d.ts +183 -0
- package/options/sma.d.ts +211 -0
- package/options/sma.src.d.ts +211 -0
- package/options/solidgauge.d.ts +218 -0
- package/options/solidgauge.src.d.ts +218 -0
- package/options/spline.d.ts +230 -0
- package/options/spline.src.d.ts +230 -0
- package/options/stochastic.d.ts +1170 -8
- package/options/stochastic.src.d.ts +1170 -8
- package/options/streamgraph.d.ts +1345 -8
- package/options/streamgraph.src.d.ts +1345 -8
- package/options/sunburst.d.ts +286 -9
- package/options/sunburst.src.d.ts +286 -9
- package/options/supertrend.d.ts +1208 -0
- package/options/supertrend.src.d.ts +1208 -0
- package/options/tema.d.ts +1140 -8
- package/options/tema.src.d.ts +1140 -8
- package/options/tiledwebmap.d.ts +164 -0
- package/options/tiledwebmap.src.d.ts +164 -0
- package/options/tilemap.d.ts +687 -0
- package/options/tilemap.src.d.ts +687 -0
- package/options/timeline.d.ts +282 -0
- package/options/timeline.src.d.ts +282 -0
- package/options/treegraph.d.ts +982 -0
- package/options/treegraph.src.d.ts +982 -0
- package/options/treemap.d.ts +1396 -22
- package/options/treemap.src.d.ts +1396 -22
- package/options/trendline.d.ts +211 -0
- package/options/trendline.src.d.ts +211 -0
- package/options/trix.d.ts +178 -8
- package/options/trix.src.d.ts +178 -8
- package/options/variablepie.d.ts +686 -8
- package/options/variablepie.src.d.ts +686 -8
- package/options/variwide.d.ts +178 -2
- package/options/variwide.src.d.ts +178 -2
- package/options/vbp.d.ts +576 -0
- package/options/vbp.src.d.ts +576 -0
- package/options/vector.d.ts +660 -0
- package/options/vector.src.d.ts +660 -0
- package/options/venn.d.ts +654 -0
- package/options/venn.src.d.ts +654 -0
- package/options/vwap.d.ts +1157 -5
- package/options/vwap.src.d.ts +1157 -5
- package/options/waterfall.d.ts +1254 -8
- package/options/waterfall.src.d.ts +1254 -8
- package/options/williamsr.d.ts +209 -0
- package/options/williamsr.src.d.ts +209 -0
- package/options/windbarb.d.ts +222 -2
- package/options/windbarb.src.d.ts +222 -2
- package/options/wma.d.ts +1156 -5
- package/options/wma.src.d.ts +1156 -5
- package/options/wordcloud.d.ts +682 -0
- package/options/wordcloud.src.d.ts +682 -0
- package/options/xrange.d.ts +1168 -0
- package/options/xrange.src.d.ts +1168 -0
- package/options/zigzag.d.ts +1197 -0
- package/options/zigzag.src.d.ts +1197 -0
- package/package.json +1 -1
- package/standalone-navigator.js +4 -4
- package/standalone-navigator.src.js +884 -803
- package/themes/adaptive.js +2 -2
- package/themes/adaptive.src.js +22 -43
- package/themes/avocado.js +2 -2
- package/themes/avocado.src.js +17 -38
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.src.js +17 -38
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.src.js +17 -38
- package/themes/high-contrast.js +2 -2
- package/themes/high-contrast.src.js +17 -38
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.src.js +17 -38
- package/themes/sunset.js +2 -2
- package/themes/sunset.src.js +17 -38
|
@@ -5,9 +5,105 @@
|
|
|
5
5
|
*!*/
|
|
6
6
|
import * as Highcharts from "../highcharts.src";
|
|
7
7
|
declare module "../highcharts.src" {
|
|
8
|
+
/**
|
|
9
|
+
* (Highstock) Point accessibility options for a series.
|
|
10
|
+
*/
|
|
11
|
+
interface PlotPointandfigureAccessibilityPointOptions {
|
|
12
|
+
/**
|
|
13
|
+
* (Highstock) Date format to use for points on datetime axes when
|
|
14
|
+
* 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
|
+
* (Highstock) Formatter function to determine the date/time format used
|
|
23
|
+
* with points on datetime axes when describing them to screen reader
|
|
24
|
+
* users. Receives one argument, `point`, referring to the point to
|
|
25
|
+
* describe. Should return a date format string compatible with
|
|
26
|
+
* dateFormat.
|
|
27
|
+
*/
|
|
28
|
+
dateFormatter?: Highcharts.ScreenReaderFormatterCallbackFunction<Highcharts.Point>;
|
|
29
|
+
/**
|
|
30
|
+
* (Highstock) Whether or not to describe points with the value `null`
|
|
31
|
+
* to assistive technology, such as screen readers.
|
|
32
|
+
*/
|
|
33
|
+
describeNull?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* (Highstock) A format string to use instead of the default for point
|
|
36
|
+
* 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
|
+
* (Highstock) Formatter function to use instead of the default for
|
|
46
|
+
* point descriptions. Same as
|
|
47
|
+
* `accessibility.point.descriptionFormatter`, but applies to a series
|
|
48
|
+
* instead of the whole chart.
|
|
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>;
|
|
55
|
+
/**
|
|
56
|
+
* (Highstock) Decimals to use for the values in the point descriptions.
|
|
57
|
+
* Uses tooltip.valueDecimals if not defined.
|
|
58
|
+
*/
|
|
59
|
+
valueDecimals?: number;
|
|
60
|
+
/**
|
|
61
|
+
* (Highstock) Format to use for describing the values of data points to
|
|
62
|
+
* assistive technology - including screen readers. The point context is
|
|
63
|
+
* 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
|
+
* (Highstock) Prefix to add to the values in the point descriptions.
|
|
76
|
+
* Uses tooltip.valuePrefix if not defined.
|
|
77
|
+
*/
|
|
78
|
+
valuePrefix?: string;
|
|
79
|
+
/**
|
|
80
|
+
* (Highstock) Suffix to add to the values in the point descriptions.
|
|
81
|
+
* Uses tooltip.valueSuffix if not defined.
|
|
82
|
+
*/
|
|
83
|
+
valueSuffix?: string;
|
|
84
|
+
}
|
|
8
85
|
interface PlotPointandfigureDataGroupingOptions {
|
|
9
86
|
enabled?: boolean;
|
|
10
87
|
}
|
|
88
|
+
/**
|
|
89
|
+
* (Highcharts, Highstock, Highmaps, Gantt) Enable or disable the initial
|
|
90
|
+
* animation when a series is displayed for the `dataLabels`. The animation
|
|
91
|
+
* can also be set as a configuration object. Please note that this option
|
|
92
|
+
* only applies to the initial animation.
|
|
93
|
+
*
|
|
94
|
+
* For other animations, see chart.animation and the animation parameter
|
|
95
|
+
* under the API methods. The following properties are supported:
|
|
96
|
+
*
|
|
97
|
+
* - `defer`: The animation delay time in milliseconds.
|
|
98
|
+
*/
|
|
99
|
+
interface PlotPointandfigureDataLabelsAnimationOptions {
|
|
100
|
+
/**
|
|
101
|
+
* (Highcharts, Highstock, Highmaps, Gantt) The animation delay time in
|
|
102
|
+
* milliseconds. Set to `0` to render the data labels immediately. As
|
|
103
|
+
* `undefined` inherits defer time from the series.animation.defer.
|
|
104
|
+
*/
|
|
105
|
+
defer?: number;
|
|
106
|
+
}
|
|
11
107
|
/**
|
|
12
108
|
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
13
109
|
* labels, appearing next to each data point.
|
|
@@ -305,6 +401,27 @@ declare module "../highcharts.src" {
|
|
|
305
401
|
*/
|
|
306
402
|
zIndex?: number;
|
|
307
403
|
}
|
|
404
|
+
/**
|
|
405
|
+
* (Highcharts, Highstock) Options for series data sorting.
|
|
406
|
+
*/
|
|
407
|
+
interface PlotPointandfigureDataSortingOptions {
|
|
408
|
+
/**
|
|
409
|
+
* (Highcharts, Highstock) Enable or disable data sorting for the
|
|
410
|
+
* series. Use xAxis.reversed to change the sorting order.
|
|
411
|
+
*/
|
|
412
|
+
enabled?: boolean;
|
|
413
|
+
/**
|
|
414
|
+
* (Highcharts, Highstock) Whether to allow matching points by name in
|
|
415
|
+
* an update. If this option is disabled, points will be matched by
|
|
416
|
+
* order.
|
|
417
|
+
*/
|
|
418
|
+
matchByName?: boolean;
|
|
419
|
+
/**
|
|
420
|
+
* (Highcharts, Highstock) Determines what data value should be used to
|
|
421
|
+
* sort by.
|
|
422
|
+
*/
|
|
423
|
+
sortKey?: string;
|
|
424
|
+
}
|
|
308
425
|
/**
|
|
309
426
|
* (Highcharts, Highstock) Apply a jitter effect for the rendered markers.
|
|
310
427
|
* When plotting discrete values, a little random noise may help telling the
|
|
@@ -333,18 +450,38 @@ declare module "../highcharts.src" {
|
|
|
333
450
|
*/
|
|
334
451
|
y?: number;
|
|
335
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* (Highcharts, Highstock, Gantt) Styles for the series label. The color
|
|
455
|
+
* defaults to the series color, or a contrast color if `onArea`.
|
|
456
|
+
*/
|
|
457
|
+
interface PlotPointandfigureLabelStyleOptions {
|
|
458
|
+
fontSize?: number;
|
|
459
|
+
fontWeight?: string;
|
|
460
|
+
}
|
|
336
461
|
/**
|
|
337
462
|
* (Highstock) Animation when hovering over the marker.
|
|
338
463
|
*/
|
|
339
464
|
interface PlotPointandfigureMarkerStatesHoverAnimationOptions {
|
|
340
465
|
duration?: number;
|
|
341
466
|
}
|
|
467
|
+
/**
|
|
468
|
+
* (Highstock) Animation when hovering over the marker.
|
|
469
|
+
*/
|
|
470
|
+
interface PlotPointandfigureMarkerStatesSelectAnimationOptions {
|
|
471
|
+
duration?: number;
|
|
472
|
+
}
|
|
342
473
|
/**
|
|
343
474
|
* (Highstock) Animation when hovering over the marker.
|
|
344
475
|
*/
|
|
345
476
|
interface PlotPointandfigureMarkerUpStatesHoverAnimationOptions {
|
|
346
477
|
duration?: number;
|
|
347
478
|
}
|
|
479
|
+
/**
|
|
480
|
+
* (Highstock) Animation when hovering over the marker.
|
|
481
|
+
*/
|
|
482
|
+
interface PlotPointandfigureMarkerUpStatesSelectAnimationOptions {
|
|
483
|
+
duration?: number;
|
|
484
|
+
}
|
|
348
485
|
/**
|
|
349
486
|
* (Highstock) Options for the connector in the _Series on point_ feature.
|
|
350
487
|
*
|
|
@@ -366,6 +503,31 @@ declare module "../highcharts.src" {
|
|
|
366
503
|
*/
|
|
367
504
|
width?: number;
|
|
368
505
|
}
|
|
506
|
+
/**
|
|
507
|
+
* (Highstock) Options for the _Series on point_ feature. Only `pie` and
|
|
508
|
+
* `sunburst` series are supported at this moment.
|
|
509
|
+
*/
|
|
510
|
+
interface PlotPointandfigureOnPointOptions {
|
|
511
|
+
/**
|
|
512
|
+
* (Highstock) Options for the connector in the _Series on point_
|
|
513
|
+
* feature.
|
|
514
|
+
*
|
|
515
|
+
* In styled mode, the connector can be styled with the
|
|
516
|
+
* `.highcharts-connector-seriesonpoint` class name.
|
|
517
|
+
*/
|
|
518
|
+
connectorOptions?: (Highcharts.PlotPointandfigureOnPointConnectorOptions|Highcharts.SVGAttributes);
|
|
519
|
+
/**
|
|
520
|
+
* (Highstock) The `id` of the point that we connect the series to. Only
|
|
521
|
+
* points with a given `plotX` and `plotY` values and map points are
|
|
522
|
+
* valid.
|
|
523
|
+
*/
|
|
524
|
+
id?: string;
|
|
525
|
+
/**
|
|
526
|
+
* (Highstock) Options allowing to set a position and an offset of the
|
|
527
|
+
* series in the _Series on point_ feature.
|
|
528
|
+
*/
|
|
529
|
+
position?: (object|Highcharts.PlotPointandfigureOnPointPositionOptions);
|
|
530
|
+
}
|
|
369
531
|
/**
|
|
370
532
|
* (Highstock) Options allowing to set a position and an offset of the
|
|
371
533
|
* series in the _Series on point_ feature.
|
|
@@ -394,6 +556,701 @@ declare module "../highcharts.src" {
|
|
|
394
556
|
*/
|
|
395
557
|
y?: number;
|
|
396
558
|
}
|
|
559
|
+
/**
|
|
560
|
+
* (Highstock) The Point and Figure series represents changes in stock price
|
|
561
|
+
* movements, without focusing on the time and volume. Each data point is
|
|
562
|
+
* created when the `boxSize` criteria is met. Opposite column of points
|
|
563
|
+
* gets created only when the `reversalAmount` threshold is met.
|
|
564
|
+
*
|
|
565
|
+
* Configuration options for the series are given in three levels:
|
|
566
|
+
*
|
|
567
|
+
* 1. Options for all series in a chart are defined in the
|
|
568
|
+
* plotOptions.series object.
|
|
569
|
+
*
|
|
570
|
+
* 2. Options for all `pointandfigure` series are defined in
|
|
571
|
+
* plotOptions.pointandfigure.
|
|
572
|
+
*
|
|
573
|
+
* 3. Options for one single series are given in the series instance array.
|
|
574
|
+
* (see online documentation for example)
|
|
575
|
+
*
|
|
576
|
+
* **TypeScript:**
|
|
577
|
+
*
|
|
578
|
+
* - type option should always be set, otherwise a broad set of unsupported
|
|
579
|
+
* options is allowed.
|
|
580
|
+
*
|
|
581
|
+
* - when accessing an array of series, the combined set of all series types
|
|
582
|
+
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
583
|
+
* specific type can be done by checking the `type` property. (see online
|
|
584
|
+
* documentation for example)
|
|
585
|
+
*/
|
|
586
|
+
interface PlotPointandfigureOptions {
|
|
587
|
+
/**
|
|
588
|
+
* (Highstock) Accessibility options for a series.
|
|
589
|
+
*/
|
|
590
|
+
accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
|
|
591
|
+
/**
|
|
592
|
+
* (Highstock) Allow this series' points to be selected by clicking on
|
|
593
|
+
* the graphic (columns, point markers, pie slices, map areas etc).
|
|
594
|
+
*
|
|
595
|
+
* The selected points can be handled by point select and unselect
|
|
596
|
+
* events, or collectively by the getSelectedPoints function.
|
|
597
|
+
*
|
|
598
|
+
* And alternative way of selecting points is through dragging.
|
|
599
|
+
*/
|
|
600
|
+
allowPointSelect?: boolean;
|
|
601
|
+
/**
|
|
602
|
+
* (Highstock) Enable or disable the initial animation when a series is
|
|
603
|
+
* displayed. The animation can also be set as a configuration object.
|
|
604
|
+
* Please note that this option only applies to the initial animation of
|
|
605
|
+
* the series itself. For other animations, see chart.animation and the
|
|
606
|
+
* animation parameter under the API methods. The following properties
|
|
607
|
+
* are supported:
|
|
608
|
+
*
|
|
609
|
+
* - `defer`: The animation delay time in milliseconds.
|
|
610
|
+
*
|
|
611
|
+
* - `duration`: The duration of the animation in milliseconds.
|
|
612
|
+
* (Defaults to `1000`)
|
|
613
|
+
*
|
|
614
|
+
* - `easing`: Can be a string reference to an easing function set on
|
|
615
|
+
* the `Math` object or a function. See the _Custom easing function_
|
|
616
|
+
* demo below. (Defaults to `easeInOutSine`)
|
|
617
|
+
*
|
|
618
|
+
* Due to poor performance, animation is disabled in old IE browsers for
|
|
619
|
+
* several chart types.
|
|
620
|
+
*/
|
|
621
|
+
animation?: (boolean|Highcharts.AnimationOptionsObject);
|
|
622
|
+
/**
|
|
623
|
+
* (Highstock) For some series, there is a limit that shuts down
|
|
624
|
+
* animation by default when the total number of points in the chart is
|
|
625
|
+
* too high. For example, for a column chart and its derivatives,
|
|
626
|
+
* animation does not run if there is more than 250 points totally. To
|
|
627
|
+
* disable this cap, set `animationLimit` to `Infinity`. This option
|
|
628
|
+
* works if animation is fired on individual points, not on a group of
|
|
629
|
+
* points like e.g. during the initial animation.
|
|
630
|
+
*/
|
|
631
|
+
animationLimit?: number;
|
|
632
|
+
/**
|
|
633
|
+
* (Highstock) Price increment that determines if a new point should be
|
|
634
|
+
* added to the column.
|
|
635
|
+
*/
|
|
636
|
+
boxSize?: (number|string);
|
|
637
|
+
/**
|
|
638
|
+
* (Highstock) An additional class name to apply to the series'
|
|
639
|
+
* graphical elements. This option does not replace default class names
|
|
640
|
+
* of the graphical element. Changes to the series' color will also be
|
|
641
|
+
* reflected in a chart's legend and tooltip.
|
|
642
|
+
*/
|
|
643
|
+
className?: string;
|
|
644
|
+
/**
|
|
645
|
+
* (Highstock) Disable this option to allow series rendering in the
|
|
646
|
+
* whole plotting area.
|
|
647
|
+
*
|
|
648
|
+
* **Note:** Clipping should be always enabled when chart.zoomType is
|
|
649
|
+
* set
|
|
650
|
+
*/
|
|
651
|
+
clip?: boolean;
|
|
652
|
+
/**
|
|
653
|
+
* (Highstock) The main color of the series. In line type series it
|
|
654
|
+
* applies to the line and the point markers unless otherwise specified.
|
|
655
|
+
* In bar type series it applies to the bars unless a color is specified
|
|
656
|
+
* per point. The default value is pulled from the `options.colors`
|
|
657
|
+
* array.
|
|
658
|
+
*
|
|
659
|
+
* In styled mode, the color can be defined by the colorIndex option.
|
|
660
|
+
* Also, the series color can be set with the `.highcharts-series`,
|
|
661
|
+
* `.highcharts-color-{n}`, `.highcharts-{type}-series` or
|
|
662
|
+
* `.highcharts-series-{n}` class, or individual classes given by the
|
|
663
|
+
* `className` option.
|
|
664
|
+
*/
|
|
665
|
+
color?: Highcharts.ColorType;
|
|
666
|
+
/**
|
|
667
|
+
* (Highcharts, Highstock, Highmaps) When using dual or multiple color
|
|
668
|
+
* axes, this number defines which colorAxis the particular series is
|
|
669
|
+
* connected to. It refers to either the axis id or the index of the
|
|
670
|
+
* axis in the colorAxis array, with 0 being the first. Set this option
|
|
671
|
+
* to false to prevent a series from connecting to the default color
|
|
672
|
+
* axis.
|
|
673
|
+
*
|
|
674
|
+
* Since v7.2.0 the option can also be an axis id or an axis index
|
|
675
|
+
* instead of a boolean flag.
|
|
676
|
+
*/
|
|
677
|
+
colorAxis?: (boolean|number|string);
|
|
678
|
+
/**
|
|
679
|
+
* (Highstock) Styled mode only. A specific color index to use for the
|
|
680
|
+
* series, so its graphic representations are given the class name
|
|
681
|
+
* `highcharts-color-{n}`.
|
|
682
|
+
*
|
|
683
|
+
* Since v11, CSS variables on the form `--highcharts-color-{n}` make
|
|
684
|
+
* changing the color scheme very convenient.
|
|
685
|
+
*/
|
|
686
|
+
colorIndex?: number;
|
|
687
|
+
/**
|
|
688
|
+
* (Highcharts, Highstock, Highmaps) Determines what data value should
|
|
689
|
+
* be used to calculate point color if `colorAxis` is used. Requires to
|
|
690
|
+
* set `min` and `max` if some custom point property is used or if
|
|
691
|
+
* approximation for data grouping is set to `'sum'`.
|
|
692
|
+
*/
|
|
693
|
+
colorKey?: string;
|
|
694
|
+
/**
|
|
695
|
+
* (Highcharts, Highstock) Whether to connect a graph line across null
|
|
696
|
+
* points, or render a gap between the two points on either side of the
|
|
697
|
+
* null.
|
|
698
|
+
*
|
|
699
|
+
* In stacked area chart, if `connectNulls` is set to true, null points
|
|
700
|
+
* are interpreted as 0.
|
|
701
|
+
*/
|
|
702
|
+
connectNulls?: boolean;
|
|
703
|
+
/**
|
|
704
|
+
* (Highcharts, Highstock, Gantt) When true, each point or column edge
|
|
705
|
+
* is rounded to its nearest pixel in order to render sharp on screen.
|
|
706
|
+
* In some cases, when there are a lot of densely packed columns, this
|
|
707
|
+
* leads to visible difference in column widths or distance between
|
|
708
|
+
* columns. In these cases, setting `crisp` to `false` may look better,
|
|
709
|
+
* even though each column is rendered blurry.
|
|
710
|
+
*/
|
|
711
|
+
crisp?: boolean;
|
|
712
|
+
/**
|
|
713
|
+
* (Highstock) You can set the cursor to "pointer" if you have click
|
|
714
|
+
* events attached to the series, to signal to the user that the points
|
|
715
|
+
* and lines can be clicked.
|
|
716
|
+
*
|
|
717
|
+
* In styled mode, the series cursor can be set with the same classes as
|
|
718
|
+
* listed under series.color.
|
|
719
|
+
*/
|
|
720
|
+
cursor?: (string|Highcharts.CursorValue);
|
|
721
|
+
/**
|
|
722
|
+
* (Highstock) A reserved subspace to store options and values for
|
|
723
|
+
* customized functionality. Here you can add additional data for your
|
|
724
|
+
* own event callbacks and formatter callbacks.
|
|
725
|
+
*/
|
|
726
|
+
custom?: Highcharts.Dictionary<any>;
|
|
727
|
+
/**
|
|
728
|
+
* (Highstock) Name of the dash style to use for the graph, or for some
|
|
729
|
+
* series types the outline of each shape.
|
|
730
|
+
*
|
|
731
|
+
* In styled mode, the stroke dash-array can be set with the same
|
|
732
|
+
* classes as listed under series.color.
|
|
733
|
+
*/
|
|
734
|
+
dashStyle?: Highcharts.DashStyleValue;
|
|
735
|
+
dataGrouping?: Highcharts.PlotPointandfigureDataGroupingOptions;
|
|
736
|
+
/**
|
|
737
|
+
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
738
|
+
* labels, appearing next to each data point.
|
|
739
|
+
*
|
|
740
|
+
* Since v6.2.0, multiple data labels can be applied to each single
|
|
741
|
+
* point by defining them as an array of configs.
|
|
742
|
+
*
|
|
743
|
+
* In styled mode, the data labels can be styled with the
|
|
744
|
+
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
745
|
+
* (see example).
|
|
746
|
+
*/
|
|
747
|
+
dataLabels?: (Highcharts.PlotPointandfigureDataLabelsOptions|Array<Highcharts.PlotPointandfigureDataLabelsOptions>);
|
|
748
|
+
/**
|
|
749
|
+
* (Highstock) The mapping between the data table and the series data
|
|
750
|
+
* points. This is used in conjunction with the `dataTable` option (on
|
|
751
|
+
* chart or series level) to map columns from the data table to the
|
|
752
|
+
* properties of the data points. The keys of the `dataMapping` object
|
|
753
|
+
* correspond to the properties of the data points (e.g. `x`, `y`,
|
|
754
|
+
* `name`), and the values are objects that specify which column from
|
|
755
|
+
* which data table to use for that property.
|
|
756
|
+
*
|
|
757
|
+
* The keys can also be nested paths, for example `dataLabel.format`, to
|
|
758
|
+
* map to nested properties of the data points.
|
|
759
|
+
*
|
|
760
|
+
* The values can also be strings, in which case they are interpreted as
|
|
761
|
+
* column id's from the first data table.
|
|
762
|
+
*
|
|
763
|
+
* A typical use case is that multiple series share a common column,
|
|
764
|
+
* like `name` or `x`. In this case, to avoid repetition, the common
|
|
765
|
+
* column can be applied in `plotOptions.series.dataMapping` and the
|
|
766
|
+
* individual series can specify only the columns that are unique to
|
|
767
|
+
* them.
|
|
768
|
+
*
|
|
769
|
+
* The series name defaults to the column ID of the main data column in
|
|
770
|
+
* the mapping. The main data column is typically the `y` data for
|
|
771
|
+
* cartesian series, or `value` for map series. For example, if the
|
|
772
|
+
* mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
|
|
773
|
+
* online documentation for example)
|
|
774
|
+
*
|
|
775
|
+
* If the columns of the DataTable have keys matching the series keys,
|
|
776
|
+
* the data mapping is not necessary. For example, this DataTable will
|
|
777
|
+
* connect directly to the series' `x` and `y` keys: (see online
|
|
778
|
+
* documentation for example)
|
|
779
|
+
*/
|
|
780
|
+
dataMapping?: Highcharts.DataMappingOptionsObject;
|
|
781
|
+
/**
|
|
782
|
+
* (Highcharts, Highstock) Options for series data sorting.
|
|
783
|
+
*/
|
|
784
|
+
dataSorting?: Highcharts.PlotPointandfigureDataSortingOptions;
|
|
785
|
+
/**
|
|
786
|
+
* (Highstock) Options for a specific series-level data table or an
|
|
787
|
+
* array of data tables. The `dataTable` option can be either a
|
|
788
|
+
* configuration object or an instance of the `DataTable` class. If a
|
|
789
|
+
* `DataTable` instance is passed, it will be used directly. If a
|
|
790
|
+
* configuration object or an array is passed, a new `DataTable`
|
|
791
|
+
* instance will be created based on the provided configuration.
|
|
792
|
+
*/
|
|
793
|
+
dataTable?: (Highcharts.DataTable|Highcharts.DataTableOptionsObject|Array<(Highcharts.DataTable|Highcharts.DataTableOptionsObject)>);
|
|
794
|
+
/**
|
|
795
|
+
* (Highstock) Deprecated. Use
|
|
796
|
+
* plotOptions.series.accessibility.description instead.
|
|
797
|
+
*
|
|
798
|
+
* A description of the series to add to the screen reader information
|
|
799
|
+
* about the series.
|
|
800
|
+
*
|
|
801
|
+
* @deprecated 8.0.0
|
|
802
|
+
*/
|
|
803
|
+
description?: string;
|
|
804
|
+
/**
|
|
805
|
+
* (Highstock) Enable or disable the mouse tracking for a specific
|
|
806
|
+
* series. This includes point tooltips and click events on graphs and
|
|
807
|
+
* points. For large datasets it improves performance.
|
|
808
|
+
*/
|
|
809
|
+
enableMouseTracking?: boolean;
|
|
810
|
+
/**
|
|
811
|
+
* (Highstock) General event handlers for the series items. These event
|
|
812
|
+
* hooks can also be attached to the series at run time using the
|
|
813
|
+
* `Highcharts.addEvent` function.
|
|
814
|
+
*/
|
|
815
|
+
events?: Highcharts.SeriesEventsOptionsObject;
|
|
816
|
+
/**
|
|
817
|
+
* (Highstock) Determines whether the series should look for the nearest
|
|
818
|
+
* point in both dimensions or just the x-dimension when hovering the
|
|
819
|
+
* series. Defaults to `'xy'` for scatter series and `'x'` for most
|
|
820
|
+
* other series. If the data has duplicate x-values, it is recommended
|
|
821
|
+
* to set this to `'xy'` to allow hovering over all points.
|
|
822
|
+
*
|
|
823
|
+
* Applies only to series types using nearest neighbor search (not
|
|
824
|
+
* direct hover) for tooltip.
|
|
825
|
+
*/
|
|
826
|
+
findNearestPointBy?: Highcharts.OptionsFindNearestPointByValue;
|
|
827
|
+
/**
|
|
828
|
+
* (Highcharts, Highstock) Defines when to display a gap in the graph,
|
|
829
|
+
* together with the gapUnit option.
|
|
830
|
+
*
|
|
831
|
+
* In case when `dataGrouping` is enabled, points can be grouped into a
|
|
832
|
+
* larger time span. This can make the grouped points to have a greater
|
|
833
|
+
* distance than the absolute value of `gapSize` property, which will
|
|
834
|
+
* result in disappearing graph completely. To prevent this situation
|
|
835
|
+
* the mentioned distance between grouped points is used instead of
|
|
836
|
+
* previously defined `gapSize`.
|
|
837
|
+
*
|
|
838
|
+
* In practice, this option is most often used to visualize gaps in time
|
|
839
|
+
* series. In a stock chart, intraday data is available for daytime
|
|
840
|
+
* hours, while gaps will appear in nights and weekends.
|
|
841
|
+
*/
|
|
842
|
+
gapSize?: number;
|
|
843
|
+
/**
|
|
844
|
+
* (Highcharts, Highstock) Together with gapSize, this option defines
|
|
845
|
+
* where to draw gaps in the graph.
|
|
846
|
+
*
|
|
847
|
+
* When the `gapUnit` is `"relative"` (default), a gap size of 5 means
|
|
848
|
+
* that if the distance between two points is greater than 5 times that
|
|
849
|
+
* of the two closest points, the graph will be broken.
|
|
850
|
+
*
|
|
851
|
+
* When the `gapUnit` is `"value"`, the gap is based on absolute axis
|
|
852
|
+
* values, which on a datetime axis is milliseconds. This also applies
|
|
853
|
+
* to the navigator series that inherits gap options from the base
|
|
854
|
+
* series.
|
|
855
|
+
*/
|
|
856
|
+
gapUnit?: Highcharts.OptionsGapUnitValue;
|
|
857
|
+
/**
|
|
858
|
+
* (Highcharts, Highstock, Gantt) Whether to use the Y extremes of the
|
|
859
|
+
* total chart width or only the zoomed area when zooming in on parts of
|
|
860
|
+
* the X axis. By default, the Y axis adjusts to the min and max of the
|
|
861
|
+
* visible data. Cartesian series only.
|
|
862
|
+
*/
|
|
863
|
+
getExtremesFromAll?: boolean;
|
|
864
|
+
groupPadding?: number;
|
|
865
|
+
/**
|
|
866
|
+
* (Highstock) Highlight only the hovered point and fade the remaining
|
|
867
|
+
* points.
|
|
868
|
+
*
|
|
869
|
+
* Scatter-type series require enabling the 'inactive' marker state and
|
|
870
|
+
* adjusting opacity. Note that this approach could affect performance
|
|
871
|
+
* with large datasets.
|
|
872
|
+
*/
|
|
873
|
+
inactiveOtherPoints?: boolean;
|
|
874
|
+
/**
|
|
875
|
+
* (Highstock) When set to `false` will prevent the series data from
|
|
876
|
+
* being included in any form of data export.
|
|
877
|
+
*
|
|
878
|
+
* Since version 6.0.0 until 7.1.0 the option was existing undocumented
|
|
879
|
+
* as `includeInCSVExport`.
|
|
880
|
+
*/
|
|
881
|
+
includeInDataExport?: boolean;
|
|
882
|
+
/**
|
|
883
|
+
* (Highcharts, Highstock) Apply a jitter effect for the rendered
|
|
884
|
+
* markers. When plotting discrete values, a little random noise may
|
|
885
|
+
* help telling the points apart. The jitter setting applies a random
|
|
886
|
+
* displacement of up to `n` axis units in either direction. So for
|
|
887
|
+
* example on a horizontal X axis, setting the `jitter.x` to 0.24 will
|
|
888
|
+
* render the point in a random position between 0.24 units to the left
|
|
889
|
+
* and 0.24 units to the right of the true axis position. On a category
|
|
890
|
+
* axis, setting it to 0.5 will fill up the bin and make the data appear
|
|
891
|
+
* continuous.
|
|
892
|
+
*
|
|
893
|
+
* When rendered on top of a box plot or a column series, a jitter value
|
|
894
|
+
* of 0.24 will correspond to the underlying series' default
|
|
895
|
+
* groupPadding and pointPadding settings.
|
|
896
|
+
*
|
|
897
|
+
* **Note:** With boost mode enabled, the jitter effect is not
|
|
898
|
+
* supported.
|
|
899
|
+
*/
|
|
900
|
+
jitter?: Highcharts.PlotPointandfigureJitterOptions;
|
|
901
|
+
/**
|
|
902
|
+
* (Highstock) An array specifying which option maps to which key in the
|
|
903
|
+
* data point array. This makes it convenient to work with unstructured
|
|
904
|
+
* data arrays from different sources.
|
|
905
|
+
*/
|
|
906
|
+
keys?: Array<string>;
|
|
907
|
+
/**
|
|
908
|
+
* (Highcharts, Highstock, Gantt) Series labels are placed as close to
|
|
909
|
+
* the series as possible in a natural way, seeking to avoid other
|
|
910
|
+
* series. The goal of this feature is to make the chart more easily
|
|
911
|
+
* readable, like if a human designer placed the labels in the optimal
|
|
912
|
+
* position.
|
|
913
|
+
*
|
|
914
|
+
* The series labels currently work with series types having a `graph`
|
|
915
|
+
* or an `area`.
|
|
916
|
+
*/
|
|
917
|
+
label?: Highcharts.SeriesLabelOptionsObject;
|
|
918
|
+
/**
|
|
919
|
+
* (Highstock) The line marks the last price from all points.
|
|
920
|
+
*/
|
|
921
|
+
lastPrice?: Highcharts.SeriesLastPriceOptionsObject;
|
|
922
|
+
/**
|
|
923
|
+
* (Highstock) The line marks the last price from visible range of
|
|
924
|
+
* points.
|
|
925
|
+
*/
|
|
926
|
+
lastVisiblePrice?: Highcharts.SeriesLastVisiblePriceOptionsObject;
|
|
927
|
+
/**
|
|
928
|
+
* (Highstock) What type of legend symbol to render for this series. Can
|
|
929
|
+
* be one of `areaMarker`, `lineMarker` or `rectangle`.
|
|
930
|
+
*/
|
|
931
|
+
legendSymbol?: Highcharts.OptionsLegendSymbolValue;
|
|
932
|
+
/**
|
|
933
|
+
* (Highstock) The line cap used for line ends and line joins on the
|
|
934
|
+
* graph.
|
|
935
|
+
*/
|
|
936
|
+
linecap?: Highcharts.SeriesLinecapValue;
|
|
937
|
+
/**
|
|
938
|
+
* (Highcharts, Highstock) The width of the line connecting the data
|
|
939
|
+
* points.
|
|
940
|
+
*/
|
|
941
|
+
lineWidth?: number;
|
|
942
|
+
/**
|
|
943
|
+
* (Highcharts, Highstock, Gantt) The id of another series to link to.
|
|
944
|
+
* Additionally, the value can be ":previous" to link to the previous
|
|
945
|
+
* series. When two series are linked, only the first one appears in the
|
|
946
|
+
* legend. Toggling the visibility of this also toggles the linked
|
|
947
|
+
* series.
|
|
948
|
+
*
|
|
949
|
+
* If master series uses data sorting and linked series does not have
|
|
950
|
+
* its own sorting definition, the linked series will be sorted in the
|
|
951
|
+
* same order as the master one.
|
|
952
|
+
*
|
|
953
|
+
* If a `compare` value is not set on a linked series, it will be
|
|
954
|
+
* inherited from the parent series.
|
|
955
|
+
*/
|
|
956
|
+
linkedTo?: string;
|
|
957
|
+
/**
|
|
958
|
+
* (Highstock) Options for the point markers of line and scatter-like
|
|
959
|
+
* series. Properties like `fillColor`, `lineColor` and `lineWidth`
|
|
960
|
+
* define the visual appearance of the markers. The `symbol` option
|
|
961
|
+
* defines the shape. Other series types, like column series, don't have
|
|
962
|
+
* markers, but have visual options on the series level instead.
|
|
963
|
+
*
|
|
964
|
+
* In styled mode, the markers can be styled with the
|
|
965
|
+
* `.highcharts-point`, `.highcharts-point-hover` and
|
|
966
|
+
* `.highcharts-point-select` class names.
|
|
967
|
+
*/
|
|
968
|
+
marker?: Highcharts.PointMarkerOptionsObject;
|
|
969
|
+
/**
|
|
970
|
+
* (Highstock) Marker options for the up direction column, inherited
|
|
971
|
+
* from `series.marker` options.
|
|
972
|
+
*/
|
|
973
|
+
markerUp?: Highcharts.PointMarkerOptionsObject;
|
|
974
|
+
/**
|
|
975
|
+
* (Highstock) Options for the corresponding navigator series if
|
|
976
|
+
* `showInNavigator` is `true` for this series. Available options are
|
|
977
|
+
* the same as any series, documented at plotOptions and series.
|
|
978
|
+
*
|
|
979
|
+
* These options are merged with options in navigator.series, and will
|
|
980
|
+
* take precedence if the same option is defined both places.
|
|
981
|
+
*/
|
|
982
|
+
navigatorOptions?: Highcharts.PlotSeriesOptions;
|
|
983
|
+
/**
|
|
984
|
+
* (Highstock) The color for the parts of the graph or points that are
|
|
985
|
+
* below the threshold. Note that `zones` takes precedence over the
|
|
986
|
+
* negative color. Using `negativeColor` is equivalent to applying a
|
|
987
|
+
* zone with value of 0.
|
|
988
|
+
*/
|
|
989
|
+
negativeColor?: Highcharts.ColorType;
|
|
990
|
+
/**
|
|
991
|
+
* (Highcharts, Highstock) Whether or not data-points with the value of
|
|
992
|
+
* `null` should be interactive. When this is set to `true`, tooltips
|
|
993
|
+
* may highlight these points, and this option also enables keyboard
|
|
994
|
+
* navigation for such points. Format options for such points include
|
|
995
|
+
* `nullFormat` and `nullFormatter`. Works for these series: `line`,
|
|
996
|
+
* `spline`, `area`, `area-spline`, `column`, `bar`, and `timeline`.
|
|
997
|
+
*/
|
|
998
|
+
nullInteraction?: (boolean|undefined);
|
|
999
|
+
/**
|
|
1000
|
+
* (Highstock) Options for the _Series on point_ feature. Only `pie` and
|
|
1001
|
+
* `sunburst` series are supported at this moment.
|
|
1002
|
+
*/
|
|
1003
|
+
onPoint?: (object|Highcharts.PlotPointandfigureOnPointOptions);
|
|
1004
|
+
/**
|
|
1005
|
+
* (Highstock) Opacity of a series parts: line, fill (e.g. area) and
|
|
1006
|
+
* dataLabels.
|
|
1007
|
+
*/
|
|
1008
|
+
opacity?: number;
|
|
1009
|
+
/**
|
|
1010
|
+
* (Highstock) Properties for each single point.
|
|
1011
|
+
*/
|
|
1012
|
+
point?: Highcharts.PlotSeriesPointOptions;
|
|
1013
|
+
/**
|
|
1014
|
+
* (Highstock) Deprecated. Use
|
|
1015
|
+
* series.accessibility.point.descriptionFormat instead.
|
|
1016
|
+
*
|
|
1017
|
+
* Same as accessibility.point.descriptionFormat, but for an individual
|
|
1018
|
+
* series. Overrides the chart wide configuration.
|
|
1019
|
+
*
|
|
1020
|
+
* @deprecated 12.6.0
|
|
1021
|
+
*/
|
|
1022
|
+
pointDescriptionFormat?: Function;
|
|
1023
|
+
/**
|
|
1024
|
+
* (Highstock) Deprecated. Use
|
|
1025
|
+
* series.accessibility.point.descriptionFormatter instead.
|
|
1026
|
+
*
|
|
1027
|
+
* Same as accessibility.series.descriptionFormatter, but for an
|
|
1028
|
+
* individual series. Overrides the chart wide configuration.
|
|
1029
|
+
*
|
|
1030
|
+
* @deprecated 8.0.0
|
|
1031
|
+
*/
|
|
1032
|
+
pointDescriptionFormatter?: Function;
|
|
1033
|
+
/**
|
|
1034
|
+
* (Highcharts, Highstock, Gantt) If no x values are given for the
|
|
1035
|
+
* points in a series, `pointInterval` defines the interval of the x
|
|
1036
|
+
* values. For example, if a series contains one value every decade
|
|
1037
|
+
* starting from year 0, set `pointInterval` to `10`. In true `datetime`
|
|
1038
|
+
* axes, the `pointInterval` is set in milliseconds.
|
|
1039
|
+
*
|
|
1040
|
+
* It can be also be combined with `pointIntervalUnit` to draw irregular
|
|
1041
|
+
* time intervals.
|
|
1042
|
+
*
|
|
1043
|
+
* If combined with `relativeXValue`, an x value can be set on each
|
|
1044
|
+
* point, and the `pointInterval` is added x times to the `pointStart`
|
|
1045
|
+
* setting.
|
|
1046
|
+
*
|
|
1047
|
+
* Please note that this options applies to the _series data_, not the
|
|
1048
|
+
* interval of the axis ticks, which is independent.
|
|
1049
|
+
*/
|
|
1050
|
+
pointInterval?: number;
|
|
1051
|
+
/**
|
|
1052
|
+
* (Highcharts, Highstock, Gantt) On datetime series, this allows for
|
|
1053
|
+
* setting the pointInterval to irregular time units, `day`, `month` and
|
|
1054
|
+
* `year`. A day is usually the same as 24 hours, but
|
|
1055
|
+
* `pointIntervalUnit` also takes the DST crossover into consideration
|
|
1056
|
+
* when dealing with local time. Combine this option with
|
|
1057
|
+
* `pointInterval` to draw weeks, quarters, 6 months, 10 years etc.
|
|
1058
|
+
*
|
|
1059
|
+
* Please note that this options applies to the _series data_, not the
|
|
1060
|
+
* interval of the axis ticks, which is independent.
|
|
1061
|
+
*/
|
|
1062
|
+
pointIntervalUnit?: Highcharts.OptionsPointIntervalUnitValue;
|
|
1063
|
+
pointPadding?: number;
|
|
1064
|
+
/**
|
|
1065
|
+
* (Highstock) The width of each point on the x axis. For example in a
|
|
1066
|
+
* column chart with one value each day, the pointRange would be 1 day
|
|
1067
|
+
* (= 24 * 3600
|
|
1068
|
+
*
|
|
1069
|
+
* * 1000 milliseconds). This is normally computed automatically, but
|
|
1070
|
+
* this option can be used to override the automatic value.
|
|
1071
|
+
*/
|
|
1072
|
+
pointRange?: number;
|
|
1073
|
+
/**
|
|
1074
|
+
* (Highcharts, Highstock, Gantt) If no x values are given for the
|
|
1075
|
+
* points in a series, `pointStart` defines on what value to start. For
|
|
1076
|
+
* example, if a series contains one yearly value starting from 1945,
|
|
1077
|
+
* set `pointStart` to 1945.
|
|
1078
|
+
*
|
|
1079
|
+
* The `pointStart` setting can be a number, or a datetime string that
|
|
1080
|
+
* is parsed according to the `time.timezone` setting.
|
|
1081
|
+
*
|
|
1082
|
+
* If combined with `relativeXValue`, an x value can be set on each
|
|
1083
|
+
* point. The x value from the point options is multiplied by
|
|
1084
|
+
* `pointInterval` and added to `pointStart` to produce a modified x
|
|
1085
|
+
* value.
|
|
1086
|
+
*/
|
|
1087
|
+
pointStart?: (number|string);
|
|
1088
|
+
/**
|
|
1089
|
+
* (Highcharts, Highstock) When true, X values in the data set are
|
|
1090
|
+
* relative to the current `pointStart`, `pointInterval` and
|
|
1091
|
+
* `pointIntervalUnit` settings. This allows compression of the data for
|
|
1092
|
+
* datasets with irregular X values.
|
|
1093
|
+
*
|
|
1094
|
+
* The real X values are computed on the formula `f(x) = ax + b`, where
|
|
1095
|
+
* `a` is the `pointInterval` (optionally with a time unit given by
|
|
1096
|
+
* `pointIntervalUnit`), and `b` is the `pointStart`.
|
|
1097
|
+
*/
|
|
1098
|
+
relativeXValue?: boolean;
|
|
1099
|
+
/**
|
|
1100
|
+
* (Highstock) Threshold that should be met to create a new column in
|
|
1101
|
+
* opposite direction.
|
|
1102
|
+
*/
|
|
1103
|
+
reversalAmount?: number;
|
|
1104
|
+
/**
|
|
1105
|
+
* (Highstock) Whether to select the series initially. If `showCheckbox`
|
|
1106
|
+
* is true, the checkbox next to the series name in the legend will be
|
|
1107
|
+
* checked for a selected series.
|
|
1108
|
+
*/
|
|
1109
|
+
selected?: boolean;
|
|
1110
|
+
/**
|
|
1111
|
+
* (Highstock) If true, a checkbox is displayed next to the legend item
|
|
1112
|
+
* to allow selecting the series. The state of the checkbox is
|
|
1113
|
+
* determined by the `selected` option.
|
|
1114
|
+
*/
|
|
1115
|
+
showCheckbox?: boolean;
|
|
1116
|
+
/**
|
|
1117
|
+
* (Highstock) Whether to display this particular series or series type
|
|
1118
|
+
* in the legend. Standalone series are shown in legend by default, and
|
|
1119
|
+
* linked series are not. Since v7.2.0 it is possible to show series
|
|
1120
|
+
* that use colorAxis by setting this option to `true`.
|
|
1121
|
+
*/
|
|
1122
|
+
showInLegend?: boolean;
|
|
1123
|
+
/**
|
|
1124
|
+
* (Highstock) Whether or not to show the series in the navigator. Takes
|
|
1125
|
+
* precedence over navigator.baseSeries if defined.
|
|
1126
|
+
*/
|
|
1127
|
+
showInNavigator?: boolean;
|
|
1128
|
+
/**
|
|
1129
|
+
* (Highstock) Deprecated. Use series.accessibility.keyboardNavigation
|
|
1130
|
+
* instead.
|
|
1131
|
+
*
|
|
1132
|
+
* If set to `true`, the accessibility module will skip past the points
|
|
1133
|
+
* in this series for keyboard navigation.
|
|
1134
|
+
*
|
|
1135
|
+
* @deprecated 8.0.0
|
|
1136
|
+
*/
|
|
1137
|
+
skipKeyboardNavigation?: boolean;
|
|
1138
|
+
/**
|
|
1139
|
+
* (Highcharts, Highstock) When this is true, the series will not cause
|
|
1140
|
+
* the Y axis to cross the zero plane (or threshold option) unless the
|
|
1141
|
+
* data actually crosses the plane.
|
|
1142
|
+
*
|
|
1143
|
+
* For example, if `softThreshold` is `false`, a series of 0, 1, 2, 3
|
|
1144
|
+
* will make the Y axis show negative values according to the
|
|
1145
|
+
* `minPadding` option. If `softThreshold` is `true`, the Y axis starts
|
|
1146
|
+
* at 0.
|
|
1147
|
+
*/
|
|
1148
|
+
softThreshold?: boolean;
|
|
1149
|
+
/**
|
|
1150
|
+
* (Highstock) Sonification/audio chart options for a series.
|
|
1151
|
+
*/
|
|
1152
|
+
sonification?: Highcharts.SeriesSonificationOptions;
|
|
1153
|
+
/**
|
|
1154
|
+
* (Highcharts, Highstock) Whether to stack the values of each series on
|
|
1155
|
+
* top of each other. Possible values are null to disable, `"normal"` to
|
|
1156
|
+
* stack by value or `"percent"`.
|
|
1157
|
+
*
|
|
1158
|
+
* When stacking is enabled, data must be sorted in ascending X order.
|
|
1159
|
+
*
|
|
1160
|
+
* Some stacking options are related to specific series types. In the
|
|
1161
|
+
* streamgraph series type, the stacking option is set to `"stream"`.
|
|
1162
|
+
* The second one is `"overlap"`, which only applies to waterfall
|
|
1163
|
+
* series.
|
|
1164
|
+
*/
|
|
1165
|
+
stacking?: Highcharts.OptionsStackingValue;
|
|
1166
|
+
/**
|
|
1167
|
+
* (Highstock) A collection of options for different series states.
|
|
1168
|
+
*
|
|
1169
|
+
* In addition to the options documented under each state, any option
|
|
1170
|
+
* from the parent series type can be set, with exception of `data` and
|
|
1171
|
+
* `states`.
|
|
1172
|
+
*/
|
|
1173
|
+
states?: Highcharts.SeriesStatesOptionsObject;
|
|
1174
|
+
/**
|
|
1175
|
+
* (Highcharts, Highstock) Whether to apply steps to the line. Possible
|
|
1176
|
+
* values are `left`, `center` and `right`.
|
|
1177
|
+
*/
|
|
1178
|
+
step?: Highcharts.OptionsStepValue;
|
|
1179
|
+
/**
|
|
1180
|
+
* (Highcharts, Highstock, Highmaps) Sticky tracking of mouse events.
|
|
1181
|
+
* When true, the `mouseOut` event on a series isn't triggered until the
|
|
1182
|
+
* mouse moves over another series, or out of the plot area. When false,
|
|
1183
|
+
* the `mouseOut` event on a series is triggered when the mouse leaves
|
|
1184
|
+
* the area around the series' graph or markers. This also implies the
|
|
1185
|
+
* tooltip. When `stickyTracking` is false and `tooltip.shared` is
|
|
1186
|
+
* false, the tooltip will be hidden when moving the mouse between
|
|
1187
|
+
* series.
|
|
1188
|
+
*/
|
|
1189
|
+
stickyTracking?: boolean;
|
|
1190
|
+
/**
|
|
1191
|
+
* (Highcharts, Highstock) The threshold, also called zero level or base
|
|
1192
|
+
* level. For line type series this is only used in conjunction with
|
|
1193
|
+
* negativeColor.
|
|
1194
|
+
*/
|
|
1195
|
+
threshold?: (number|null);
|
|
1196
|
+
/**
|
|
1197
|
+
* (Highcharts, Highstock, Highmaps) A configuration object for the
|
|
1198
|
+
* tooltip rendering of each single series. Properties are inherited
|
|
1199
|
+
* from tooltip. Overridable properties are `headerFormat`,
|
|
1200
|
+
* `pointFormat`, `yDecimals`, `xDateFormat`, `yPrefix` and `ySuffix`.
|
|
1201
|
+
* Unlike other series, in a scatter plot the series.name by default
|
|
1202
|
+
* shows in the headerFormat and point.x and point.y in the pointFormat.
|
|
1203
|
+
*/
|
|
1204
|
+
tooltip?: Highcharts.SeriesTooltipOptionsObject;
|
|
1205
|
+
/**
|
|
1206
|
+
* (Highcharts, Highstock, Gantt) When a series contains a `data` array
|
|
1207
|
+
* that is longer than this, the Series class looks for data
|
|
1208
|
+
* configurations of plain numbers or arrays of numbers. The first and
|
|
1209
|
+
* last valid points are checked. If found, the rest of the data is
|
|
1210
|
+
* assumed to be the same. This saves expensive data checking and
|
|
1211
|
+
* indexing in long series, and makes data-heavy charts render faster.
|
|
1212
|
+
*
|
|
1213
|
+
* Set it to `0` disable.
|
|
1214
|
+
*
|
|
1215
|
+
* Note:
|
|
1216
|
+
*
|
|
1217
|
+
* - In boost mode turbo threshold is forced. Only array of numbers or
|
|
1218
|
+
* two dimensional arrays are allowed.
|
|
1219
|
+
*
|
|
1220
|
+
* - In version 11.4.3 and earlier, if object configurations were passed
|
|
1221
|
+
* beyond the turbo threshold, a warning was logged in the console and
|
|
1222
|
+
* the data series didn't render.
|
|
1223
|
+
*/
|
|
1224
|
+
turboThreshold?: number;
|
|
1225
|
+
/**
|
|
1226
|
+
* (Highstock) Set the initial visibility of the series.
|
|
1227
|
+
*/
|
|
1228
|
+
visible?: boolean;
|
|
1229
|
+
/**
|
|
1230
|
+
* (Highcharts, Highstock) Defines the Axis on which the zones are
|
|
1231
|
+
* applied.
|
|
1232
|
+
*/
|
|
1233
|
+
zoneAxis?: string;
|
|
1234
|
+
/**
|
|
1235
|
+
* (Highcharts, Highstock) An array defining zones within a series.
|
|
1236
|
+
* Zones can be applied to the X axis, Y axis or Z axis for bubbles,
|
|
1237
|
+
* according to the `zoneAxis` option. The zone definitions have to be
|
|
1238
|
+
* in ascending order regarding to the value.
|
|
1239
|
+
*
|
|
1240
|
+
* In styled mode, the color zones are styled with the
|
|
1241
|
+
* `.highcharts-zone-{n}` class, or custom classed from the `className`
|
|
1242
|
+
* option (view live demo).
|
|
1243
|
+
*/
|
|
1244
|
+
zones?: Array<Highcharts.SeriesZonesOptionsObject>;
|
|
1245
|
+
/**
|
|
1246
|
+
* (Highstock) Whether to zoom non-cartesian series. If `chart.zooming`
|
|
1247
|
+
* is set, the option allows to disable zooming on an individual
|
|
1248
|
+
* non-cartesian series. By default zooming is enabled for all series.
|
|
1249
|
+
*
|
|
1250
|
+
* **Note**: This option works only for non-cartesian series.
|
|
1251
|
+
*/
|
|
1252
|
+
zoomEnabled?: boolean;
|
|
1253
|
+
}
|
|
397
1254
|
/**
|
|
398
1255
|
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
399
1256
|
* line-type series.
|
|
@@ -406,6 +1263,17 @@ declare module "../highcharts.src" {
|
|
|
406
1263
|
*/
|
|
407
1264
|
duration?: number;
|
|
408
1265
|
}
|
|
1266
|
+
/**
|
|
1267
|
+
* (Highcharts, Highstock) Animation when not hovering over the marker.
|
|
1268
|
+
*/
|
|
1269
|
+
interface PlotPointandfigureStatesInactiveAnimationOptions {
|
|
1270
|
+
/**
|
|
1271
|
+
* (Highcharts, Highstock) The duration of the hover animation in
|
|
1272
|
+
* milliseconds. By default the hover state animates quickly in, and
|
|
1273
|
+
* slowly back to normal.
|
|
1274
|
+
*/
|
|
1275
|
+
duration?: number;
|
|
1276
|
+
}
|
|
409
1277
|
/**
|
|
410
1278
|
* (Highcharts, Highstock) Animation setting for hovering the graph in
|
|
411
1279
|
* line-type series.
|
|
@@ -418,6 +1286,23 @@ declare module "../highcharts.src" {
|
|
|
418
1286
|
*/
|
|
419
1287
|
duration?: number;
|
|
420
1288
|
}
|
|
1289
|
+
/**
|
|
1290
|
+
* (Highcharts, Highstock, Gantt) For series on datetime axes, the date
|
|
1291
|
+
* format in the tooltip's header will by default be guessed based on the
|
|
1292
|
+
* closest data points. This member gives the default string representations
|
|
1293
|
+
* used for each unit. For an overview of the string or object
|
|
1294
|
+
* configuration, see dateFormat.
|
|
1295
|
+
*/
|
|
1296
|
+
interface PlotPointandfigureTooltipDateTimeLabelFormatsOptions {
|
|
1297
|
+
day?: string;
|
|
1298
|
+
hour?: string;
|
|
1299
|
+
millisecond?: string;
|
|
1300
|
+
minute?: string;
|
|
1301
|
+
month?: string;
|
|
1302
|
+
second?: string;
|
|
1303
|
+
week?: string;
|
|
1304
|
+
year?: string;
|
|
1305
|
+
}
|
|
421
1306
|
/**
|
|
422
1307
|
* (Highcharts, Highstock, Highmaps) Options for the tooltip header when
|
|
423
1308
|
* tooltip.split is enabled. The header is the box containing the X value in
|
|
@@ -462,6 +1347,43 @@ declare module "../highcharts.src" {
|
|
|
462
1347
|
*/
|
|
463
1348
|
style?: object;
|
|
464
1349
|
}
|
|
1350
|
+
/**
|
|
1351
|
+
* (Highcharts, Highstock, Highmaps) Positioning options for fixed tooltip,
|
|
1352
|
+
* taking effect only when tooltip.fixed is `true`.
|
|
1353
|
+
*/
|
|
1354
|
+
interface PlotPointandfigureTooltipPositionOptions {
|
|
1355
|
+
/**
|
|
1356
|
+
* (Highcharts, Highstock, Highmaps) The horizontal alignment of the
|
|
1357
|
+
* fixed tooltip.
|
|
1358
|
+
*/
|
|
1359
|
+
align?: Highcharts.AlignValue;
|
|
1360
|
+
/**
|
|
1361
|
+
* (Highcharts, Highstock, Highmaps) What the fixed tooltip alignment
|
|
1362
|
+
* should be relative to.
|
|
1363
|
+
*
|
|
1364
|
+
* The default, `pane`, means that it is aligned within the plot area
|
|
1365
|
+
* for that given series. If the tooltip is split (as default in Stock
|
|
1366
|
+
* charts), each partial tooltip is aligned within the series' pane.
|
|
1367
|
+
*/
|
|
1368
|
+
relativeTo?: Highcharts.OptionsRelativeToValue;
|
|
1369
|
+
/**
|
|
1370
|
+
* (Highcharts, Highstock, Highmaps) The vertical alignment of the fixed
|
|
1371
|
+
* tooltip.
|
|
1372
|
+
*/
|
|
1373
|
+
verticalAlign?: Highcharts.VerticalAlignValue;
|
|
1374
|
+
/**
|
|
1375
|
+
* (Highcharts, Highstock, Highmaps) X pixel offset from the given
|
|
1376
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
1377
|
+
* avoid the tooltip overlapping other elements.
|
|
1378
|
+
*/
|
|
1379
|
+
x?: number;
|
|
1380
|
+
/**
|
|
1381
|
+
* (Highcharts, Highstock, Highmaps) Y pixel offset from the given
|
|
1382
|
+
* position. Can be used to shy away from axis lines, grid lines etc to
|
|
1383
|
+
* avoid the tooltip overlapping other elements.
|
|
1384
|
+
*/
|
|
1385
|
+
y?: number;
|
|
1386
|
+
}
|
|
465
1387
|
/**
|
|
466
1388
|
* (Highcharts, Highstock, Gantt) Enable or disable the initial animation
|
|
467
1389
|
* when a series is displayed for the `dataLabels`. The animation can also
|
|
@@ -481,10 +1403,68 @@ declare module "../highcharts.src" {
|
|
|
481
1403
|
*/
|
|
482
1404
|
defer?: number;
|
|
483
1405
|
}
|
|
1406
|
+
/**
|
|
1407
|
+
* (Highcharts, Highstock) Animation when hovering over the marker.
|
|
1408
|
+
*/
|
|
1409
|
+
interface SeriesPointandfigureDataMarkerStatesHoverAnimationOptions {
|
|
1410
|
+
duration?: number;
|
|
1411
|
+
}
|
|
484
1412
|
/**
|
|
485
1413
|
* (Highcharts, Highstock) Animation when hovering over the marker.
|
|
486
1414
|
*/
|
|
487
1415
|
interface SeriesPointandfigureDataMarkerStatesSelectAnimationOptions {
|
|
488
1416
|
duration?: number;
|
|
489
1417
|
}
|
|
1418
|
+
/**
|
|
1419
|
+
* (Highstock) A `pointandfigure` series. If the type option is not
|
|
1420
|
+
* specified, it is inherited from chart.type.
|
|
1421
|
+
*
|
|
1422
|
+
* Configuration options for the series are given in three levels:
|
|
1423
|
+
*
|
|
1424
|
+
* 1. Options for all series in a chart are defined in the
|
|
1425
|
+
* plotOptions.series object.
|
|
1426
|
+
*
|
|
1427
|
+
* 2. Options for all `pointandfigure` series are defined in
|
|
1428
|
+
* plotOptions.pointandfigure.
|
|
1429
|
+
*
|
|
1430
|
+
* 3. Options for one single series are given in the series instance array.
|
|
1431
|
+
* (see online documentation for example)
|
|
1432
|
+
*
|
|
1433
|
+
* **TypeScript:**
|
|
1434
|
+
*
|
|
1435
|
+
* - type option should always be set, otherwise a broad set of unsupported
|
|
1436
|
+
* options is allowed.
|
|
1437
|
+
*
|
|
1438
|
+
* - when accessing an array of series, the combined set of all series types
|
|
1439
|
+
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
1440
|
+
* specific type can be done by checking the `type` property. (see online
|
|
1441
|
+
* documentation for example)
|
|
1442
|
+
*
|
|
1443
|
+
* You have to extend the `SeriesPointandfigureOptions` via an interface to
|
|
1444
|
+
* allow custom properties: ``` declare interface
|
|
1445
|
+
* SeriesPointandfigureOptions { customProperty: string; }
|
|
1446
|
+
*
|
|
1447
|
+
*/
|
|
1448
|
+
interface SeriesPointandfigureOptions extends Highcharts.PlotPointandfigureOptions, Highcharts.SeriesOptions {
|
|
1449
|
+
/**
|
|
1450
|
+
* (Highstock) An array of data points for the series. For the
|
|
1451
|
+
* `pointandfigure` series type, points can be given in the following
|
|
1452
|
+
* way:
|
|
1453
|
+
*
|
|
1454
|
+
* 1. An array of arrays with 2 values. In this case, the values
|
|
1455
|
+
* correspond to `x, y`. Y values are parsed under the hood to create
|
|
1456
|
+
* point and figure format data points. (see online documentation for
|
|
1457
|
+
* example)
|
|
1458
|
+
*
|
|
1459
|
+
* 2. An array of objects with named values `{x, y}`. (see online
|
|
1460
|
+
* documentation for example)
|
|
1461
|
+
*/
|
|
1462
|
+
data?: Array<([number, number]|Highcharts.PointOptionsObject)>;
|
|
1463
|
+
/**
|
|
1464
|
+
* (Highcharts, Highstock, Highmaps, Gantt) This property is only in
|
|
1465
|
+
* TypeScript non-optional and might be `undefined` in series objects
|
|
1466
|
+
* from unknown sources.
|
|
1467
|
+
*/
|
|
1468
|
+
type: "pointandfigure";
|
|
1469
|
+
}
|
|
490
1470
|
}
|