highcharts 13.0.0 → 13.0.1
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 +3 -2
- package/css/highcharts.css +2 -1
- package/es-modules/Accessibility/Accessibility.js +38 -1
- package/es-modules/Accessibility/Components/LegendComponent.js +1 -2
- package/es-modules/Accessibility/Components/NavigatorComponent.js +1 -2
- package/es-modules/Accessibility/Components/SeriesComponent/SeriesKeyboardNavigation.js +8 -4
- package/es-modules/Accessibility/Options/A11yDefaults.js +12 -3
- package/es-modules/Accessibility/ProxyElement.js +1 -0
- package/es-modules/Core/Animation/AnimationUtilities.js +31 -41
- package/es-modules/Core/Animation/Fx.js +16 -19
- package/es-modules/Core/Axis/Axis.js +1 -2
- package/es-modules/Core/Axis/AxisDefaults.js +12 -2
- package/es-modules/Core/Axis/Color/ColorAxis.js +7 -2
- package/es-modules/Core/Axis/Color/ColorAxisComposition.js +1 -1
- package/es-modules/Core/Axis/GridAxis.js +8 -1
- package/es-modules/Core/Axis/OrdinalAxis.js +12 -4
- package/es-modules/Core/Axis/RadialAxis.js +9 -14
- package/es-modules/Core/Axis/Stacking/StackingAxis.js +1 -2
- package/es-modules/Core/Axis/TreeGrid/TreeGridAxis.js +1 -1
- package/es-modules/Core/Chart/Chart.js +44 -39
- package/es-modules/Core/Chart/ChartDefaults.js +1 -1
- package/es-modules/Core/Chart/MapChart.js +0 -5
- package/es-modules/Core/Defaults.js +9 -2
- package/es-modules/Core/Globals.js +1 -1
- package/es-modules/Core/Legend/Legend.js +4 -5
- package/es-modules/Core/Pointer.js +11 -1
- package/es-modules/Core/Renderer/HTML/AST.js +5 -1
- package/es-modules/Core/Renderer/HTML/HTMLElement.js +23 -16
- package/es-modules/Core/Renderer/SVG/SVGElement.js +1 -2
- package/es-modules/Core/Renderer/SVG/SVGRenderer.js +2 -2
- package/es-modules/Core/Renderer/SVG/SVGRenderer3D.js +2 -3
- package/es-modules/Core/Series/DataLabel.js +1 -2
- package/es-modules/Core/Series/Point.js +28 -21
- package/es-modules/Core/Series/Series.js +89 -62
- package/es-modules/Core/Series/SeriesDefaults.js +33 -0
- package/es-modules/Core/Templating.js +16 -13
- package/es-modules/Core/Tooltip.js +1 -2
- package/es-modules/Data/DataTableCore.js +1 -1
- package/es-modules/Extensions/Annotations/Annotation.js +1 -2
- package/es-modules/Extensions/Annotations/AnnotationDefaults.js +4 -4
- package/es-modules/Extensions/Annotations/MockPoint.js +7 -9
- package/es-modules/Extensions/Annotations/NavigationBindingsUtilities.js +30 -3
- package/es-modules/Extensions/Annotations/Popup/PopupAnnotations.js +2 -2
- package/es-modules/Extensions/Annotations/Types/CrookedLine.js +4 -4
- package/es-modules/Extensions/Annotations/Types/Measure.js +25 -7
- package/es-modules/Extensions/Annotations/Types/TimeCycles.js +4 -2
- package/es-modules/Extensions/Annotations/Types/Tunnel.js +3 -1
- package/es-modules/Extensions/Boost/Boost.js +13 -0
- package/es-modules/Extensions/Boost/BoostSeries.js +9 -2
- package/es-modules/Extensions/BorderRadius.js +12 -10
- package/es-modules/Extensions/Breadcrumbs/Breadcrumbs.js +1 -1
- package/es-modules/Extensions/DraggablePoints/DraggableChart.js +1 -2
- package/es-modules/Extensions/Drilldown/Drilldown.js +1 -2
- package/es-modules/Extensions/Drilldown/DrilldownSeries.js +1 -2
- package/es-modules/Extensions/ExportData/ExportData.js +5 -1
- package/es-modules/Extensions/Exporting/Exporting.js +21 -21
- package/es-modules/Extensions/Exporting/ExportingDefaults.js +32 -0
- package/es-modules/Extensions/MarkerClusters/MarkerClusterScatter.js +1 -2
- package/es-modules/Extensions/MarkerClusters/MarkerClusters.js +1 -2
- package/es-modules/Extensions/OfflineExporting/OfflineExporting.js +31 -4
- package/es-modules/Extensions/Pane/PaneDefaults.js +1 -1
- package/es-modules/Extensions/ParallelCoordinates/ParallelCoordinates.js +3 -0
- package/es-modules/Extensions/ScrollablePlotArea.js +8 -2
- package/es-modules/Extensions/SeriesLabel/SeriesLabel.js +1 -2
- package/es-modules/Extensions/Sonification/SynthPatch.js +1 -1
- package/es-modules/Maps/GeoJSONComposition.js +14 -1
- package/es-modules/Maps/MapView.js +1 -1
- package/es-modules/Series/AreaRange/AreaRangeSeries.js +87 -147
- package/es-modules/Series/AreaRange/AreaRangeSeriesDefaults.js +42 -4
- package/es-modules/Series/Bellcurve/BellcurveSeries.js +10 -6
- package/es-modules/Series/BoxPlot/BoxPlotSeries.js +27 -28
- package/es-modules/Series/BoxPlot/BoxPlotSeriesDefaults.js +33 -1
- package/es-modules/Series/Bubble/BubbleSeries.js +15 -0
- package/es-modules/Series/Bullet/BulletSeries.js +1 -1
- package/es-modules/Series/Candlestick/CandlestickSeries.js +3 -3
- package/es-modules/Series/CenteredUtilities.js +5 -4
- package/es-modules/Series/ColorMapComposition.js +7 -4
- package/es-modules/Series/Column/ColumnPoint.js +2 -0
- package/es-modules/Series/Column/ColumnSeries.js +12 -12
- package/es-modules/Series/Column/ColumnSeriesDefaults.js +4 -2
- package/es-modules/Series/Column3D/Column3DComposition.js +16 -14
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPoint.js +18 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidPointOptions.js +12 -0
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeries.js +3 -2
- package/es-modules/Series/ColumnPyramid/ColumnPyramidSeriesOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangePoint.js +2 -0
- package/es-modules/Series/ColumnRange/ColumnRangePointOptions.js +12 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeries.js +9 -142
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesDefaults.js +148 -0
- package/es-modules/Series/ColumnRange/ColumnRangeSeriesOptions.js +12 -0
- package/es-modules/Series/Contour/ContourPoint.js +2 -0
- package/es-modules/Series/Contour/ContourSeries.js +1 -0
- package/es-modules/Series/Contour/ContourSeriesDefaults.js +7 -0
- package/es-modules/Series/Contour/ContourShader.js +9 -1
- package/es-modules/Series/CrossSymbol.js +3 -2
- package/es-modules/Series/Cylinder/CylinderComposition.js +10 -10
- package/es-modules/Series/Cylinder/CylinderPoint.js +2 -0
- package/es-modules/Series/Cylinder/CylinderPointOptions.js +15 -0
- package/es-modules/Series/Cylinder/CylinderSeries.js +2 -1
- package/es-modules/Series/Cylinder/CylinderSeriesOptions.js +15 -0
- package/es-modules/Series/Cylinder/SVGElement3DCylinder.js +2 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelPoint.js +3 -1
- package/es-modules/Series/DependencyWheel/DependencyWheelPointOptions.js +14 -0
- package/es-modules/Series/DependencyWheel/DependencyWheelSeries.js +8 -8
- package/es-modules/Series/DependencyWheel/DependencyWheelSeriesOptions.js +14 -0
- package/es-modules/Series/DerivedComposition.js +9 -8
- package/es-modules/Series/DotPlot/DotPlotPoint.js +18 -0
- package/es-modules/Series/DotPlot/DotPlotPointOptions.js +12 -0
- package/es-modules/Series/DotPlot/DotPlotSeries.js +3 -2
- package/es-modules/Series/DotPlot/DotPlotSeriesOptions.js +12 -0
- package/es-modules/Series/DragNodesComposition.js +11 -8
- package/es-modules/Series/DrawPointUtilities.js +3 -1
- package/es-modules/Series/Dumbbell/DumbbellPoint.js +5 -3
- package/es-modules/Series/Dumbbell/DumbbellPointOptions.js +12 -0
- package/es-modules/Series/Dumbbell/DumbbellSeries.js +9 -8
- package/es-modules/Series/Dumbbell/DumbbellSeriesOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarPoint.js +18 -0
- package/es-modules/Series/ErrorBar/ErrorBarPointOptions.js +12 -0
- package/es-modules/Series/ErrorBar/ErrorBarSeries.js +6 -9
- package/es-modules/Series/ErrorBar/ErrorBarSeriesDefaults.js +15 -1
- package/es-modules/Series/ErrorBar/ErrorBarSeriesOptions.js +12 -0
- package/es-modules/Series/Flags/FlagsSeries.js +5 -14
- package/es-modules/Series/Flags/FlagsSeriesDefaults.js +2 -1
- package/es-modules/Series/Funnel/FunnelSeries.js +23 -24
- package/es-modules/Series/Funnel/FunnelSeriesDefaults.js +12 -0
- package/es-modules/Series/Gantt/GanttSeries.js +2 -1
- package/es-modules/Series/GeoHeatmap/GeoHeatmapSeries.js +5 -5
- package/es-modules/Series/GraphLayoutComposition.js +3 -3
- package/es-modules/Series/Histogram/HistogramSeries.js +1 -1
- package/es-modules/Series/HollowCandlestick/HollowCandlestickSeries.js +9 -9
- package/es-modules/Series/Map/MapSeries.js +1 -2
- package/es-modules/Series/Map/MapSeriesDefaults.js +11 -1
- package/es-modules/Series/Networkgraph/NetworkgraphSeries.js +10 -7
- package/es-modules/Series/Networkgraph/NetworkgraphSeriesDefaults.js +12 -0
- package/es-modules/Series/OHLC/OHLCPoint.js +2 -2
- package/es-modules/Series/OHLC/OHLCSeries.js +1 -0
- package/es-modules/Series/Organization/OrganizationSeries.js +29 -7
- package/es-modules/Series/Organization/OrganizationSeriesDefaults.js +11 -4
- package/es-modules/Series/Pie/PiePoint.js +1 -2
- package/es-modules/Series/PolarComposition.js +5 -7
- package/es-modules/Series/Polygon/PolygonSeries.js +2 -2
- package/es-modules/Series/Polygon/PolygonSeriesDefaults.js +20 -0
- package/es-modules/Series/RangeDataLabel.js +128 -0
- package/es-modules/Series/Sankey/SankeySeries.js +2 -2
- package/es-modules/Series/Sankey/SankeySeriesDefaults.js +2 -2
- package/es-modules/Series/Scatter/ScatterSeriesDefaults.js +2 -0
- package/es-modules/Series/SimulationSeriesUtilities.js +1 -2
- package/es-modules/Series/SolidGauge/SolidGaugeSeries.js +2 -2
- package/es-modules/Series/Sunburst/SunburstSeriesDefaults.js +8 -0
- package/es-modules/Series/TiledWebMap/TiledWebMapSeries.js +12 -6
- package/es-modules/Series/Tilemap/TilemapSeriesDefaults.js +2 -1
- package/es-modules/Series/Timeline/TimelineSeries.js +9 -3
- package/es-modules/Series/Treegraph/TreegraphSeries.js +22 -13
- package/es-modules/Series/Treemap/TreemapSeriesDefaults.js +22 -1
- package/es-modules/Series/VariablePie/VariablePieSeriesDefaults.js +3 -2
- package/es-modules/Series/Vector/VectorSeries.js +7 -9
- package/es-modules/Series/Venn/VennSeries.js +3 -4
- package/es-modules/Series/Waterfall/WaterfallSeries.js +1 -1
- package/es-modules/Series/Windbarb/WindbarbSeries.js +6 -8
- package/es-modules/Series/XRange/XRangeSeries.js +8 -8
- package/es-modules/Shared/TimeBase.js +5 -6
- package/es-modules/Stock/Indicators/VBP/VBPIndicator.js +1 -2
- package/es-modules/Stock/Navigator/NavigatorDefaults.js +9 -2
- package/es-modules/Stock/Navigator/NavigatorSymbols.js +2 -1
- package/es-modules/Stock/Navigator/StandaloneNavigator.js +51 -10
- package/es-modules/Stock/StockTools/StockToolbar.js +1 -1
- package/es-modules/Stock/StockTools/StockToolsBindings.js +7 -7
- package/es-modules/Stock/StockTools/StockToolsGui.js +2 -2
- 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 +7 -7
- package/es-modules/masters/highmaps.src.js +1 -1
- package/es-modules/masters/highstock.src.js +1 -1
- package/es-modules/masters/i18n/fr-FR.src.d.ts +1 -1
- package/es-modules/masters/i18n/fr-FR.src.js +1 -1
- package/es-modules/masters/i18n/nb-NO.src.d.ts +1 -1
- package/es-modules/masters/i18n/nb-NO.src.js +1 -1
- package/es-modules/masters/i18n/zh-CN.src.d.ts +1 -1
- package/es-modules/masters/i18n/zh-CN.src.js +1 -1
- package/es-modules/masters/indicators/acceleration-bands.src.js +1 -1
- package/es-modules/masters/indicators/accumulation-distribution.src.js +1 -1
- package/es-modules/masters/indicators/ao.src.js +1 -1
- package/es-modules/masters/indicators/apo.src.js +1 -1
- package/es-modules/masters/indicators/aroon-oscillator.src.js +1 -1
- package/es-modules/masters/indicators/aroon.src.js +1 -1
- package/es-modules/masters/indicators/atr.src.js +1 -1
- package/es-modules/masters/indicators/bollinger-bands.src.js +1 -1
- package/es-modules/masters/indicators/cci.src.js +1 -1
- package/es-modules/masters/indicators/chaikin.src.js +1 -1
- package/es-modules/masters/indicators/cmf.src.js +1 -1
- package/es-modules/masters/indicators/cmo.src.js +1 -1
- package/es-modules/masters/indicators/dema.src.js +1 -1
- package/es-modules/masters/indicators/disparity-index.src.js +1 -1
- package/es-modules/masters/indicators/dmi.src.js +1 -1
- package/es-modules/masters/indicators/dpo.src.js +1 -1
- package/es-modules/masters/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/es-modules/masters/indicators/indicators-all.src.js +1 -1
- package/es-modules/masters/indicators/indicators.src.js +1 -1
- package/es-modules/masters/indicators/keltner-channels.src.js +1 -1
- package/es-modules/masters/indicators/klinger.src.js +1 -1
- package/es-modules/masters/indicators/macd.src.js +1 -1
- package/es-modules/masters/indicators/mfi.src.js +1 -1
- package/es-modules/masters/indicators/momentum.src.js +1 -1
- package/es-modules/masters/indicators/natr.src.js +1 -1
- package/es-modules/masters/indicators/obv.src.js +1 -1
- package/es-modules/masters/indicators/pivot-points.src.js +1 -1
- package/es-modules/masters/indicators/ppo.src.js +1 -1
- package/es-modules/masters/indicators/price-channel.src.js +1 -1
- package/es-modules/masters/indicators/price-envelopes.src.js +1 -1
- package/es-modules/masters/indicators/psar.src.js +1 -1
- package/es-modules/masters/indicators/regressions.src.js +1 -1
- package/es-modules/masters/indicators/roc.src.js +1 -1
- package/es-modules/masters/indicators/rsi.src.js +1 -1
- package/es-modules/masters/indicators/slow-stochastic.src.js +1 -1
- package/es-modules/masters/indicators/stochastic.src.js +1 -1
- package/es-modules/masters/indicators/supertrend.src.js +1 -1
- package/es-modules/masters/indicators/tema.src.js +1 -1
- package/es-modules/masters/indicators/trendline.src.js +1 -1
- package/es-modules/masters/indicators/trix.src.js +1 -1
- package/es-modules/masters/indicators/volume-by-price.src.js +1 -1
- package/es-modules/masters/indicators/vwap.src.js +1 -1
- package/es-modules/masters/indicators/williams-r.src.js +1 -1
- package/es-modules/masters/indicators/wma.src.js +1 -1
- package/es-modules/masters/indicators/zigzag.src.js +1 -1
- package/es-modules/masters/modules/accessibility.src.js +1 -1
- package/es-modules/masters/modules/annotations-advanced.src.js +1 -1
- package/es-modules/masters/modules/annotations.src.js +1 -1
- package/es-modules/masters/modules/arc-diagram.src.js +1 -1
- package/es-modules/masters/modules/arrow-symbols.src.js +1 -1
- package/es-modules/masters/modules/boost-canvas.src.js +1 -1
- package/es-modules/masters/modules/boost.src.js +1 -1
- package/es-modules/masters/modules/broken-axis.src.js +1 -1
- package/es-modules/masters/modules/bullet.src.js +1 -1
- package/es-modules/masters/modules/coloraxis.src.js +1 -1
- package/es-modules/masters/modules/contour.src.js +1 -1
- package/es-modules/masters/modules/current-date-indicator.src.js +1 -1
- package/es-modules/masters/modules/cylinder.src.js +1 -1
- package/es-modules/masters/modules/data-sorting.src.js +1 -1
- package/es-modules/masters/modules/data-tools.src.js +1 -1
- package/es-modules/masters/modules/data.src.js +1 -1
- package/es-modules/masters/modules/datagrouping.src.js +1 -1
- package/es-modules/masters/modules/debugger.src.js +1 -1
- package/es-modules/masters/modules/dependency-wheel.src.js +1 -1
- package/es-modules/masters/modules/dotplot.src.js +1 -1
- package/es-modules/masters/modules/drag-panes.src.js +1 -1
- package/es-modules/masters/modules/draggable-points.src.js +1 -1
- package/es-modules/masters/modules/drilldown.src.js +1 -1
- package/es-modules/masters/modules/dumbbell.src.js +1 -1
- package/es-modules/masters/modules/export-data.src.js +1 -1
- package/es-modules/masters/modules/exporting.src.js +1 -1
- package/es-modules/masters/modules/flowmap.src.js +2 -1
- package/es-modules/masters/modules/full-screen.src.js +1 -1
- package/es-modules/masters/modules/funnel.src.js +1 -1
- package/es-modules/masters/modules/funnel3d.src.js +1 -1
- package/es-modules/masters/modules/gantt.src.js +1 -1
- package/es-modules/masters/modules/geoheatmap.src.js +1 -1
- package/es-modules/masters/modules/grid-axis.src.js +1 -1
- package/es-modules/masters/modules/heatmap.src.js +1 -1
- package/es-modules/masters/modules/heikinashi.src.js +1 -1
- package/es-modules/masters/modules/histogram-bellcurve.src.js +1 -1
- package/es-modules/masters/modules/hollowcandlestick.src.js +1 -1
- package/es-modules/masters/modules/item-series.src.js +1 -1
- package/es-modules/masters/modules/lollipop.src.js +1 -1
- package/es-modules/masters/modules/map.src.js +1 -1
- package/es-modules/masters/modules/marker-clusters.src.js +1 -1
- package/es-modules/masters/modules/mouse-wheel-zoom.src.js +1 -1
- package/es-modules/masters/modules/navigator.src.js +1 -1
- package/es-modules/masters/modules/networkgraph.src.js +1 -1
- package/es-modules/masters/modules/no-data-to-display.src.js +1 -1
- package/es-modules/masters/modules/non-cartesian-zoom.src.js +1 -1
- package/es-modules/masters/modules/offline-exporting.src.js +1 -1
- package/es-modules/masters/modules/organization.src.js +1 -1
- package/es-modules/masters/modules/parallel-coordinates.src.js +1 -1
- package/es-modules/masters/modules/pareto.src.js +1 -1
- package/es-modules/masters/modules/pathfinder.src.js +1 -1
- package/es-modules/masters/modules/pattern-fill.src.js +1 -1
- package/es-modules/masters/modules/pictorial.src.js +1 -1
- package/es-modules/masters/modules/pointandfigure.src.js +1 -1
- package/es-modules/masters/modules/price-indicator.src.js +1 -1
- package/es-modules/masters/modules/pyramid3d.src.js +1 -1
- package/es-modules/masters/modules/renko.src.js +1 -1
- package/es-modules/masters/modules/sankey.src.js +1 -1
- package/es-modules/masters/modules/series-label.src.js +1 -1
- package/es-modules/masters/modules/series-on-point.src.js +1 -1
- package/es-modules/masters/modules/solid-gauge.src.js +1 -1
- package/es-modules/masters/modules/sonification.src.js +1 -1
- package/es-modules/masters/modules/static-scale.src.js +1 -1
- package/es-modules/masters/modules/stock-tools.src.js +1 -1
- package/es-modules/masters/modules/stock.src.js +1 -1
- package/es-modules/masters/modules/streamgraph.src.js +1 -1
- package/es-modules/masters/modules/sunburst.src.js +3 -2
- package/es-modules/masters/modules/textpath.src.js +1 -1
- package/es-modules/masters/modules/tiledwebmap.src.js +1 -1
- package/es-modules/masters/modules/tilemap.src.js +1 -1
- package/es-modules/masters/modules/timeline.src.js +1 -1
- package/es-modules/masters/modules/treegraph.src.js +1 -1
- package/es-modules/masters/modules/treegrid.src.js +1 -1
- package/es-modules/masters/modules/treemap.src.js +1 -1
- package/es-modules/masters/modules/variable-pie.src.js +1 -1
- package/es-modules/masters/modules/variwide.src.js +1 -1
- package/es-modules/masters/modules/vector.src.js +1 -1
- package/es-modules/masters/modules/venn.src.js +1 -1
- package/es-modules/masters/modules/windbarb.src.js +1 -1
- package/es-modules/masters/modules/wordcloud.src.js +1 -1
- package/es-modules/masters/modules/xrange.src.js +1 -1
- package/es-modules/masters/standalone-navigator.src.js +1 -1
- package/es-modules/masters/themes/adaptive.src.js +1 -1
- package/es-modules/masters/themes/avocado.src.js +1 -1
- package/es-modules/masters/themes/dark-unica.src.js +1 -1
- package/es-modules/masters/themes/grid-light.src.js +1 -1
- package/es-modules/masters/themes/high-contrast.src.js +1 -1
- package/es-modules/masters/themes/sand-signika.src.js +1 -1
- package/es-modules/masters/themes/sunset.src.js +1 -1
- package/es-modules/tsconfig.tsbuildinfo +1 -1
- package/esm/highcharts-3d.js +2 -2
- package/esm/highcharts-3d.src.js +40 -25
- package/esm/highcharts-autoload.js +2 -2
- package/esm/highcharts-autoload.src.js +22 -8
- package/esm/highcharts-gantt.js +2 -2
- package/esm/highcharts-gantt.src.js +1 -24
- package/esm/highcharts-more.js +2 -2
- package/esm/highcharts-more.src.js +1109 -926
- package/esm/highcharts.js +5 -5
- package/esm/highcharts.src.js +396 -314
- package/esm/highmaps.js +2 -2
- package/esm/highmaps.src.js +1 -24
- package/esm/highstock.js +2 -2
- package/esm/highstock.src.js +1 -24
- package/esm/i18n/fr-FR.js +2 -2
- package/esm/i18n/fr-FR.src.js +22 -8
- package/esm/i18n/nb-NO.js +2 -2
- package/esm/i18n/nb-NO.src.js +22 -8
- package/esm/i18n/zh-CN.js +2 -2
- package/esm/i18n/zh-CN.src.js +22 -8
- package/esm/indicators/acceleration-bands.js +2 -2
- package/esm/indicators/acceleration-bands.src.js +22 -8
- package/esm/indicators/accumulation-distribution.js +2 -2
- package/esm/indicators/accumulation-distribution.src.js +22 -8
- package/esm/indicators/ao.js +2 -2
- package/esm/indicators/ao.src.js +22 -8
- package/esm/indicators/apo.js +2 -2
- package/esm/indicators/apo.src.js +22 -8
- package/esm/indicators/aroon-oscillator.js +2 -2
- package/esm/indicators/aroon-oscillator.src.js +22 -8
- package/esm/indicators/aroon.js +2 -2
- package/esm/indicators/aroon.src.js +22 -8
- package/esm/indicators/atr.js +2 -2
- package/esm/indicators/atr.src.js +22 -8
- package/esm/indicators/bollinger-bands.js +2 -2
- package/esm/indicators/bollinger-bands.src.js +22 -8
- package/esm/indicators/cci.js +2 -2
- package/esm/indicators/cci.src.js +22 -8
- package/esm/indicators/chaikin.js +2 -2
- package/esm/indicators/chaikin.src.js +22 -8
- package/esm/indicators/cmf.js +2 -2
- package/esm/indicators/cmf.src.js +22 -8
- package/esm/indicators/cmo.js +2 -2
- package/esm/indicators/cmo.src.js +22 -8
- package/esm/indicators/dema.js +2 -2
- package/esm/indicators/dema.src.js +22 -8
- package/esm/indicators/disparity-index.js +2 -2
- package/esm/indicators/disparity-index.src.js +22 -8
- package/esm/indicators/dmi.js +2 -2
- package/esm/indicators/dmi.src.js +22 -8
- package/esm/indicators/dpo.js +2 -2
- package/esm/indicators/dpo.src.js +22 -8
- package/esm/indicators/ichimoku-kinko-hyo.js +2 -2
- package/esm/indicators/ichimoku-kinko-hyo.src.js +22 -8
- package/esm/indicators/indicators-all.js +2 -2
- package/esm/indicators/indicators-all.src.js +24 -11
- package/esm/indicators/indicators.js +2 -2
- package/esm/indicators/indicators.src.js +23 -9
- package/esm/indicators/keltner-channels.js +2 -2
- package/esm/indicators/keltner-channels.src.js +22 -8
- package/esm/indicators/klinger.js +2 -2
- package/esm/indicators/klinger.src.js +22 -8
- package/esm/indicators/macd.js +2 -2
- package/esm/indicators/macd.src.js +22 -8
- package/esm/indicators/mfi.js +2 -2
- package/esm/indicators/mfi.src.js +22 -8
- package/esm/indicators/momentum.js +2 -2
- package/esm/indicators/momentum.src.js +22 -8
- package/esm/indicators/natr.js +2 -2
- package/esm/indicators/natr.src.js +22 -8
- package/esm/indicators/obv.js +2 -2
- package/esm/indicators/obv.src.js +22 -8
- package/esm/indicators/pivot-points.js +2 -2
- package/esm/indicators/pivot-points.src.js +22 -8
- package/esm/indicators/ppo.js +2 -2
- package/esm/indicators/ppo.src.js +22 -8
- package/esm/indicators/price-channel.js +2 -2
- package/esm/indicators/price-channel.src.js +22 -8
- package/esm/indicators/price-envelopes.js +2 -2
- package/esm/indicators/price-envelopes.src.js +22 -8
- package/esm/indicators/psar.js +2 -2
- package/esm/indicators/psar.src.js +22 -8
- package/esm/indicators/regressions.js +2 -2
- package/esm/indicators/regressions.src.js +22 -8
- package/esm/indicators/roc.js +2 -2
- package/esm/indicators/roc.src.js +22 -8
- package/esm/indicators/rsi.js +2 -2
- package/esm/indicators/rsi.src.js +22 -8
- package/esm/indicators/slow-stochastic.js +2 -2
- package/esm/indicators/slow-stochastic.src.js +22 -8
- package/esm/indicators/stochastic.js +2 -2
- package/esm/indicators/stochastic.src.js +22 -8
- package/esm/indicators/supertrend.js +2 -2
- package/esm/indicators/supertrend.src.js +22 -8
- package/esm/indicators/tema.js +2 -2
- package/esm/indicators/tema.src.js +22 -8
- package/esm/indicators/trendline.js +2 -2
- package/esm/indicators/trendline.src.js +22 -8
- package/esm/indicators/trix.js +2 -2
- package/esm/indicators/trix.src.js +22 -8
- package/esm/indicators/volume-by-price.js +2 -2
- package/esm/indicators/volume-by-price.src.js +23 -10
- package/esm/indicators/vwap.js +2 -2
- package/esm/indicators/vwap.src.js +22 -8
- package/esm/indicators/williams-r.js +2 -2
- package/esm/indicators/williams-r.src.js +22 -8
- package/esm/indicators/wma.js +2 -2
- package/esm/indicators/wma.src.js +22 -8
- package/esm/indicators/zigzag.js +2 -2
- package/esm/indicators/zigzag.src.js +22 -8
- package/esm/modules/accessibility.js +2 -2
- package/esm/modules/accessibility.src.js +498 -32
- package/esm/modules/annotations-advanced.js +11 -11
- package/esm/modules/annotations-advanced.src.js +201 -141
- package/esm/modules/annotations.js +11 -11
- package/esm/modules/annotations.src.js +165 -127
- package/esm/modules/arc-diagram.js +2 -2
- package/esm/modules/arc-diagram.src.js +22 -8
- package/esm/modules/arrow-symbols.js +3 -3
- package/esm/modules/arrow-symbols.src.js +22 -8
- package/esm/modules/boost-canvas.js +2 -2
- package/esm/modules/boost-canvas.src.js +32 -11
- package/esm/modules/boost.js +2 -2
- package/esm/modules/boost.src.js +45 -11
- package/esm/modules/broken-axis.js +2 -2
- package/esm/modules/broken-axis.src.js +22 -8
- package/esm/modules/bullet.js +2 -2
- package/esm/modules/bullet.src.js +23 -9
- package/esm/modules/coloraxis.js +2 -2
- package/esm/modules/coloraxis.src.js +30 -11
- package/esm/modules/contour.js +3 -3
- package/esm/modules/contour.src.js +46 -13
- package/esm/modules/current-date-indicator.js +2 -2
- package/esm/modules/current-date-indicator.src.js +22 -8
- package/esm/modules/cylinder.js +2 -2
- package/esm/modules/cylinder.src.js +38 -19
- package/esm/modules/data-sorting.js +2 -2
- package/esm/modules/data-sorting.src.js +22 -8
- package/esm/modules/data-tools.js +2 -2
- package/esm/modules/data-tools.src.js +25 -11
- package/esm/modules/data.js +4 -4
- package/esm/modules/data.src.js +23 -9
- package/esm/modules/datagrouping.js +2 -2
- package/esm/modules/datagrouping.src.js +23 -9
- package/esm/modules/debugger.js +2 -2
- package/esm/modules/debugger.src.js +22 -8
- package/esm/modules/dependency-wheel.js +2 -2
- package/esm/modules/dependency-wheel.src.js +428 -17
- package/esm/modules/dotplot.js +2 -2
- package/esm/modules/dotplot.src.js +25 -10
- package/esm/modules/drag-panes.js +2 -2
- package/esm/modules/drag-panes.src.js +22 -8
- package/esm/modules/draggable-points.js +2 -2
- package/esm/modules/draggable-points.src.js +23 -10
- package/esm/modules/drilldown.js +2 -2
- package/esm/modules/drilldown.src.js +34 -22
- package/esm/modules/dumbbell.js +2 -2
- package/esm/modules/dumbbell.src.js +36 -19
- package/esm/modules/export-data.js +2 -2
- package/esm/modules/export-data.src.js +27 -9
- package/esm/modules/exporting.js +2 -2
- package/esm/modules/exporting.src.js +77 -31
- package/esm/modules/flowmap.js +3 -2
- package/esm/modules/flowmap.src.js +23 -8
- package/esm/modules/full-screen.js +2 -2
- package/esm/modules/full-screen.src.js +22 -8
- package/esm/modules/funnel.js +2 -2
- package/esm/modules/funnel.src.js +72 -41
- package/esm/modules/funnel3d.js +2 -2
- package/esm/modules/funnel3d.src.js +22 -8
- package/esm/modules/gantt.js +2 -2
- package/esm/modules/gantt.src.js +450 -25
- package/esm/modules/geoheatmap.js +2 -2
- package/esm/modules/geoheatmap.src.js +28 -14
- package/esm/modules/grid-axis.js +2 -2
- package/esm/modules/grid-axis.src.js +30 -9
- package/esm/modules/heatmap.js +2 -2
- package/esm/modules/heatmap.src.js +29 -12
- package/esm/modules/heikinashi.js +2 -2
- package/esm/modules/heikinashi.src.js +22 -8
- package/esm/modules/histogram-bellcurve.js +2 -2
- package/esm/modules/histogram-bellcurve.src.js +42 -23
- package/esm/modules/hollowcandlestick.js +2 -2
- package/esm/modules/hollowcandlestick.src.js +31 -17
- package/esm/modules/item-series.js +2 -2
- package/esm/modules/item-series.src.js +55 -8
- package/esm/modules/lollipop.js +2 -2
- package/esm/modules/lollipop.src.js +22 -8
- package/esm/modules/map.js +2 -2
- package/esm/modules/map.src.js +84 -35
- package/esm/modules/marker-clusters.js +2 -2
- package/esm/modules/marker-clusters.src.js +25 -13
- package/esm/modules/mouse-wheel-zoom.js +2 -2
- package/esm/modules/mouse-wheel-zoom.src.js +52 -11
- package/esm/modules/navigator.js +2 -2
- package/esm/modules/navigator.src.js +488 -30
- package/esm/modules/networkgraph.js +2 -2
- package/esm/modules/networkgraph.src.js +57 -26
- package/esm/modules/no-data-to-display.js +2 -2
- package/esm/modules/no-data-to-display.src.js +22 -8
- package/esm/modules/non-cartesian-zoom.js +2 -2
- package/esm/modules/non-cartesian-zoom.src.js +22 -8
- package/esm/modules/offline-exporting.js +2 -2
- package/esm/modules/offline-exporting.src.js +53 -12
- package/esm/modules/organization.js +4 -2
- package/esm/modules/organization.src.js +61 -18
- package/esm/modules/parallel-coordinates.js +2 -2
- package/esm/modules/parallel-coordinates.src.js +25 -8
- package/esm/modules/pareto.js +2 -2
- package/esm/modules/pareto.src.js +31 -16
- package/esm/modules/pathfinder.js +2 -2
- package/esm/modules/pathfinder.src.js +22 -8
- package/esm/modules/pattern-fill.js +2 -2
- package/esm/modules/pattern-fill.src.js +22 -8
- package/esm/modules/pictorial.js +2 -2
- package/esm/modules/pictorial.src.js +27 -14
- package/esm/modules/pointandfigure.js +2 -2
- package/esm/modules/pointandfigure.src.js +26 -11
- package/esm/modules/price-indicator.js +2 -2
- package/esm/modules/price-indicator.src.js +22 -8
- package/esm/modules/pyramid3d.js +2 -2
- package/esm/modules/pyramid3d.src.js +22 -8
- package/esm/modules/renko.js +2 -2
- package/esm/modules/renko.src.js +22 -8
- package/esm/modules/sankey.js +2 -2
- package/esm/modules/sankey.src.js +26 -12
- package/esm/modules/series-label.js +2 -2
- package/esm/modules/series-label.src.js +25 -12
- package/esm/modules/series-on-point.js +2 -2
- package/esm/modules/series-on-point.src.js +23 -9
- package/esm/modules/solid-gauge.js +2 -2
- package/esm/modules/solid-gauge.src.js +39 -19
- package/esm/modules/sonification.js +2 -2
- package/esm/modules/sonification.src.js +27 -12
- package/esm/modules/static-scale.js +2 -2
- package/esm/modules/static-scale.src.js +22 -8
- package/esm/modules/stock-tools.js +3 -3
- package/esm/modules/stock-tools.src.js +59 -18
- package/esm/modules/stock.js +2 -2
- package/esm/modules/stock.src.js +465 -47
- package/esm/modules/streamgraph.js +2 -2
- package/esm/modules/streamgraph.src.js +22 -8
- package/esm/modules/sunburst.js +2 -2
- package/esm/modules/sunburst.src.js +70 -20
- package/esm/modules/textpath.js +2 -2
- package/esm/modules/textpath.src.js +22 -8
- package/esm/modules/tiledwebmap.js +3 -3
- package/esm/modules/tiledwebmap.src.js +37 -14
- package/esm/modules/tilemap.js +2 -2
- package/esm/modules/tilemap.src.js +25 -10
- package/esm/modules/timeline.js +2 -2
- package/esm/modules/timeline.src.js +31 -11
- package/esm/modules/treegraph.js +2 -2
- package/esm/modules/treegraph.src.js +43 -20
- package/esm/modules/treegrid.js +2 -2
- package/esm/modules/treegrid.src.js +31 -10
- package/esm/modules/treemap.js +2 -2
- package/esm/modules/treemap.src.js +55 -15
- package/esm/modules/variable-pie.js +2 -2
- package/esm/modules/variable-pie.src.js +25 -10
- package/esm/modules/variwide.js +2 -2
- package/esm/modules/variwide.src.js +22 -8
- package/esm/modules/vector.js +2 -2
- package/esm/modules/vector.src.js +28 -16
- package/esm/modules/venn.js +2 -2
- package/esm/modules/venn.src.js +28 -13
- package/esm/modules/windbarb.js +2 -2
- package/esm/modules/windbarb.src.js +28 -16
- package/esm/modules/wordcloud.js +2 -2
- package/esm/modules/wordcloud.src.js +25 -9
- package/esm/modules/xrange.js +2 -2
- package/esm/modules/xrange.src.js +29 -15
- package/esm/standalone-navigator.js +5 -5
- package/esm/standalone-navigator.src.js +461 -329
- package/esm/themes/adaptive.js +3 -3
- package/esm/themes/adaptive.src.js +22 -8
- package/esm/themes/avocado.js +2 -2
- package/esm/themes/avocado.src.js +22 -8
- package/esm/themes/dark-unica.js +2 -2
- package/esm/themes/dark-unica.src.js +22 -8
- package/esm/themes/grid-light.js +2 -2
- package/esm/themes/grid-light.src.js +22 -8
- package/esm/themes/high-contrast.js +2 -2
- package/esm/themes/high-contrast.src.js +22 -8
- package/esm/themes/sand-signika.js +2 -2
- package/esm/themes/sand-signika.src.js +22 -8
- package/esm/themes/sunset.js +2 -2
- package/esm/themes/sunset.src.js +22 -8
- package/highcharts-3d.js +2 -2
- package/highcharts-3d.src.js +78 -62
- package/highcharts-autoload.d.ts +7 -3
- package/highcharts-autoload.js +4 -4
- package/highcharts-autoload.src.d.ts +7 -3
- package/highcharts-autoload.src.js +418 -298
- package/highcharts-gantt.js +4 -4
- package/highcharts-gantt.src.js +458 -318
- package/highcharts-more.d.ts +7 -3
- package/highcharts-more.js +2 -2
- package/highcharts-more.src.d.ts +7 -3
- package/highcharts-more.src.js +1224 -1040
- package/highcharts.d.ts +34734 -25643
- package/highcharts.js +4 -4
- package/highcharts.src.d.ts +34734 -25643
- package/highcharts.src.js +417 -297
- package/highmaps.js +4 -4
- package/highmaps.src.js +482 -320
- package/highstock.js +4 -4
- package/highstock.src.js +497 -337
- package/i18n/fr-FR.js +2 -2
- package/i18n/fr-FR.src.js +32 -16
- package/i18n/nb-NO.js +2 -2
- package/i18n/nb-NO.src.js +32 -16
- package/i18n/zh-CN.js +2 -2
- package/i18n/zh-CN.src.js +32 -16
- package/indicators/acceleration-bands.js +2 -2
- package/indicators/acceleration-bands.src.js +31 -16
- package/indicators/accumulation-distribution.js +2 -2
- package/indicators/accumulation-distribution.src.js +31 -16
- package/indicators/ao.js +2 -2
- package/indicators/ao.src.js +31 -16
- package/indicators/apo.js +2 -2
- package/indicators/apo.src.js +31 -16
- package/indicators/aroon-oscillator.js +2 -2
- package/indicators/aroon-oscillator.src.js +31 -16
- package/indicators/aroon.js +2 -2
- package/indicators/aroon.src.js +31 -16
- package/indicators/atr.js +2 -2
- package/indicators/atr.src.js +31 -16
- package/indicators/bollinger-bands.js +2 -2
- package/indicators/bollinger-bands.src.js +31 -16
- package/indicators/cci.js +2 -2
- package/indicators/cci.src.js +31 -16
- package/indicators/chaikin.js +2 -2
- package/indicators/chaikin.src.js +31 -16
- package/indicators/cmf.js +2 -2
- package/indicators/cmf.src.js +31 -16
- package/indicators/cmo.js +2 -2
- package/indicators/cmo.src.js +31 -16
- package/indicators/dema.js +2 -2
- package/indicators/dema.src.js +31 -16
- package/indicators/disparity-index.js +2 -2
- package/indicators/disparity-index.src.js +31 -16
- package/indicators/dmi.js +2 -2
- package/indicators/dmi.src.js +31 -16
- package/indicators/dpo.js +2 -2
- package/indicators/dpo.src.js +31 -16
- package/indicators/ichimoku-kinko-hyo.js +2 -2
- package/indicators/ichimoku-kinko-hyo.src.js +41 -26
- package/indicators/indicators-all.js +2 -2
- package/indicators/indicators-all.src.js +45 -31
- package/indicators/indicators.js +2 -2
- package/indicators/indicators.src.js +38 -23
- package/indicators/keltner-channels.js +2 -2
- package/indicators/keltner-channels.src.js +31 -16
- package/indicators/klinger.js +2 -2
- package/indicators/klinger.src.js +31 -16
- package/indicators/macd.js +2 -2
- package/indicators/macd.src.js +31 -16
- package/indicators/mfi.js +2 -2
- package/indicators/mfi.src.js +31 -16
- package/indicators/momentum.js +2 -2
- package/indicators/momentum.src.js +31 -16
- package/indicators/natr.js +2 -2
- package/indicators/natr.src.js +31 -16
- package/indicators/obv.js +2 -2
- package/indicators/obv.src.js +31 -16
- package/indicators/pivot-points.js +2 -2
- package/indicators/pivot-points.src.js +31 -16
- package/indicators/ppo.js +2 -2
- package/indicators/ppo.src.js +31 -16
- package/indicators/price-channel.js +2 -2
- package/indicators/price-channel.src.js +31 -16
- package/indicators/price-envelopes.js +2 -2
- package/indicators/price-envelopes.src.js +31 -16
- package/indicators/psar.js +2 -2
- package/indicators/psar.src.js +31 -16
- package/indicators/regressions.js +2 -2
- package/indicators/regressions.src.js +31 -16
- package/indicators/roc.js +2 -2
- package/indicators/roc.src.js +31 -16
- package/indicators/rsi.js +2 -2
- package/indicators/rsi.src.js +31 -16
- package/indicators/slow-stochastic.js +2 -2
- package/indicators/slow-stochastic.src.js +31 -16
- package/indicators/stochastic.js +2 -2
- package/indicators/stochastic.src.js +31 -16
- package/indicators/supertrend.js +2 -2
- package/indicators/supertrend.src.js +31 -16
- package/indicators/tema.js +2 -2
- package/indicators/tema.src.js +31 -16
- package/indicators/trendline.js +2 -2
- package/indicators/trendline.src.js +31 -16
- package/indicators/trix.js +2 -2
- package/indicators/trix.src.js +31 -16
- package/indicators/volume-by-price.js +2 -2
- package/indicators/volume-by-price.src.js +32 -18
- package/indicators/vwap.js +2 -2
- package/indicators/vwap.src.js +31 -16
- package/indicators/williams-r.js +2 -2
- package/indicators/williams-r.src.js +31 -16
- package/indicators/wma.js +2 -2
- package/indicators/wma.src.js +31 -16
- package/indicators/zigzag.js +2 -2
- package/indicators/zigzag.src.js +31 -16
- package/modules/accessibility.d.ts +47 -0
- package/modules/accessibility.js +2 -2
- package/modules/accessibility.src.d.ts +47 -0
- package/modules/accessibility.src.js +537 -70
- package/modules/annotations-advanced.js +11 -11
- package/modules/annotations-advanced.src.js +223 -162
- package/modules/annotations.js +11 -11
- package/modules/annotations.src.js +187 -148
- package/modules/arc-diagram.js +2 -2
- package/modules/arc-diagram.src.js +43 -28
- package/modules/arrow-symbols.js +2 -2
- package/modules/arrow-symbols.src.js +28 -13
- package/modules/boost-canvas.js +2 -2
- package/modules/boost-canvas.src.js +41 -19
- package/modules/boost.js +2 -2
- package/modules/boost.src.js +54 -19
- package/modules/broken-axis.js +2 -2
- package/modules/broken-axis.src.js +31 -16
- package/modules/bullet.js +2 -2
- package/modules/bullet.src.js +35 -20
- package/modules/coloraxis.js +2 -2
- package/modules/coloraxis.src.js +48 -28
- package/modules/contour.js +5 -5
- package/modules/contour.src.js +74 -34
- package/modules/current-date-indicator.js +2 -2
- package/modules/current-date-indicator.src.js +28 -13
- package/modules/cylinder.js +2 -2
- package/modules/cylinder.src.js +59 -39
- package/modules/data-sorting.js +2 -2
- package/modules/data-sorting.src.js +28 -13
- package/modules/data-tools.js +2 -2
- package/modules/data-tools.src.js +31 -16
- package/modules/data.js +2 -2
- package/modules/data.src.js +50 -35
- package/modules/datagrouping.js +2 -2
- package/modules/datagrouping.src.js +37 -22
- package/modules/debugger.js +2 -2
- package/modules/debugger.src.js +28 -13
- package/modules/dependency-wheel.d.ts +7 -1
- package/modules/dependency-wheel.js +2 -2
- package/modules/dependency-wheel.src.d.ts +7 -1
- package/modules/dependency-wheel.src.js +440 -28
- package/modules/dotplot.js +2 -2
- package/modules/dotplot.src.js +34 -18
- package/modules/drag-panes.js +2 -2
- package/modules/drag-panes.src.js +28 -13
- package/modules/draggable-points.js +2 -2
- package/modules/draggable-points.src.js +29 -15
- package/modules/drilldown.js +2 -2
- package/modules/drilldown.src.js +45 -32
- package/modules/dumbbell.js +2 -2
- package/modules/dumbbell.src.js +50 -32
- package/modules/export-data.d.ts +66 -1
- package/modules/export-data.js +2 -2
- package/modules/export-data.src.d.ts +66 -1
- package/modules/export-data.src.js +41 -22
- package/modules/exporting.d.ts +0 -103
- package/modules/exporting.js +2 -2
- package/modules/exporting.src.d.ts +0 -103
- package/modules/exporting.src.js +91 -44
- package/modules/flowmap.js +3 -2
- package/modules/flowmap.src.js +32 -16
- package/modules/full-screen.js +2 -2
- package/modules/full-screen.src.js +31 -16
- package/modules/funnel.d.ts +3 -3
- package/modules/funnel.js +2 -2
- package/modules/funnel.src.d.ts +3 -3
- package/modules/funnel.src.js +81 -49
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.src.js +43 -28
- package/modules/gantt.d.ts +47 -0
- package/modules/gantt.js +8 -8
- package/modules/gantt.src.d.ts +47 -0
- package/modules/gantt.src.js +510 -81
- package/modules/geoheatmap.d.ts +13 -0
- package/modules/geoheatmap.js +2 -2
- package/modules/geoheatmap.src.d.ts +13 -0
- package/modules/geoheatmap.src.js +37 -22
- package/modules/grid-axis.js +2 -2
- package/modules/grid-axis.src.js +39 -17
- package/modules/heatmap.js +4 -4
- package/modules/heatmap.src.js +64 -40
- package/modules/heikinashi.js +2 -2
- package/modules/heikinashi.src.js +31 -16
- package/modules/histogram-bellcurve.js +2 -2
- package/modules/histogram-bellcurve.src.js +56 -36
- package/modules/hollowcandlestick.js +2 -2
- package/modules/hollowcandlestick.src.js +45 -30
- package/modules/item-series.js +2 -2
- package/modules/item-series.src.js +64 -16
- package/modules/lollipop.js +2 -2
- package/modules/lollipop.src.js +36 -21
- package/modules/map.d.ts +0 -8
- package/modules/map.js +4 -4
- package/modules/map.src.d.ts +0 -8
- package/modules/map.src.js +131 -74
- package/modules/marker-clusters.js +2 -2
- package/modules/marker-clusters.src.js +31 -18
- package/modules/mouse-wheel-zoom.js +2 -2
- package/modules/mouse-wheel-zoom.src.js +58 -16
- package/modules/navigator.d.ts +47 -0
- package/modules/navigator.js +2 -2
- package/modules/navigator.src.d.ts +47 -0
- package/modules/navigator.src.js +510 -51
- package/modules/networkgraph.js +2 -2
- package/modules/networkgraph.src.js +69 -37
- package/modules/no-data-to-display.js +2 -2
- package/modules/no-data-to-display.src.js +31 -16
- package/modules/non-cartesian-zoom.js +2 -2
- package/modules/non-cartesian-zoom.src.js +28 -13
- package/modules/offline-exporting.js +2 -2
- package/modules/offline-exporting.src.js +67 -25
- package/modules/organization.js +4 -2
- package/modules/organization.src.js +73 -29
- package/modules/parallel-coordinates.js +2 -2
- package/modules/parallel-coordinates.src.js +36 -18
- package/modules/pareto.js +2 -2
- package/modules/pareto.src.js +45 -29
- package/modules/pathfinder.js +2 -2
- package/modules/pathfinder.src.js +31 -16
- package/modules/pattern-fill.js +2 -2
- package/modules/pattern-fill.src.js +28 -13
- package/modules/pictorial.js +2 -2
- package/modules/pictorial.src.js +53 -38
- package/modules/pointandfigure.js +2 -2
- package/modules/pointandfigure.src.js +35 -19
- package/modules/price-indicator.js +2 -2
- package/modules/price-indicator.src.js +28 -13
- package/modules/pyramid3d.js +2 -2
- package/modules/pyramid3d.src.js +31 -16
- package/modules/renko.js +2 -2
- package/modules/renko.src.js +34 -19
- package/modules/sankey.js +2 -2
- package/modules/sankey.src.js +47 -32
- package/modules/series-label.js +2 -2
- package/modules/series-label.src.js +36 -22
- package/modules/series-on-point.js +2 -2
- package/modules/series-on-point.src.js +40 -25
- package/modules/solid-gauge.d.ts +3 -3
- package/modules/solid-gauge.js +2 -2
- package/modules/solid-gauge.src.d.ts +3 -3
- package/modules/solid-gauge.src.js +53 -32
- package/modules/sonification.js +2 -2
- package/modules/sonification.src.js +38 -22
- package/modules/static-scale.js +2 -2
- package/modules/static-scale.src.js +28 -13
- package/modules/stock-tools.js +3 -3
- package/modules/stock-tools.src.js +76 -34
- package/modules/stock.d.ts +47 -0
- package/modules/stock.js +6 -6
- package/modules/stock.src.d.ts +47 -0
- package/modules/stock.src.js +549 -100
- package/modules/streamgraph.js +2 -2
- package/modules/streamgraph.src.js +31 -16
- package/modules/sunburst.js +2 -2
- package/modules/sunburst.src.js +97 -46
- package/modules/textpath.js +2 -2
- package/modules/textpath.src.js +28 -13
- package/modules/tiledwebmap.js +3 -3
- package/modules/tiledwebmap.src.js +58 -27
- package/modules/tilemap.js +2 -2
- package/modules/tilemap.src.js +39 -23
- package/modules/timeline.js +2 -2
- package/modules/timeline.src.js +43 -22
- package/modules/treegraph.js +2 -2
- package/modules/treegraph.src.js +67 -43
- package/modules/treegrid.js +2 -2
- package/modules/treegrid.src.js +49 -27
- package/modules/treemap.js +2 -2
- package/modules/treemap.src.js +82 -41
- package/modules/variable-pie.js +2 -2
- package/modules/variable-pie.src.js +34 -18
- package/modules/variwide.js +2 -2
- package/modules/variwide.src.js +31 -16
- package/modules/vector.js +2 -2
- package/modules/vector.src.js +37 -24
- package/modules/venn.js +2 -2
- package/modules/venn.src.js +42 -26
- package/modules/windbarb.js +2 -2
- package/modules/windbarb.src.js +50 -37
- package/modules/wordcloud.js +2 -2
- package/modules/wordcloud.src.js +34 -17
- package/modules/xrange.js +2 -2
- package/modules/xrange.src.js +43 -28
- package/options/abands.d.ts +722 -83
- package/options/abands.src.d.ts +722 -83
- package/options/ad.d.ts +381 -26
- package/options/ad.src.d.ts +381 -26
- package/options/ao.d.ts +744 -70
- package/options/ao.src.d.ts +744 -70
- package/options/apo.d.ts +381 -26
- package/options/apo.src.d.ts +381 -26
- package/options/arcdiagram.d.ts +80 -534
- package/options/arcdiagram.src.d.ts +80 -534
- package/options/area.d.ts +432 -129
- package/options/area.src.d.ts +432 -129
- package/options/arearange.d.ts +46 -4
- package/options/arearange.src.d.ts +46 -4
- package/options/areaspline.d.ts +141 -866
- package/options/areaspline.src.d.ts +141 -866
- package/options/areasplinerange.d.ts +221 -871
- package/options/areasplinerange.src.d.ts +221 -871
- package/options/aroon.d.ts +432 -124
- package/options/aroon.src.d.ts +432 -124
- package/options/aroonoscillator.d.ts +127 -689
- package/options/aroonoscillator.src.d.ts +127 -689
- package/options/atr.d.ts +381 -71
- package/options/atr.src.d.ts +381 -71
- package/options/bar.d.ts +103 -12
- package/options/bar.src.d.ts +103 -12
- package/options/bb.d.ts +87 -762
- package/options/bb.src.d.ts +87 -762
- package/options/bellcurve.d.ts +87 -364
- package/options/bellcurve.src.d.ts +87 -364
- package/options/boxplot.d.ts +82 -13
- package/options/boxplot.src.d.ts +82 -13
- package/options/bubble.d.ts +83 -874
- package/options/bubble.src.d.ts +83 -874
- package/options/bullet.d.ts +354 -717
- package/options/bullet.src.d.ts +354 -717
- package/options/candlestick.d.ts +99 -1214
- package/options/candlestick.src.d.ts +99 -1214
- package/options/cci.d.ts +381 -26
- package/options/cci.src.d.ts +381 -26
- package/options/chaikin.d.ts +728 -83
- package/options/chaikin.src.d.ts +728 -83
- package/options/cmf.d.ts +381 -26
- package/options/cmf.src.d.ts +381 -26
- package/options/cmo.d.ts +730 -79
- package/options/cmo.src.d.ts +730 -79
- package/options/column.d.ts +1265 -99
- package/options/column.src.d.ts +1265 -99
- package/options/columnpyramid.d.ts +102 -1158
- package/options/columnpyramid.src.d.ts +102 -1158
- package/options/columnrange.d.ts +952 -95
- package/options/columnrange.src.d.ts +952 -95
- package/options/contour.d.ts +31 -443
- package/options/contour.src.d.ts +31 -443
- package/options/cylinder.d.ts +100 -12
- package/options/cylinder.src.d.ts +100 -12
- package/options/dema.d.ts +80 -736
- package/options/dema.src.d.ts +80 -736
- package/options/dependencywheel.d.ts +599 -218
- package/options/dependencywheel.src.d.ts +599 -218
- package/options/disparityindex.d.ts +84 -365
- package/options/disparityindex.src.d.ts +84 -365
- package/options/dmi.d.ts +86 -775
- package/options/dmi.src.d.ts +86 -775
- package/options/dpo.d.ts +83 -365
- package/options/dpo.src.d.ts +83 -365
- package/options/dumbbell.d.ts +27 -4
- package/options/dumbbell.src.d.ts +27 -4
- package/options/ema.d.ts +81 -703
- package/options/ema.src.d.ts +81 -703
- package/options/errorbar.d.ts +91 -1161
- package/options/errorbar.src.d.ts +91 -1161
- package/options/flags.d.ts +98 -1192
- package/options/flags.src.d.ts +98 -1192
- package/options/flowmap.d.ts +48 -373
- package/options/flowmap.src.d.ts +48 -373
- package/options/funnel.d.ts +40 -3
- package/options/funnel.src.d.ts +40 -3
- package/options/gantt.d.ts +37 -40
- package/options/gantt.src.d.ts +37 -40
- package/options/gauge.d.ts +398 -472
- package/options/gauge.src.d.ts +398 -472
- package/options/geoheatmap.d.ts +462 -63
- package/options/geoheatmap.src.d.ts +462 -63
- package/options/heatmap.d.ts +31 -380
- package/options/heatmap.src.d.ts +31 -380
- package/options/heikinashi.d.ts +20 -2
- package/options/heikinashi.src.d.ts +20 -2
- package/options/hlc.d.ts +20 -2
- package/options/hlc.src.d.ts +20 -2
- package/options/ikh.d.ts +750 -103
- package/options/ikh.src.d.ts +750 -103
- package/options/item.d.ts +34 -74
- package/options/item.src.d.ts +34 -74
- package/options/keltnerchannels.d.ts +87 -708
- package/options/keltnerchannels.src.d.ts +87 -708
- package/options/klinger.d.ts +34 -365
- package/options/klinger.src.d.ts +34 -365
- package/options/line.d.ts +151 -851
- package/options/line.src.d.ts +151 -851
- package/options/linearregression.d.ts +960 -85
- package/options/linearregression.src.d.ts +960 -85
- package/options/linearregressionangle.d.ts +96 -699
- package/options/linearregressionangle.src.d.ts +96 -699
- package/options/linearregressionintercept.d.ts +381 -26
- package/options/linearregressionintercept.src.d.ts +381 -26
- package/options/linearregressionslope.d.ts +381 -26
- package/options/linearregressionslope.src.d.ts +381 -26
- package/options/lollipop.d.ts +214 -851
- package/options/lollipop.src.d.ts +214 -851
- package/options/macd.d.ts +386 -83
- package/options/macd.src.d.ts +386 -83
- package/options/map.d.ts +470 -36
- package/options/map.src.d.ts +470 -36
- package/options/mapbubble.d.ts +43 -532
- package/options/mapbubble.src.d.ts +43 -532
- package/options/mapline.d.ts +135 -58
- package/options/mapline.src.d.ts +135 -58
- package/options/mappoint.d.ts +205 -283
- package/options/mappoint.src.d.ts +205 -283
- package/options/mfi.d.ts +772 -82
- package/options/mfi.src.d.ts +772 -82
- package/options/momentum.d.ts +381 -71
- package/options/momentum.src.d.ts +381 -71
- package/options/natr.d.ts +776 -75
- package/options/natr.src.d.ts +776 -75
- package/options/networkgraph.d.ts +184 -207
- package/options/networkgraph.src.d.ts +184 -207
- package/options/obv.d.ts +426 -26
- package/options/obv.src.d.ts +426 -26
- package/options/ohlc.d.ts +77 -14
- package/options/ohlc.src.d.ts +77 -14
- package/options/packedbubble.d.ts +76 -696
- package/options/packedbubble.src.d.ts +76 -696
- package/options/pareto.d.ts +28 -364
- package/options/pareto.src.d.ts +28 -364
- package/options/pc.d.ts +724 -85
- package/options/pc.src.d.ts +724 -85
- package/options/pictorial.d.ts +1093 -58
- package/options/pictorial.src.d.ts +1093 -58
- package/options/pie.d.ts +595 -129
- package/options/pie.src.d.ts +595 -129
- package/options/pivotpoints.d.ts +34 -365
- package/options/pivotpoints.src.d.ts +34 -365
- package/options/pointandfigure.d.ts +10 -50
- package/options/pointandfigure.src.d.ts +10 -50
- package/options/polygon.d.ts +803 -74
- package/options/polygon.src.d.ts +803 -74
- package/options/ppo.d.ts +34 -365
- package/options/ppo.src.d.ts +34 -365
- package/options/priceenvelopes.d.ts +93 -719
- package/options/priceenvelopes.src.d.ts +93 -719
- package/options/psar.d.ts +34 -365
- package/options/psar.src.d.ts +34 -365
- package/options/pyramid.d.ts +35 -3
- package/options/pyramid.src.d.ts +35 -3
- package/options/renko.d.ts +25 -2
- package/options/renko.src.d.ts +25 -2
- package/options/roc.d.ts +78 -712
- package/options/roc.src.d.ts +78 -712
- package/options/rsi.d.ts +34 -365
- package/options/rsi.src.d.ts +34 -365
- package/options/sankey.d.ts +27 -5
- package/options/sankey.src.d.ts +27 -5
- package/options/scatter.d.ts +896 -290
- package/options/scatter.src.d.ts +896 -290
- package/options/series.d.ts +938 -83
- package/options/series.src.d.ts +938 -83
- package/options/slowstochastic.d.ts +381 -26
- package/options/slowstochastic.src.d.ts +381 -26
- package/options/sma.d.ts +729 -79
- package/options/sma.src.d.ts +729 -79
- package/options/solidgauge.d.ts +882 -105
- package/options/solidgauge.src.d.ts +882 -105
- package/options/spline.d.ts +389 -90
- package/options/spline.src.d.ts +389 -90
- package/options/stochastic.d.ts +83 -716
- package/options/stochastic.src.d.ts +83 -716
- package/options/streamgraph.d.ts +97 -364
- package/options/streamgraph.src.d.ts +97 -364
- package/options/sunburst.d.ts +87 -19
- package/options/sunburst.src.d.ts +87 -19
- package/options/supertrend.d.ts +77 -749
- package/options/supertrend.src.d.ts +77 -749
- package/options/tema.d.ts +83 -365
- package/options/tema.src.d.ts +83 -365
- package/options/tiledwebmap.d.ts +13 -72
- package/options/tiledwebmap.src.d.ts +13 -72
- package/options/tilemap.d.ts +372 -533
- package/options/tilemap.src.d.ts +372 -533
- package/options/timeline.d.ts +49 -154
- package/options/timeline.src.d.ts +49 -154
- package/options/treegraph.d.ts +174 -696
- package/options/treegraph.src.d.ts +174 -696
- package/options/treemap.d.ts +468 -1079
- package/options/treemap.src.d.ts +468 -1079
- package/options/trendline.d.ts +381 -26
- package/options/trendline.src.d.ts +381 -26
- package/options/trix.d.ts +712 -82
- package/options/trix.src.d.ts +712 -82
- package/options/variablepie.d.ts +130 -587
- package/options/variablepie.src.d.ts +130 -587
- package/options/variwide.d.ts +1123 -94
- package/options/variwide.src.d.ts +1123 -94
- package/options/vbp.d.ts +57 -383
- package/options/vbp.src.d.ts +57 -383
- package/options/vector.d.ts +22 -58
- package/options/vector.src.d.ts +22 -58
- package/options/venn.d.ts +32 -78
- package/options/venn.src.d.ts +32 -78
- package/options/vwap.d.ts +122 -703
- package/options/vwap.src.d.ts +122 -703
- package/options/waterfall.d.ts +139 -1150
- package/options/waterfall.src.d.ts +139 -1150
- package/options/williamsr.d.ts +381 -76
- package/options/williamsr.src.d.ts +381 -76
- package/options/windbarb.d.ts +39 -2
- package/options/windbarb.src.d.ts +39 -2
- package/options/wma.d.ts +78 -704
- package/options/wma.src.d.ts +78 -704
- package/options/wordcloud.d.ts +98 -595
- package/options/wordcloud.src.d.ts +98 -595
- package/options/xrange.d.ts +166 -1056
- package/options/xrange.src.d.ts +166 -1056
- package/options/zigzag.d.ts +34 -410
- package/options/zigzag.src.d.ts +34 -410
- package/package.json +3 -2
- package/standalone-navigator.js +4 -4
- package/standalone-navigator.src.js +482 -312
- package/themes/adaptive.js +2 -2
- package/themes/adaptive.src.js +33 -18
- package/themes/avocado.js +2 -2
- package/themes/avocado.src.js +28 -13
- package/themes/dark-unica.js +2 -2
- package/themes/dark-unica.src.js +28 -13
- package/themes/grid-light.js +2 -2
- package/themes/grid-light.src.js +28 -13
- package/themes/high-contrast.js +2 -2
- package/themes/high-contrast.src.js +28 -13
- package/themes/sand-signika.js +2 -2
- package/themes/sand-signika.src.js +28 -13
- package/themes/sunset.js +2 -2
- package/themes/sunset.src.js +28 -13
- package/css/.stylelintrc.json +0 -8
package/options/bb.src.d.ts
CHANGED
|
@@ -61,711 +61,79 @@ declare module "../highcharts.src" {
|
|
|
61
61
|
duration?: number;
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
|
-
* (Highstock) Options for the _Series on point_ feature.
|
|
65
|
-
*
|
|
64
|
+
* (Highstock) Options for the connector in the _Series on point_ feature.
|
|
65
|
+
*
|
|
66
|
+
* In styled mode, the connector can be styled with the
|
|
67
|
+
* `.highcharts-connector-seriesonpoint` class name.
|
|
66
68
|
*/
|
|
67
|
-
interface
|
|
69
|
+
interface PlotBbOnPointConnectorOptions {
|
|
68
70
|
/**
|
|
69
|
-
* (Highstock)
|
|
70
|
-
* feature.
|
|
71
|
-
*
|
|
72
|
-
* In styled mode, the connector can be styled with the
|
|
73
|
-
* `.highcharts-connector-seriesonpoint` class name.
|
|
71
|
+
* (Highstock) A name for the dash style to use for the connector.
|
|
74
72
|
*/
|
|
75
|
-
|
|
73
|
+
dashstyle?: string;
|
|
76
74
|
/**
|
|
77
|
-
* (Highstock)
|
|
78
|
-
*
|
|
79
|
-
* valid.
|
|
75
|
+
* (Highstock) Color of the connector line. By default it's the series'
|
|
76
|
+
* color.
|
|
80
77
|
*/
|
|
81
|
-
|
|
78
|
+
stroke?: string;
|
|
82
79
|
/**
|
|
83
|
-
* (Highstock)
|
|
84
|
-
* series in the _Series on point_ feature.
|
|
80
|
+
* (Highstock) Pixel width of the connector line.
|
|
85
81
|
*/
|
|
86
|
-
|
|
82
|
+
width?: number;
|
|
87
83
|
}
|
|
88
84
|
/**
|
|
89
|
-
* (Highstock)
|
|
90
|
-
*
|
|
91
|
-
* `stock/indicators/indicators.js` file.
|
|
92
|
-
*
|
|
93
|
-
* Configuration options for the series are given in three levels:
|
|
94
|
-
*
|
|
95
|
-
* 1. Options for all series in a chart are defined in the
|
|
96
|
-
* plotOptions.series object.
|
|
97
|
-
*
|
|
98
|
-
* 2. Options for all `bb` series are defined in plotOptions.bb.
|
|
99
|
-
*
|
|
100
|
-
* 3. Options for one single series are given in the series instance array.
|
|
101
|
-
* (see online documentation for example)
|
|
102
|
-
*
|
|
103
|
-
* **TypeScript:**
|
|
104
|
-
*
|
|
105
|
-
* - type option should always be set, otherwise a broad set of unsupported
|
|
106
|
-
* options is allowed.
|
|
107
|
-
*
|
|
108
|
-
* - when accessing an array of series, the combined set of all series types
|
|
109
|
-
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
110
|
-
* specific type can be done by checking the `type` property. (see online
|
|
111
|
-
* documentation for example)
|
|
85
|
+
* (Highstock) Options allowing to set a position and an offset of the
|
|
86
|
+
* series in the _Series on point_ feature.
|
|
112
87
|
*/
|
|
113
|
-
interface
|
|
114
|
-
/**
|
|
115
|
-
* (Highstock) Accessibility options for a series.
|
|
116
|
-
*/
|
|
117
|
-
accessibility?: Highcharts.SeriesAccessibilityOptionsObject;
|
|
118
|
-
/**
|
|
119
|
-
* (Highstock) Allow this series' points to be selected by clicking on
|
|
120
|
-
* the graphic (columns, point markers, pie slices, map areas etc).
|
|
121
|
-
*
|
|
122
|
-
* The selected points can be handled by point select and unselect
|
|
123
|
-
* events, or collectively by the getSelectedPoints function.
|
|
124
|
-
*
|
|
125
|
-
* And alternative way of selecting points is through dragging.
|
|
126
|
-
*/
|
|
127
|
-
allowPointSelect?: boolean;
|
|
128
|
-
/**
|
|
129
|
-
* (Highstock) Enable or disable the initial animation when a series is
|
|
130
|
-
* displayed. The animation can also be set as a configuration object.
|
|
131
|
-
* Please note that this option only applies to the initial animation of
|
|
132
|
-
* the series itself. For other animations, see chart.animation and the
|
|
133
|
-
* animation parameter under the API methods. The following properties
|
|
134
|
-
* are supported:
|
|
135
|
-
*
|
|
136
|
-
* - `defer`: The animation delay time in milliseconds.
|
|
137
|
-
*
|
|
138
|
-
* - `duration`: The duration of the animation in milliseconds.
|
|
139
|
-
* (Defaults to `1000`)
|
|
140
|
-
*
|
|
141
|
-
* - `easing`: Can be a string reference to an easing function set on
|
|
142
|
-
* the `Math` object or a function. See the _Custom easing function_
|
|
143
|
-
* demo below. (Defaults to `easeInOutSine`)
|
|
144
|
-
*
|
|
145
|
-
* Due to poor performance, animation is disabled in old IE browsers for
|
|
146
|
-
* several chart types.
|
|
147
|
-
*/
|
|
148
|
-
animation?: (boolean|Highcharts.AnimationOptionsObject);
|
|
149
|
-
/**
|
|
150
|
-
* (Highstock) For some series, there is a limit that shuts down
|
|
151
|
-
* animation by default when the total number of points in the chart is
|
|
152
|
-
* too high. For example, for a column chart and its derivatives,
|
|
153
|
-
* animation does not run if there is more than 250 points totally. To
|
|
154
|
-
* disable this cap, set `animationLimit` to `Infinity`. This option
|
|
155
|
-
* works if animation is fired on individual points, not on a group of
|
|
156
|
-
* points like e.g. during the initial animation.
|
|
157
|
-
*/
|
|
158
|
-
animationLimit?: number;
|
|
159
|
-
/**
|
|
160
|
-
* (Highstock) Sets the color blending in the boost module.
|
|
161
|
-
*/
|
|
162
|
-
boostBlending?: Highcharts.OptionsBoostBlendingValue;
|
|
163
|
-
/**
|
|
164
|
-
* (Highstock) Set the point threshold for when a series should enter
|
|
165
|
-
* boost mode.
|
|
166
|
-
*
|
|
167
|
-
* Setting it to e.g. 2000 will cause the series to enter boost mode
|
|
168
|
-
* when there are 2000 or more points in the series.
|
|
169
|
-
*
|
|
170
|
-
* To disable boosting on the series, set the `boostThreshold` to 0.
|
|
171
|
-
* Setting it to 1 will force boosting.
|
|
172
|
-
*
|
|
173
|
-
* Note that the cropThreshold also affects this setting. When zooming
|
|
174
|
-
* in on a series that has fewer points than the `cropThreshold`, all
|
|
175
|
-
* points are rendered although outside the visible plot area, and the
|
|
176
|
-
* `boostThreshold` won't take effect.
|
|
177
|
-
*/
|
|
178
|
-
boostThreshold?: number;
|
|
179
|
-
/**
|
|
180
|
-
* (Highstock) Bottom line options.
|
|
181
|
-
*/
|
|
182
|
-
bottomLine?: Highcharts.PlotBbBottomLineOptions;
|
|
183
|
-
/**
|
|
184
|
-
* (Highstock) An additional class name to apply to the series'
|
|
185
|
-
* graphical elements. This option does not replace default class names
|
|
186
|
-
* of the graphical element. Changes to the series' color will also be
|
|
187
|
-
* reflected in a chart's legend and tooltip.
|
|
188
|
-
*/
|
|
189
|
-
className?: string;
|
|
190
|
-
/**
|
|
191
|
-
* (Highstock) Disable this option to allow series rendering in the
|
|
192
|
-
* whole plotting area.
|
|
193
|
-
*
|
|
194
|
-
* **Note:** Clipping should be always enabled when chart.zoomType is
|
|
195
|
-
* set
|
|
196
|
-
*/
|
|
197
|
-
clip?: boolean;
|
|
88
|
+
interface PlotBbOnPointPositionOptions {
|
|
198
89
|
/**
|
|
199
|
-
* (Highstock)
|
|
200
|
-
*
|
|
201
|
-
*
|
|
202
|
-
* per point. The default value is pulled from the `options.colors`
|
|
203
|
-
* array.
|
|
204
|
-
*
|
|
205
|
-
* In styled mode, the color can be defined by the colorIndex option.
|
|
206
|
-
* Also, the series color can be set with the `.highcharts-series`,
|
|
207
|
-
* `.highcharts-color-{n}`, `.highcharts-{type}-series` or
|
|
208
|
-
* `.highcharts-series-{n}` class, or individual classes given by the
|
|
209
|
-
* `className` option.
|
|
210
|
-
*/
|
|
211
|
-
color?: Highcharts.ColorType;
|
|
212
|
-
/**
|
|
213
|
-
* (Highstock) Styled mode only. A specific color index to use for the
|
|
214
|
-
* series, so its graphic representations are given the class name
|
|
215
|
-
* `highcharts-color-{n}`.
|
|
216
|
-
*
|
|
217
|
-
* Since v11, CSS variables on the form `--highcharts-color-{n}` make
|
|
218
|
-
* changing the color scheme very convenient.
|
|
219
|
-
*/
|
|
220
|
-
colorIndex?: number;
|
|
221
|
-
/**
|
|
222
|
-
* (Highcharts, Highstock, Highmaps) Determines what data value should
|
|
223
|
-
* be used to calculate point color if `colorAxis` is used. Requires to
|
|
224
|
-
* set `min` and `max` if some custom point property is used or if
|
|
225
|
-
* approximation for data grouping is set to `'sum'`.
|
|
226
|
-
*/
|
|
227
|
-
colorKey?: string;
|
|
228
|
-
/**
|
|
229
|
-
* (Highstock) Compare the values of the series against the first
|
|
230
|
-
* non-null, non- zero value in the visible range. The y axis will show
|
|
231
|
-
* percentage or absolute change depending on whether `compare` is set
|
|
232
|
-
* to `"percent"` or `"value"`. When this is applied to multiple series,
|
|
233
|
-
* it allows comparing the development of the series against each other.
|
|
234
|
-
* Adds a `change` field to every point object. If a `compare` value is
|
|
235
|
-
* not set on a linked series, it will be inherited from the parent
|
|
236
|
-
* series.
|
|
237
|
-
*/
|
|
238
|
-
compare?: Highcharts.OptionsCompareValue;
|
|
239
|
-
/**
|
|
240
|
-
* (Highstock) When compare is `percent`, this option dictates whether
|
|
241
|
-
* to use 0 or 100 as the base of comparison.
|
|
242
|
-
*/
|
|
243
|
-
compareBase?: (0|100);
|
|
244
|
-
/**
|
|
245
|
-
* (Highstock) Defines if comparison should start from the first point
|
|
246
|
-
* within the visible range or should start from the last point
|
|
247
|
-
* **before** the range.
|
|
248
|
-
*
|
|
249
|
-
* In other words, this flag determines if first point within the
|
|
250
|
-
* visible range will have 0% (`compareStart=true`) or should have been
|
|
251
|
-
* already calculated according to the previous point
|
|
252
|
-
* (`compareStart=false`).
|
|
253
|
-
*/
|
|
254
|
-
compareStart?: boolean;
|
|
255
|
-
/**
|
|
256
|
-
* (Highstock) Whether to compare indicator to the main series values or
|
|
257
|
-
* indicator values.
|
|
258
|
-
*/
|
|
259
|
-
compareToMain?: boolean;
|
|
260
|
-
/**
|
|
261
|
-
* (Highcharts, Highstock) Whether to connect a graph line across null
|
|
262
|
-
* points, or render a gap between the two points on either side of the
|
|
263
|
-
* null.
|
|
264
|
-
*
|
|
265
|
-
* In stacked area chart, if `connectNulls` is set to true, null points
|
|
266
|
-
* are interpreted as 0.
|
|
267
|
-
*/
|
|
268
|
-
connectNulls?: boolean;
|
|
269
|
-
/**
|
|
270
|
-
* (Highcharts, Highstock, Gantt) When true, each point or column edge
|
|
271
|
-
* is rounded to its nearest pixel in order to render sharp on screen.
|
|
272
|
-
* In some cases, when there are a lot of densely packed columns, this
|
|
273
|
-
* leads to visible difference in column widths or distance between
|
|
274
|
-
* columns. In these cases, setting `crisp` to `false` may look better,
|
|
275
|
-
* even though each column is rendered blurry.
|
|
276
|
-
*/
|
|
277
|
-
crisp?: boolean;
|
|
278
|
-
/**
|
|
279
|
-
* (Highcharts, Highstock) When the series contains less points than the
|
|
280
|
-
* crop threshold, all points are drawn, even if the points fall outside
|
|
281
|
-
* the visible plot area at the current zoom. The advantage of drawing
|
|
282
|
-
* all points (including markers and columns), is that animation is
|
|
283
|
-
* performed on updates. On the other hand, when the series contains
|
|
284
|
-
* more points than the crop threshold, the series data is cropped to
|
|
285
|
-
* only contain points that fall within the plot area. The advantage of
|
|
286
|
-
* cropping away invisible points is to increase performance on large
|
|
287
|
-
* series.
|
|
288
|
-
*/
|
|
289
|
-
cropThreshold?: number;
|
|
290
|
-
/**
|
|
291
|
-
* (Highstock) Cumulative Sum feature replaces points' values with the
|
|
292
|
-
* following formula: `sum of all previous points' values + current
|
|
293
|
-
* point's value`. Works only for points in a visible range. Adds the
|
|
294
|
-
* `cumulativeSum` field to each point object that can be accessed e.g.
|
|
295
|
-
* in the tooltip.pointFormat.
|
|
296
|
-
*
|
|
297
|
-
* With `dataGrouping` enabled, default grouping approximation is set to
|
|
298
|
-
* `sum`.
|
|
299
|
-
*/
|
|
300
|
-
cumulative?: boolean;
|
|
301
|
-
/**
|
|
302
|
-
* (Highstock) Defines if cumulation should start from the first point
|
|
303
|
-
* within the visible range or should start from the last point
|
|
304
|
-
* **before** the range.
|
|
305
|
-
*
|
|
306
|
-
* In other words, this flag determines if first point within the
|
|
307
|
-
* visible range will start at 0 (`cumulativeStart=true`) or should have
|
|
308
|
-
* been already calculated according to the previous point
|
|
309
|
-
* (`cumulativeStart=false`).
|
|
310
|
-
*/
|
|
311
|
-
cumulativeStart?: boolean;
|
|
312
|
-
/**
|
|
313
|
-
* (Highstock) You can set the cursor to "pointer" if you have click
|
|
314
|
-
* events attached to the series, to signal to the user that the points
|
|
315
|
-
* and lines can be clicked.
|
|
316
|
-
*
|
|
317
|
-
* In styled mode, the series cursor can be set with the same classes as
|
|
318
|
-
* listed under series.color.
|
|
319
|
-
*/
|
|
320
|
-
cursor?: (string|Highcharts.CursorValue);
|
|
321
|
-
/**
|
|
322
|
-
* (Highstock) A reserved subspace to store options and values for
|
|
323
|
-
* customized functionality. Here you can add additional data for your
|
|
324
|
-
* own event callbacks and formatter callbacks.
|
|
325
|
-
*/
|
|
326
|
-
custom?: Highcharts.Dictionary<any>;
|
|
327
|
-
/**
|
|
328
|
-
* (Highstock) Name of the dash style to use for the graph, or for some
|
|
329
|
-
* series types the outline of each shape.
|
|
330
|
-
*
|
|
331
|
-
* In styled mode, the stroke dash-array can be set with the same
|
|
332
|
-
* classes as listed under series.color.
|
|
333
|
-
*/
|
|
334
|
-
dashStyle?: Highcharts.DashStyleValue;
|
|
335
|
-
/**
|
|
336
|
-
* (Highstock) Data grouping is the concept of sampling the data values
|
|
337
|
-
* into larger blocks in order to ease readability and increase
|
|
338
|
-
* performance of the JavaScript charts. Highcharts Stock by default
|
|
339
|
-
* applies data grouping when the points become closer than a certain
|
|
340
|
-
* pixel value, determined by the `groupPixelWidth` option.
|
|
341
|
-
*
|
|
342
|
-
* If data grouping is applied, the grouping information of grouped
|
|
343
|
-
* points can be read from the Point.dataGroup. If point options other
|
|
344
|
-
* than the data itself are set, for example `name` or `color` or custom
|
|
345
|
-
* properties, the grouping logic doesn't know how to group it. In this
|
|
346
|
-
* case the options of the first point instance are copied over to the
|
|
347
|
-
* group point. This can be altered through a custom `approximation`
|
|
348
|
-
* callback function.
|
|
349
|
-
*/
|
|
350
|
-
dataGrouping?: Highcharts.DataGroupingOptionsObject;
|
|
351
|
-
/**
|
|
352
|
-
* (Highcharts, Highstock, Highmaps, Gantt) Options for the series data
|
|
353
|
-
* labels, appearing next to each data point.
|
|
354
|
-
*
|
|
355
|
-
* Since v6.2.0, multiple data labels can be applied to each single
|
|
356
|
-
* point by defining them as an array of configs.
|
|
357
|
-
*
|
|
358
|
-
* In styled mode, the data labels can be styled with the
|
|
359
|
-
* `.highcharts-data-label-box` and `.highcharts-data-label` class names
|
|
360
|
-
* (see example).
|
|
361
|
-
*/
|
|
362
|
-
dataLabels?: (Highcharts.PlotBbDataLabelsOptions|Array<Highcharts.PlotBbDataLabelsOptions>);
|
|
363
|
-
/**
|
|
364
|
-
* (Highstock) The mapping between the data table and the series data
|
|
365
|
-
* points. This is used in conjunction with the `dataTable` option (on
|
|
366
|
-
* chart or series level) to map columns from the data table to the
|
|
367
|
-
* properties of the data points. The keys of the `dataMapping` object
|
|
368
|
-
* correspond to the properties of the data points (e.g. `x`, `y`,
|
|
369
|
-
* `name`), and the values are objects that specify which column from
|
|
370
|
-
* which data table to use for that property.
|
|
371
|
-
*
|
|
372
|
-
* The keys can also be nested paths, for example `dataLabel.format`, to
|
|
373
|
-
* map to nested properties of the data points.
|
|
374
|
-
*
|
|
375
|
-
* The values can also be strings, in which case they are interpreted as
|
|
376
|
-
* column id's from the first data table.
|
|
377
|
-
*
|
|
378
|
-
* A typical use case is that multiple series share a common column,
|
|
379
|
-
* like `name` or `x`. In this case, to avoid repetition, the common
|
|
380
|
-
* column can be applied in `plotOptions.series.dataMapping` and the
|
|
381
|
-
* individual series can specify only the columns that are unique to
|
|
382
|
-
* them.
|
|
383
|
-
*
|
|
384
|
-
* The series name defaults to the column ID of the main data column in
|
|
385
|
-
* the mapping. The main data column is typically the `y` data for
|
|
386
|
-
* cartesian series, or `value` for map series. For example, if the
|
|
387
|
-
* mapping is `{ y: 'Cost' }`, the series name will be `Cost`. (see
|
|
388
|
-
* online documentation for example)
|
|
389
|
-
*
|
|
390
|
-
* If the columns of the DataTable have keys matching the series keys,
|
|
391
|
-
* the data mapping is not necessary. For example, this DataTable will
|
|
392
|
-
* connect directly to the series' `x` and `y` keys: (see online
|
|
393
|
-
* documentation for example)
|
|
394
|
-
*/
|
|
395
|
-
dataMapping?: Highcharts.DataMappingOptionsObject;
|
|
396
|
-
/**
|
|
397
|
-
* (Highcharts, Highstock) Options for series data sorting.
|
|
398
|
-
*/
|
|
399
|
-
dataSorting?: Highcharts.PlotBbDataSortingOptions;
|
|
400
|
-
/**
|
|
401
|
-
* (Highstock) Deprecated. Use
|
|
402
|
-
* plotOptions.series.accessibility.description instead.
|
|
403
|
-
*
|
|
404
|
-
* A description of the series to add to the screen reader information
|
|
405
|
-
* about the series.
|
|
406
|
-
*
|
|
407
|
-
* @deprecated 8.0.0
|
|
408
|
-
*/
|
|
409
|
-
description?: string;
|
|
410
|
-
/**
|
|
411
|
-
* (Highstock) Enable or disable the mouse tracking for a specific
|
|
412
|
-
* series. This includes point tooltips and click events on graphs and
|
|
413
|
-
* points. For large datasets it improves performance.
|
|
414
|
-
*/
|
|
415
|
-
enableMouseTracking?: boolean;
|
|
416
|
-
/**
|
|
417
|
-
* (Highstock) General event handlers for the series items. These event
|
|
418
|
-
* hooks can also be attached to the series at run time using the
|
|
419
|
-
* `Highcharts.addEvent` function.
|
|
420
|
-
*/
|
|
421
|
-
events?: Highcharts.SeriesEventsOptionsObject;
|
|
422
|
-
/**
|
|
423
|
-
* (Highstock) Option for fill color between lines in Bollinger Bands
|
|
424
|
-
* Indicator.
|
|
425
|
-
*/
|
|
426
|
-
fillColor?: Highcharts.ColorType;
|
|
427
|
-
/**
|
|
428
|
-
* (Highstock) Determines whether the series should look for the nearest
|
|
429
|
-
* point in both dimensions or just the x-dimension when hovering the
|
|
430
|
-
* series. Defaults to `'xy'` for scatter series and `'x'` for most
|
|
431
|
-
* other series. If the data has duplicate x-values, it is recommended
|
|
432
|
-
* to set this to `'xy'` to allow hovering over all points.
|
|
433
|
-
*
|
|
434
|
-
* Applies only to series types using nearest neighbor search (not
|
|
435
|
-
* direct hover) for tooltip.
|
|
436
|
-
*/
|
|
437
|
-
findNearestPointBy?: Highcharts.OptionsFindNearestPointByValue;
|
|
438
|
-
/**
|
|
439
|
-
* (Highcharts, Highstock) Defines when to display a gap in the graph,
|
|
440
|
-
* together with the gapUnit option.
|
|
441
|
-
*
|
|
442
|
-
* In case when `dataGrouping` is enabled, points can be grouped into a
|
|
443
|
-
* larger time span. This can make the grouped points to have a greater
|
|
444
|
-
* distance than the absolute value of `gapSize` property, which will
|
|
445
|
-
* result in disappearing graph completely. To prevent this situation
|
|
446
|
-
* the mentioned distance between grouped points is used instead of
|
|
447
|
-
* previously defined `gapSize`.
|
|
448
|
-
*
|
|
449
|
-
* In practice, this option is most often used to visualize gaps in time
|
|
450
|
-
* series. In a stock chart, intraday data is available for daytime
|
|
451
|
-
* hours, while gaps will appear in nights and weekends.
|
|
452
|
-
*/
|
|
453
|
-
gapSize?: number;
|
|
454
|
-
/**
|
|
455
|
-
* (Highcharts, Highstock) Together with gapSize, this option defines
|
|
456
|
-
* where to draw gaps in the graph.
|
|
457
|
-
*
|
|
458
|
-
* When the `gapUnit` is `"relative"` (default), a gap size of 5 means
|
|
459
|
-
* that if the distance between two points is greater than 5 times that
|
|
460
|
-
* of the two closest points, the graph will be broken.
|
|
461
|
-
*
|
|
462
|
-
* When the `gapUnit` is `"value"`, the gap is based on absolute axis
|
|
463
|
-
* values, which on a datetime axis is milliseconds. This also applies
|
|
464
|
-
* to the navigator series that inherits gap options from the base
|
|
465
|
-
* series.
|
|
466
|
-
*/
|
|
467
|
-
gapUnit?: Highcharts.OptionsGapUnitValue;
|
|
468
|
-
/**
|
|
469
|
-
* (Highcharts, Highstock, Gantt) Whether to use the Y extremes of the
|
|
470
|
-
* total chart width or only the zoomed area when zooming in on parts of
|
|
471
|
-
* the X axis. By default, the Y axis adjusts to the min and max of the
|
|
472
|
-
* visible data. Cartesian series only.
|
|
473
|
-
*/
|
|
474
|
-
getExtremesFromAll?: boolean;
|
|
475
|
-
/**
|
|
476
|
-
* (Highstock) Highlight only the hovered point and fade the remaining
|
|
477
|
-
* points.
|
|
478
|
-
*
|
|
479
|
-
* Scatter-type series require enabling the 'inactive' marker state and
|
|
480
|
-
* adjusting opacity. Note that this approach could affect performance
|
|
481
|
-
* with large datasets.
|
|
90
|
+
* (Highstock) Series center offset from the original x position. If
|
|
91
|
+
* defined, the connector line is drawn connecting original position
|
|
92
|
+
* with new position.
|
|
482
93
|
*/
|
|
483
|
-
|
|
94
|
+
offsetX?: number;
|
|
484
95
|
/**
|
|
485
|
-
* (Highstock)
|
|
486
|
-
*
|
|
487
|
-
*
|
|
488
|
-
* Since version 6.0.0 until 7.1.0 the option was existing undocumented
|
|
489
|
-
* as `includeInCSVExport`.
|
|
490
|
-
*/
|
|
491
|
-
includeInDataExport?: boolean;
|
|
492
|
-
/**
|
|
493
|
-
* (Highcharts, Highstock, Gantt) Series labels are placed as close to
|
|
494
|
-
* the series as possible in a natural way, seeking to avoid other
|
|
495
|
-
* series. The goal of this feature is to make the chart more easily
|
|
496
|
-
* readable, like if a human designer placed the labels in the optimal
|
|
96
|
+
* (Highstock) Series center offset from the original y position. If
|
|
97
|
+
* defined, the connector line is drawn from original position to a new
|
|
497
98
|
* position.
|
|
498
|
-
*
|
|
499
|
-
* The series labels currently work with series types having a `graph`
|
|
500
|
-
* or an `area`.
|
|
501
|
-
*/
|
|
502
|
-
label?: Highcharts.SeriesLabelOptionsObject;
|
|
503
|
-
/**
|
|
504
|
-
* (Highstock) The line marks the last price from all points.
|
|
505
|
-
*/
|
|
506
|
-
lastPrice?: Highcharts.SeriesLastPriceOptionsObject;
|
|
507
|
-
/**
|
|
508
|
-
* (Highstock) The line marks the last price from visible range of
|
|
509
|
-
* points.
|
|
510
|
-
*/
|
|
511
|
-
lastVisiblePrice?: Highcharts.SeriesLastVisiblePriceOptionsObject;
|
|
512
|
-
/**
|
|
513
|
-
* (Highstock) What type of legend symbol to render for this series. Can
|
|
514
|
-
* be one of `areaMarker`, `lineMarker` or `rectangle`.
|
|
515
|
-
*/
|
|
516
|
-
legendSymbol?: Highcharts.OptionsLegendSymbolValue;
|
|
517
|
-
/**
|
|
518
|
-
* (Highcharts, Highstock, Highmaps) Defines the color of the legend
|
|
519
|
-
* symbol for this series. Defaults to undefined, in which case the
|
|
520
|
-
* series color is used. Does not work with styled mode.
|
|
521
|
-
*/
|
|
522
|
-
legendSymbolColor?: Highcharts.ColorType;
|
|
523
|
-
/**
|
|
524
|
-
* (Highstock) The line cap used for line ends and line joins on the
|
|
525
|
-
* graph.
|
|
526
|
-
*/
|
|
527
|
-
linecap?: Highcharts.SeriesLinecapValue;
|
|
528
|
-
/**
|
|
529
|
-
* (Highcharts, Highstock) Pixel width of the graph line.
|
|
530
|
-
*/
|
|
531
|
-
lineWidth?: number;
|
|
532
|
-
/**
|
|
533
|
-
* (Highcharts, Highstock, Gantt) The main series ID that indicator will
|
|
534
|
-
* be based on. Required for this indicator.
|
|
535
|
-
*/
|
|
536
|
-
linkedTo?: string;
|
|
537
|
-
/**
|
|
538
|
-
* (Highstock) Options for the point markers of line and scatter-like
|
|
539
|
-
* series. Properties like `fillColor`, `lineColor` and `lineWidth`
|
|
540
|
-
* define the visual appearance of the markers. The `symbol` option
|
|
541
|
-
* defines the shape. Other series types, like column series, don't have
|
|
542
|
-
* markers, but have visual options on the series level instead.
|
|
543
|
-
*
|
|
544
|
-
* In styled mode, the markers can be styled with the
|
|
545
|
-
* `.highcharts-point`, `.highcharts-point-hover` and
|
|
546
|
-
* `.highcharts-point-select` class names.
|
|
547
|
-
*/
|
|
548
|
-
marker?: Highcharts.PointMarkerOptionsObject;
|
|
549
|
-
/**
|
|
550
|
-
* (Highstock) The name of the series as shown in the legend, tooltip
|
|
551
|
-
* etc. If not set, it will be based on a technical indicator type and
|
|
552
|
-
* default params.
|
|
553
|
-
*/
|
|
554
|
-
name?: string;
|
|
555
|
-
/**
|
|
556
|
-
* (Highstock) The color for the parts of the graph or points that are
|
|
557
|
-
* below the threshold. Note that `zones` takes precedence over the
|
|
558
|
-
* negative color. Using `negativeColor` is equivalent to applying a
|
|
559
|
-
* zone with value of 0.
|
|
560
|
-
*/
|
|
561
|
-
negativeColor?: Highcharts.ColorType;
|
|
562
|
-
/**
|
|
563
|
-
* (Highcharts, Highstock) Whether or not data-points with the value of
|
|
564
|
-
* `null` should be interactive. When this is set to `true`, tooltips
|
|
565
|
-
* may highlight these points, and this option also enables keyboard
|
|
566
|
-
* navigation for such points. Format options for such points include
|
|
567
|
-
* `nullFormat` and `nullFormatter`. Works for these series: `line`,
|
|
568
|
-
* `spline`, `area`, `area-spline`, `column`, `bar`, and `timeline`.
|
|
569
|
-
*/
|
|
570
|
-
nullInteraction?: (boolean|undefined);
|
|
571
|
-
/**
|
|
572
|
-
* (Highstock) Options for the _Series on point_ feature. Only `pie` and
|
|
573
|
-
* `sunburst` series are supported at this moment.
|
|
574
|
-
*/
|
|
575
|
-
onPoint?: (object|Highcharts.PlotBbOnPointOptions);
|
|
576
|
-
/**
|
|
577
|
-
* (Highstock) Opacity of a series parts: line, fill (e.g. area) and
|
|
578
|
-
* dataLabels.
|
|
579
|
-
*/
|
|
580
|
-
opacity?: number;
|
|
581
|
-
/**
|
|
582
|
-
* (Highstock) Parameters used in calculation of the regression points.
|
|
583
|
-
*/
|
|
584
|
-
params?: Highcharts.PlotBbParamsOptions;
|
|
585
|
-
/**
|
|
586
|
-
* (Highstock) Properties for each single point.
|
|
587
|
-
*/
|
|
588
|
-
point?: Highcharts.PlotSeriesPointOptions;
|
|
589
|
-
/**
|
|
590
|
-
* (Highstock) Deprecated. Use
|
|
591
|
-
* series.accessibility.point.descriptionFormat instead.
|
|
592
|
-
*
|
|
593
|
-
* Same as accessibility.point.descriptionFormat, but for an individual
|
|
594
|
-
* series. Overrides the chart wide configuration.
|
|
595
|
-
*
|
|
596
|
-
* @deprecated 12.6.0
|
|
597
|
-
*/
|
|
598
|
-
pointDescriptionFormat?: Function;
|
|
599
|
-
/**
|
|
600
|
-
* (Highstock) Deprecated. Use
|
|
601
|
-
* series.accessibility.point.descriptionFormatter instead.
|
|
602
|
-
*
|
|
603
|
-
* Same as accessibility.series.descriptionFormatter, but for an
|
|
604
|
-
* individual series. Overrides the chart wide configuration.
|
|
605
|
-
*
|
|
606
|
-
* @deprecated 8.0.0
|
|
607
|
-
*/
|
|
608
|
-
pointDescriptionFormatter?: Function;
|
|
609
|
-
/**
|
|
610
|
-
* (Highcharts, Highstock) When true, X values in the data set are
|
|
611
|
-
* relative to the current `pointStart`, `pointInterval` and
|
|
612
|
-
* `pointIntervalUnit` settings. This allows compression of the data for
|
|
613
|
-
* datasets with irregular X values.
|
|
614
|
-
*
|
|
615
|
-
* The real X values are computed on the formula `f(x) = ax + b`, where
|
|
616
|
-
* `a` is the `pointInterval` (optionally with a time unit given by
|
|
617
|
-
* `pointIntervalUnit`), and `b` is the `pointStart`.
|
|
618
|
-
*/
|
|
619
|
-
relativeXValue?: boolean;
|
|
620
|
-
/**
|
|
621
|
-
* (Highstock) Whether to select the series initially. If `showCheckbox`
|
|
622
|
-
* is true, the checkbox next to the series name in the legend will be
|
|
623
|
-
* checked for a selected series.
|
|
624
|
-
*/
|
|
625
|
-
selected?: boolean;
|
|
626
|
-
/**
|
|
627
|
-
* (Highstock) Whether to apply a drop shadow to the graph line. Since
|
|
628
|
-
* 2.3 the shadow can be an object configuration containing `color`,
|
|
629
|
-
* `offsetX`, `offsetY`, `opacity` and `width`.
|
|
630
|
-
*
|
|
631
|
-
* Note that in some cases, like stacked columns or other dense layouts,
|
|
632
|
-
* the series may cast shadows on each other. In that case, the
|
|
633
|
-
* `chart.seriesGroupShadow` allows applying a common drop shadow to the
|
|
634
|
-
* whole series group.
|
|
635
|
-
*/
|
|
636
|
-
shadow?: (boolean|Highcharts.ShadowOptionsObject);
|
|
637
|
-
/**
|
|
638
|
-
* (Highstock) If true, a checkbox is displayed next to the legend item
|
|
639
|
-
* to allow selecting the series. The state of the checkbox is
|
|
640
|
-
* determined by the `selected` option.
|
|
641
|
-
*/
|
|
642
|
-
showCheckbox?: boolean;
|
|
643
|
-
/**
|
|
644
|
-
* (Highstock) Whether to display this particular series or series type
|
|
645
|
-
* in the legend. Standalone series are shown in legend by default, and
|
|
646
|
-
* linked series are not. Since v7.2.0 it is possible to show series
|
|
647
|
-
* that use colorAxis by setting this option to `true`.
|
|
648
|
-
*/
|
|
649
|
-
showInLegend?: boolean;
|
|
650
|
-
/**
|
|
651
|
-
* (Highstock) Deprecated. Use series.accessibility.keyboardNavigation
|
|
652
|
-
* instead.
|
|
653
|
-
*
|
|
654
|
-
* If set to `true`, the accessibility module will skip past the points
|
|
655
|
-
* in this series for keyboard navigation.
|
|
656
|
-
*
|
|
657
|
-
* @deprecated 8.0.0
|
|
658
|
-
*/
|
|
659
|
-
skipKeyboardNavigation?: boolean;
|
|
660
|
-
/**
|
|
661
|
-
* (Highcharts, Highstock) When this is true, the series will not cause
|
|
662
|
-
* the Y axis to cross the zero plane (or threshold option) unless the
|
|
663
|
-
* data actually crosses the plane.
|
|
664
|
-
*
|
|
665
|
-
* For example, if `softThreshold` is `false`, a series of 0, 1, 2, 3
|
|
666
|
-
* will make the Y axis show negative values according to the
|
|
667
|
-
* `minPadding` option. If `softThreshold` is `true`, the Y axis starts
|
|
668
|
-
* at 0.
|
|
669
|
-
*/
|
|
670
|
-
softThreshold?: boolean;
|
|
671
|
-
/**
|
|
672
|
-
* (Highstock) Sonification/audio chart options for a series.
|
|
673
|
-
*/
|
|
674
|
-
sonification?: Highcharts.SeriesSonificationOptions;
|
|
675
|
-
/**
|
|
676
|
-
* (Highstock) A collection of options for different series states.
|
|
677
|
-
*/
|
|
678
|
-
states?: Highcharts.SeriesStatesOptionsObject;
|
|
679
|
-
/**
|
|
680
|
-
* (Highcharts, Highstock) Whether to apply steps to the line. Possible
|
|
681
|
-
* values are `left`, `center` and `right`.
|
|
682
|
-
*/
|
|
683
|
-
step?: Highcharts.OptionsStepValue;
|
|
684
|
-
/**
|
|
685
|
-
* (Highstock) Sticky tracking of mouse events. When true, the
|
|
686
|
-
* `mouseOut` event on a series isn't triggered until the mouse moves
|
|
687
|
-
* over another series, or out of the plot area. When false, the
|
|
688
|
-
* `mouseOut` event on a series is triggered when the mouse leaves the
|
|
689
|
-
* area around the series' graph or markers. This also implies the
|
|
690
|
-
* tooltip when not shared. When `stickyTracking` is false and
|
|
691
|
-
* `tooltip.shared` is false, the tooltip will be hidden when moving the
|
|
692
|
-
* mouse between series. Defaults to true for line and area type series,
|
|
693
|
-
* but to false for columns, pies etc.
|
|
694
|
-
*
|
|
695
|
-
* **Note:** The boost module will force this option because of
|
|
696
|
-
* technical limitations.
|
|
697
99
|
*/
|
|
698
|
-
|
|
100
|
+
offsetY?: number;
|
|
699
101
|
/**
|
|
700
|
-
* (
|
|
701
|
-
*
|
|
702
|
-
* negativeColor.
|
|
102
|
+
* (Highstock) X position of the series center. By default, the series
|
|
103
|
+
* is displayed on the point that it is connected to.
|
|
703
104
|
*/
|
|
704
|
-
|
|
105
|
+
x?: number;
|
|
705
106
|
/**
|
|
706
|
-
* (Highstock)
|
|
707
|
-
*
|
|
708
|
-
* following properties can be defined on a series level.
|
|
107
|
+
* (Highstock) Y position of the series center. By default, the series
|
|
108
|
+
* is displayed on the point that it is connected to.
|
|
709
109
|
*/
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
* (Highcharts, Highstock, Gantt) When a series contains a `data` array
|
|
717
|
-
* that is longer than this, the Series class looks for data
|
|
718
|
-
* configurations of plain numbers or arrays of numbers. The first and
|
|
719
|
-
* last valid points are checked. If found, the rest of the data is
|
|
720
|
-
* assumed to be the same. This saves expensive data checking and
|
|
721
|
-
* indexing in long series, and makes data-heavy charts render faster.
|
|
722
|
-
*
|
|
723
|
-
* Set it to `0` disable.
|
|
724
|
-
*
|
|
725
|
-
* Note:
|
|
726
|
-
*
|
|
727
|
-
* - In boost mode turbo threshold is forced. Only array of numbers or
|
|
728
|
-
* two dimensional arrays are allowed.
|
|
729
|
-
*
|
|
730
|
-
* - In version 11.4.3 and earlier, if object configurations were passed
|
|
731
|
-
* beyond the turbo threshold, a warning was logged in the console and
|
|
732
|
-
* the data series didn't render.
|
|
733
|
-
*/
|
|
734
|
-
turboThreshold?: number;
|
|
110
|
+
y?: number;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* (Highstock) Parameters used in calculation of the regression points.
|
|
114
|
+
*/
|
|
115
|
+
interface PlotBbParamsOptions {
|
|
735
116
|
/**
|
|
736
|
-
* (Highstock)
|
|
117
|
+
* (Highstock) The point index which indicator calculations will base.
|
|
118
|
+
* For example using OHLC data, index=2 means the indicator will be
|
|
119
|
+
* calculated using Low values.
|
|
737
120
|
*/
|
|
738
|
-
|
|
121
|
+
index?: number;
|
|
739
122
|
/**
|
|
740
|
-
* (
|
|
741
|
-
*
|
|
123
|
+
* (Highstock) The base period for indicator calculations. This is the
|
|
124
|
+
* number of data points which are taken into account for the indicator
|
|
125
|
+
* calculations.
|
|
742
126
|
*/
|
|
743
|
-
|
|
127
|
+
period?: number;
|
|
744
128
|
/**
|
|
745
|
-
* (
|
|
746
|
-
* Zones can be applied to the X axis, Y axis or Z axis for bubbles,
|
|
747
|
-
* according to the `zoneAxis` option. The zone definitions have to be
|
|
748
|
-
* in ascending order regarding to the value.
|
|
749
|
-
*
|
|
750
|
-
* In styled mode, the color zones are styled with the
|
|
751
|
-
* `.highcharts-zone-{n}` class, or custom classed from the `className`
|
|
752
|
-
* option (view live demo).
|
|
129
|
+
* (Highstock) Standard deviation for top and bottom bands.
|
|
753
130
|
*/
|
|
754
|
-
|
|
755
|
-
/**
|
|
756
|
-
* (Highstock) Whether to zoom non-cartesian series. If `chart.zooming`
|
|
757
|
-
* is set, the option allows to disable zooming on an individual
|
|
758
|
-
* non-cartesian series. By default zooming is enabled for all series.
|
|
759
|
-
*
|
|
760
|
-
* **Note**: This option works only for non-cartesian series.
|
|
761
|
-
*/
|
|
762
|
-
zoomEnabled?: boolean;
|
|
131
|
+
standardDeviation?: number;
|
|
763
132
|
}
|
|
764
133
|
/**
|
|
765
|
-
* (Highcharts, Highstock) Animation
|
|
766
|
-
* line-type series.
|
|
134
|
+
* (Highcharts, Highstock) Animation when not hovering over the marker.
|
|
767
135
|
*/
|
|
768
|
-
interface
|
|
136
|
+
interface PlotBbStatesInactiveAnimationOptions {
|
|
769
137
|
/**
|
|
770
138
|
* (Highcharts, Highstock) The duration of the hover animation in
|
|
771
139
|
* milliseconds. By default the hover state animates quickly in, and
|
|
@@ -774,111 +142,68 @@ declare module "../highcharts.src" {
|
|
|
774
142
|
duration?: number;
|
|
775
143
|
}
|
|
776
144
|
/**
|
|
777
|
-
* (Highcharts, Highstock)
|
|
778
|
-
*
|
|
145
|
+
* (Highcharts, Highstock, Gantt) For series on datetime axes, the date
|
|
146
|
+
* format in the tooltip's header will by default be guessed based on the
|
|
147
|
+
* closest data points. This member gives the default string representations
|
|
148
|
+
* used for each unit. For an overview of the string or object
|
|
149
|
+
* configuration, see dateFormat.
|
|
779
150
|
*/
|
|
780
|
-
interface
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
151
|
+
interface PlotBbTooltipDateTimeLabelFormatsOptions {
|
|
152
|
+
day?: string;
|
|
153
|
+
hour?: string;
|
|
154
|
+
millisecond?: string;
|
|
155
|
+
minute?: string;
|
|
156
|
+
month?: string;
|
|
157
|
+
second?: string;
|
|
158
|
+
week?: string;
|
|
159
|
+
year?: string;
|
|
787
160
|
}
|
|
788
161
|
/**
|
|
789
|
-
* (Highstock)
|
|
790
|
-
*
|
|
162
|
+
* (Highstock) Positioning options for fixed tooltip, taking effect only
|
|
163
|
+
* when tooltip.fixed is `true`.
|
|
791
164
|
*/
|
|
792
|
-
interface
|
|
165
|
+
interface PlotBbTooltipPositionOptions {
|
|
793
166
|
/**
|
|
794
|
-
* (Highstock)
|
|
795
|
-
* tooltip.split is enabled.
|
|
167
|
+
* (Highstock) The horizontal alignment of the fixed tooltip.
|
|
796
168
|
*/
|
|
797
|
-
|
|
169
|
+
align?: Highcharts.AlignValue;
|
|
798
170
|
/**
|
|
799
|
-
* (Highstock)
|
|
800
|
-
*
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
* (Highstock) The width of the border for the tooltip header when
|
|
805
|
-
* tooltip.split is enabled.
|
|
806
|
-
*/
|
|
807
|
-
borderWidth?: number;
|
|
808
|
-
/**
|
|
809
|
-
* (Highstock) Distance between the plot area and the header (except the
|
|
810
|
-
* chevron) in a split tooltip, in pixels. The default value makes the
|
|
811
|
-
* header text align with the axis labels.
|
|
171
|
+
* (Highstock) What the fixed tooltip alignment should be relative to.
|
|
172
|
+
*
|
|
173
|
+
* The default, `pane`, means that it is aligned within the plot area
|
|
174
|
+
* for that given series. If the tooltip is split (as default in Stock
|
|
175
|
+
* charts), each partial tooltip is aligned within the series' pane.
|
|
812
176
|
*/
|
|
813
|
-
|
|
177
|
+
relativeTo?: Highcharts.OptionsRelativeToValue;
|
|
814
178
|
/**
|
|
815
|
-
* (Highstock) The
|
|
816
|
-
* tooltip header. Applies only when tooltip.split is enabled.
|
|
817
|
-
*
|
|
818
|
-
* Custom callbacks for symbol path generation can also be added to
|
|
819
|
-
* `Highcharts.SVGRenderer.prototype.symbols` the same way as for
|
|
820
|
-
* series.marker.symbol.
|
|
179
|
+
* (Highstock) The vertical alignment of the fixed tooltip.
|
|
821
180
|
*/
|
|
822
|
-
|
|
181
|
+
verticalAlign?: Highcharts.VerticalAlignValue;
|
|
823
182
|
/**
|
|
824
|
-
* (Highstock)
|
|
825
|
-
*
|
|
826
|
-
*
|
|
183
|
+
* (Highstock) X pixel offset from the given position. Can be used to
|
|
184
|
+
* shy away from axis lines, grid lines etc to avoid the tooltip
|
|
185
|
+
* overlapping other elements.
|
|
827
186
|
*/
|
|
828
|
-
|
|
829
|
-
}
|
|
830
|
-
/**
|
|
831
|
-
* (Highstock) Top line options.
|
|
832
|
-
*/
|
|
833
|
-
interface PlotBbTopLineOptions {
|
|
187
|
+
x?: number;
|
|
834
188
|
/**
|
|
835
|
-
* (Highstock)
|
|
189
|
+
* (Highstock) Y pixel offset from the given position. Can be used to
|
|
190
|
+
* shy away from axis lines, grid lines etc to avoid the tooltip
|
|
191
|
+
* overlapping other elements.
|
|
836
192
|
*/
|
|
837
|
-
|
|
193
|
+
y?: number;
|
|
838
194
|
}
|
|
839
195
|
/**
|
|
840
|
-
* (Highstock)
|
|
841
|
-
* specified, it is inherited from chart.type.
|
|
842
|
-
*
|
|
843
|
-
* Configuration options for the series are given in three levels:
|
|
844
|
-
*
|
|
845
|
-
* 1. Options for all series in a chart are defined in the
|
|
846
|
-
* plotOptions.series object.
|
|
847
|
-
*
|
|
848
|
-
* 2. Options for all `bb` series are defined in plotOptions.bb.
|
|
849
|
-
*
|
|
850
|
-
* 3. Options for one single series are given in the series instance array.
|
|
851
|
-
* (see online documentation for example)
|
|
852
|
-
*
|
|
853
|
-
* **TypeScript:**
|
|
854
|
-
*
|
|
855
|
-
* - type option should always be set, otherwise a broad set of unsupported
|
|
856
|
-
* options is allowed.
|
|
857
|
-
*
|
|
858
|
-
* - when accessing an array of series, the combined set of all series types
|
|
859
|
-
* is represented by Highcharts.SeriesOptionsType . Narrowing down to the
|
|
860
|
-
* specific type can be done by checking the `type` property. (see online
|
|
861
|
-
* documentation for example)
|
|
862
|
-
*
|
|
863
|
-
* You have to extend the `SeriesBbOptions` via an interface to allow custom
|
|
864
|
-
* properties: ``` declare interface SeriesBbOptions { customProperty:
|
|
865
|
-
* string; }
|
|
866
|
-
*
|
|
196
|
+
* (Highstock) Styles for the top line.
|
|
867
197
|
*/
|
|
868
|
-
interface
|
|
198
|
+
interface PlotBbTopLineStylesOptions {
|
|
869
199
|
/**
|
|
870
|
-
*
|
|
200
|
+
* (Highstock) Color of the line. If not set, it's inherited from
|
|
201
|
+
* plotOptions.bb.color.
|
|
871
202
|
*/
|
|
872
|
-
|
|
203
|
+
lineColor?: Highcharts.ColorString;
|
|
873
204
|
/**
|
|
874
|
-
*
|
|
205
|
+
* (Highstock) Pixel width of the line.
|
|
875
206
|
*/
|
|
876
|
-
|
|
877
|
-
/**
|
|
878
|
-
* (Highcharts, Highstock, Highmaps, Gantt) This property is only in
|
|
879
|
-
* TypeScript non-optional and might be `undefined` in series objects
|
|
880
|
-
* from unknown sources.
|
|
881
|
-
*/
|
|
882
|
-
type: "bb";
|
|
207
|
+
lineWidth?: number;
|
|
883
208
|
}
|
|
884
209
|
}
|