highcharts 7.1.1 → 7.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bower.json +1 -1
- package/css/annotations/popup.css +3 -3
- package/css/annotations/popup.scss +1 -1
- package/css/stocktools/gui.css +5 -5
- package/css/stocktools/gui.scss +1 -1
- package/es-modules/annotations/ControlPoint.js +1 -1
- package/es-modules/annotations/MockPoint.js +45 -12
- package/es-modules/annotations/annotations.src.js +203 -166
- package/es-modules/annotations/controllable/ControllableCircle.js +2 -10
- package/es-modules/annotations/controllable/ControllableImage.js +2 -10
- package/es-modules/annotations/controllable/ControllableLabel.js +54 -9
- package/es-modules/annotations/controllable/ControllableRect.js +2 -10
- package/es-modules/annotations/controllable/controllableMixin.js +32 -4
- package/es-modules/annotations/controllable/markerMixin.js +1 -0
- package/es-modules/annotations/eventEmitterMixin.js +1 -0
- package/es-modules/annotations/navigationBindings.js +15 -11
- package/es-modules/annotations/popup.js +59 -81
- package/es-modules/annotations/types/CrookedLine.js +19 -7
- package/es-modules/annotations/types/ElliottWave.js +7 -6
- package/es-modules/annotations/types/Fibonacci.js +14 -14
- package/es-modules/annotations/types/InfinityLine.js +4 -4
- package/es-modules/annotations/types/Measure.js +41 -41
- package/es-modules/annotations/types/Pitchfork.js +5 -4
- package/es-modules/annotations/types/VerticalLine.js +6 -5
- package/es-modules/error-messages.js +6 -1
- package/es-modules/indicators/indicators.src.js +5 -3
- package/es-modules/mixins/nodes.js +16 -8
- package/es-modules/modules/accessibility/AccessibilityComponent.js +4 -4
- package/es-modules/modules/accessibility/KeyboardNavigation.js +17 -4
- package/es-modules/modules/accessibility/components/RangeSelectorComponent.js +3 -2
- package/es-modules/modules/accessibility/components/SeriesComponent.js +110 -2
- package/es-modules/modules/accessibility/components/ZoomComponent.js +1 -1
- package/es-modules/modules/accessibility/options.js +2 -1
- package/es-modules/modules/bellcurve.src.js +27 -29
- package/es-modules/modules/boost/boost-init.js +14 -0
- package/es-modules/modules/boost/boost-overrides.js +13 -3
- package/es-modules/modules/boost/wgl-renderer.js +30 -15
- package/es-modules/modules/boost/wgl-shader.js +33 -16
- package/es-modules/modules/boost/wgl-vbuffer.js +8 -4
- package/es-modules/modules/broken-axis.src.js +1 -1
- package/es-modules/modules/bullet.src.js +68 -68
- package/es-modules/modules/cylinder.src.js +3 -1
- package/es-modules/modules/data.src.js +9 -5
- package/es-modules/modules/draggable-points.src.js +1 -1
- package/es-modules/modules/drilldown.src.js +1 -1
- package/es-modules/modules/export-data.src.js +7 -8
- package/es-modules/modules/exporting.src.js +9 -1
- package/es-modules/modules/full-screen.src.js +1 -1
- package/es-modules/modules/funnel3d.src.js +10 -3
- package/es-modules/modules/histogram.src.js +162 -164
- package/es-modules/modules/item-series.src.js +10 -10
- package/es-modules/modules/networkgraph/layouts.js +16 -12
- package/es-modules/modules/networkgraph/networkgraph.src.js +147 -51
- package/es-modules/modules/offline-exporting.src.js +15 -2
- package/es-modules/modules/oldie-polyfills.src.js +1 -1
- package/es-modules/modules/organization.src.js +65 -20
- package/es-modules/modules/pareto.src.js +52 -51
- package/es-modules/modules/pattern-fill.src.js +1 -1
- package/es-modules/modules/price-indicator.src.js +1 -1
- package/es-modules/modules/pyramid3d.src.js +1 -1
- package/es-modules/modules/sankey.src.js +22 -10
- package/es-modules/modules/series-label.src.js +16 -8
- package/es-modules/modules/solid-gauge.src.js +128 -79
- package/es-modules/modules/static-scale.src.js +8 -1
- package/es-modules/modules/stock-tools-gui.js +1 -1
- package/es-modules/modules/streamgraph.src.js +11 -11
- package/es-modules/modules/sunburst.src.js +23 -2
- package/es-modules/modules/tilemap.src.js +58 -57
- package/es-modules/modules/timeline.src.js +17 -12
- package/es-modules/modules/treemap.src.js +6 -6
- package/es-modules/modules/variwide.src.js +39 -39
- package/es-modules/modules/vector.src.js +108 -107
- package/es-modules/modules/venn.src.js +4 -2
- package/es-modules/modules/windbarb.src.js +43 -43
- package/es-modules/modules/wordcloud.src.js +1 -0
- package/es-modules/modules/xrange.src.js +112 -104
- package/es-modules/parts/AreaSeries.js +4 -1
- package/es-modules/parts/Axis.js +809 -1870
- package/es-modules/parts/Chart.js +254 -743
- package/es-modules/parts/Color.js +160 -113
- package/es-modules/parts/ColumnSeries.js +9 -3
- package/es-modules/parts/DataLabels.js +31 -2
- package/es-modules/parts/Dynamics.js +73 -26
- package/es-modules/parts/FlagsSeries.js +6 -4
- package/es-modules/parts/Globals.js +20 -36
- package/es-modules/parts/Html.js +116 -235
- package/es-modules/parts/Interaction.js +17 -7
- package/es-modules/parts/Legend.js +277 -632
- package/es-modules/parts/MSPointer.js +62 -106
- package/es-modules/parts/Options.js +128 -367
- package/es-modules/parts/OrdinalAxis.js +12 -0
- package/es-modules/parts/PieSeries.js +61 -44
- package/es-modules/parts/PlotLineOrBand.js +38 -3
- package/es-modules/parts/Point.js +117 -227
- package/es-modules/parts/Pointer.js +273 -558
- package/es-modules/parts/RangeSelector.js +5 -3
- package/es-modules/parts/Responsive.js +8 -4
- package/es-modules/parts/ScrollablePlotArea.js +215 -81
- package/es-modules/parts/Scrollbar.js +38 -23
- package/es-modules/parts/Series.js +151 -47
- package/es-modules/parts/Stacking.js +8 -3
- package/es-modules/parts/StockChart.js +42 -29
- package/es-modules/parts/SvgRenderer.js +1080 -2100
- package/es-modules/parts/Tick.js +11 -4
- package/es-modules/parts/Time.js +179 -363
- package/es-modules/parts/Tooltip.js +23 -12
- package/es-modules/parts/TouchPointer.js +69 -187
- package/es-modules/parts/Utilities.js +593 -846
- package/es-modules/parts-3d/Axis.js +2 -2
- package/es-modules/parts-3d/Column.js +18 -8
- package/es-modules/parts-gantt/GanttSeries.js +17 -21
- package/es-modules/parts-gantt/GridAxis.js +183 -101
- package/es-modules/parts-gantt/PathfinderAlgorithms.js +2 -2
- package/es-modules/parts-gantt/TreeGrid.js +53 -36
- package/es-modules/parts-map/ColorAxis.js +35 -14
- package/es-modules/parts-map/MapBubbleSeries.js +2 -1
- package/es-modules/parts-map/MapSeries.js +29 -18
- package/es-modules/parts-more/AreaRangeSeries.js +13 -12
- package/es-modules/parts-more/ColumnRangeSeries.js +8 -2
- package/es-modules/parts-more/GaugeSeries.js +9 -9
- package/es-modules/parts-more/PackedBubbleSeries.js +152 -115
- package/es-modules/parts-more/RadialAxis.js +102 -8
- package/es-modules/parts-more/WaterfallSeries.js +148 -35
- package/highcharts-3d.js +68 -67
- package/highcharts-3d.js.map +1 -1
- package/highcharts-3d.src.js +21 -11
- package/highcharts-gantt.d.ts +5 -3
- package/highcharts-gantt.js +618 -610
- package/highcharts-gantt.js.map +1 -1
- package/highcharts-gantt.src.d.ts +5 -3
- package/highcharts-gantt.src.js +5185 -8892
- package/highcharts-more.js +144 -140
- package/highcharts-more.js.map +1 -1
- package/highcharts-more.src.js +449 -194
- package/highcharts.d.ts +3943 -5236
- package/highcharts.js +454 -449
- package/highcharts.js.map +1 -1
- package/highcharts.src.d.ts +3943 -5236
- package/highcharts.src.js +4767 -8601
- package/highmaps.d.ts +5 -3
- package/highmaps.js +498 -494
- package/highmaps.js.map +1 -1
- package/highmaps.src.d.ts +5 -3
- package/highmaps.src.js +4547 -8507
- package/highstock.d.ts +5 -3
- package/highstock.js +597 -590
- package/highstock.js.map +1 -1
- package/highstock.src.d.ts +5 -3
- package/highstock.src.js +4871 -8661
- package/indicators/acceleration-bands.js +1 -1
- package/indicators/acceleration-bands.src.js +1 -1
- package/indicators/accumulation-distribution.js +1 -1
- package/indicators/accumulation-distribution.src.js +1 -1
- package/indicators/ao.js +1 -1
- package/indicators/ao.src.js +1 -1
- package/indicators/apo.js +1 -1
- package/indicators/apo.src.js +1 -1
- package/indicators/aroon-oscillator.js +1 -1
- package/indicators/aroon-oscillator.src.js +1 -1
- package/indicators/aroon.js +1 -1
- package/indicators/aroon.src.js +1 -1
- package/indicators/atr.js +1 -1
- package/indicators/atr.src.js +1 -1
- package/indicators/bollinger-bands.js +1 -1
- package/indicators/bollinger-bands.src.js +1 -1
- package/indicators/cci.js +1 -1
- package/indicators/cci.src.js +1 -1
- package/indicators/chaikin.js +1 -1
- package/indicators/chaikin.src.js +1 -1
- package/indicators/cmf.js +1 -1
- package/indicators/cmf.src.js +1 -1
- package/indicators/dema.js +1 -1
- package/indicators/dema.src.js +1 -1
- package/indicators/dpo.js +1 -1
- package/indicators/dpo.src.js +1 -1
- package/indicators/ema.js +1 -1
- package/indicators/ema.src.js +1 -1
- package/indicators/ichimoku-kinko-hyo.js +1 -1
- package/indicators/ichimoku-kinko-hyo.src.js +1 -1
- package/indicators/indicators-all.js +105 -105
- package/indicators/indicators-all.js.map +1 -1
- package/indicators/indicators-all.src.js +6 -4
- package/indicators/indicators.js +9 -9
- package/indicators/indicators.js.map +1 -1
- package/indicators/indicators.src.js +6 -4
- package/indicators/keltner-channels.js +1 -1
- package/indicators/keltner-channels.src.js +1 -1
- package/indicators/macd.js +1 -1
- package/indicators/macd.src.js +1 -1
- package/indicators/mfi.js +1 -1
- package/indicators/mfi.src.js +1 -1
- package/indicators/momentum.js +1 -1
- package/indicators/momentum.src.js +1 -1
- package/indicators/natr.js +1 -1
- package/indicators/natr.src.js +1 -1
- package/indicators/pivot-points.js +1 -1
- package/indicators/pivot-points.src.js +1 -1
- package/indicators/ppo.js +1 -1
- package/indicators/ppo.src.js +1 -1
- package/indicators/price-channel.js +1 -1
- package/indicators/price-channel.src.js +1 -1
- package/indicators/price-envelopes.js +1 -1
- package/indicators/price-envelopes.src.js +1 -1
- package/indicators/psar.js +1 -1
- package/indicators/psar.src.js +1 -1
- package/indicators/regressions.js +1 -1
- package/indicators/regressions.src.js +1 -1
- package/indicators/roc.js +1 -1
- package/indicators/roc.src.js +1 -1
- package/indicators/rsi.js +1 -1
- package/indicators/rsi.src.js +1 -1
- package/indicators/stochastic.js +1 -1
- package/indicators/stochastic.src.js +1 -1
- package/indicators/supertrend.js +1 -1
- package/indicators/supertrend.src.js +1 -1
- package/indicators/tema.js +1 -1
- package/indicators/tema.src.js +1 -1
- package/indicators/trix.js +1 -1
- package/indicators/trix.src.js +1 -1
- package/indicators/volume-by-price.js +1 -1
- package/indicators/volume-by-price.src.js +1 -1
- package/indicators/vwap.js +1 -1
- package/indicators/vwap.src.js +1 -1
- package/indicators/williams-r.js +1 -1
- package/indicators/williams-r.src.js +1 -1
- package/indicators/wma.js +1 -1
- package/indicators/wma.src.js +1 -1
- package/indicators/zigzag.js +1 -1
- package/indicators/zigzag.src.js +1 -1
- package/modules/accessibility.js +92 -89
- package/modules/accessibility.js.map +1 -1
- package/modules/accessibility.src.js +138 -15
- package/modules/annotations-advanced.js +128 -127
- package/modules/annotations-advanced.js.map +1 -1
- package/modules/annotations-advanced.src.js +514 -396
- package/modules/annotations.d.ts +36 -0
- package/modules/annotations.js +81 -81
- package/modules/annotations.js.map +1 -1
- package/modules/annotations.src.d.ts +36 -0
- package/modules/annotations.src.js +418 -315
- package/modules/arrow-symbols.js +1 -1
- package/modules/arrow-symbols.src.js +1 -1
- package/modules/boost-canvas.js +1 -1
- package/modules/boost-canvas.src.js +1 -1
- package/modules/boost.js +63 -63
- package/modules/boost.js.map +1 -1
- package/modules/boost.src.js +99 -39
- package/modules/broken-axis.js +1 -1
- package/modules/broken-axis.src.js +2 -2
- package/modules/bullet.js +1 -1
- package/modules/bullet.src.js +69 -69
- package/modules/current-date-indicator.js +1 -1
- package/modules/current-date-indicator.src.js +1 -1
- package/modules/cylinder.js +1 -1
- package/modules/cylinder.js.map +1 -1
- package/modules/cylinder.src.js +4 -2
- package/modules/data.js +4 -4
- package/modules/data.js.map +1 -1
- package/modules/data.src.js +10 -6
- package/modules/datagrouping.js +1 -1
- package/modules/datagrouping.src.js +1 -1
- package/modules/debugger.js +4 -4
- package/modules/debugger.js.map +1 -1
- package/modules/debugger.src.js +7 -2
- package/modules/dependency-wheel.js +1 -1
- package/modules/dependency-wheel.src.js +1 -1
- package/modules/dotplot.js +1 -1
- package/modules/dotplot.src.js +1 -1
- package/modules/drag-panes.js +1 -1
- package/modules/drag-panes.src.js +1 -1
- package/modules/draggable-points.js +1 -1
- package/modules/draggable-points.src.js +2 -2
- package/modules/drilldown.js +1 -1
- package/modules/drilldown.src.js +2 -2
- package/modules/export-data.js +2 -2
- package/modules/export-data.js.map +1 -1
- package/modules/export-data.src.js +8 -9
- package/modules/exporting.js +25 -25
- package/modules/exporting.js.map +1 -1
- package/modules/exporting.src.js +11 -3
- package/modules/full-screen.js +1 -1
- package/modules/full-screen.src.js +2 -2
- package/modules/funnel.js +1 -1
- package/modules/funnel.src.js +1 -1
- package/modules/funnel3d.js +2 -2
- package/modules/funnel3d.js.map +1 -1
- package/modules/funnel3d.src.js +11 -4
- package/modules/gantt.js +166 -164
- package/modules/gantt.js.map +1 -1
- package/modules/gantt.src.js +422 -295
- package/modules/grid-axis.js +18 -16
- package/modules/grid-axis.js.map +1 -1
- package/modules/grid-axis.src.js +184 -102
- package/modules/heatmap.js +22 -22
- package/modules/heatmap.js.map +1 -1
- package/modules/heatmap.src.js +36 -15
- package/modules/histogram-bellcurve.js +1 -1
- package/modules/histogram-bellcurve.js.map +1 -1
- package/modules/histogram-bellcurve.src.js +186 -183
- package/modules/item-series.js +1 -1
- package/modules/item-series.src.js +11 -11
- package/modules/map-parser.js +1 -1
- package/modules/map-parser.src.js +1 -1
- package/modules/map.js +83 -83
- package/modules/map.js.map +1 -1
- package/modules/map.src.js +67 -34
- package/modules/networkgraph.js +10 -9
- package/modules/networkgraph.js.map +1 -1
- package/modules/networkgraph.src.js +180 -72
- package/modules/no-data-to-display.js +1 -1
- package/modules/no-data-to-display.src.js +1 -1
- package/modules/offline-exporting.js +15 -15
- package/modules/offline-exporting.js.map +1 -1
- package/modules/offline-exporting.src.js +17 -4
- package/modules/oldie-polyfills.js +1 -1
- package/modules/oldie-polyfills.src.js +2 -2
- package/modules/oldie.js +2 -2
- package/modules/oldie.src.js +2 -2
- package/modules/organization.js +1 -1
- package/modules/organization.js.map +1 -1
- package/modules/organization.src.js +66 -21
- package/modules/overlapping-datalabels.js +1 -1
- package/modules/overlapping-datalabels.src.js +1 -1
- package/modules/parallel-coordinates.js +1 -1
- package/modules/parallel-coordinates.src.js +1 -1
- package/modules/pareto.js +1 -1
- package/modules/pareto.js.map +1 -1
- package/modules/pareto.src.js +53 -52
- package/modules/pathfinder.js +3 -3
- package/modules/pathfinder.js.map +1 -1
- package/modules/pathfinder.src.js +3 -3
- package/modules/pattern-fill.js +1 -1
- package/modules/pattern-fill.src.js +2 -2
- package/modules/price-indicator.js +1 -1
- package/modules/price-indicator.src.js +2 -2
- package/modules/pyramid3d.js +1 -1
- package/modules/pyramid3d.src.js +2 -2
- package/modules/sankey.js +14 -14
- package/modules/sankey.js.map +1 -1
- package/modules/sankey.src.js +39 -19
- package/modules/series-label.js +16 -16
- package/modules/series-label.js.map +1 -1
- package/modules/series-label.src.js +17 -9
- package/modules/solid-gauge.js +5 -5
- package/modules/solid-gauge.js.map +1 -1
- package/modules/solid-gauge.src.js +129 -80
- package/modules/sonification.js +1 -1
- package/modules/sonification.src.js +1 -1
- package/modules/static-scale.js +4 -4
- package/modules/static-scale.js.map +1 -1
- package/modules/static-scale.src.js +9 -2
- package/modules/stock-tools.js +2 -2
- package/modules/stock-tools.src.js +3 -3
- package/modules/stock.js +146 -145
- package/modules/stock.js.map +1 -1
- package/modules/stock.src.js +105 -61
- package/modules/streamgraph.js +1 -1
- package/modules/streamgraph.src.js +12 -12
- package/modules/sunburst.js +40 -40
- package/modules/sunburst.js.map +1 -1
- package/modules/sunburst.src.js +30 -9
- package/modules/tilemap.js +1 -1
- package/modules/tilemap.js.map +1 -1
- package/modules/tilemap.src.js +59 -58
- package/modules/timeline.js +12 -11
- package/modules/timeline.js.map +1 -1
- package/modules/timeline.src.js +18 -13
- package/modules/treegrid.js +45 -43
- package/modules/treegrid.js.map +1 -1
- package/modules/treegrid.src.js +238 -139
- package/modules/treemap.js +1 -1
- package/modules/treemap.src.js +7 -7
- package/modules/variable-pie.js +1 -1
- package/modules/variable-pie.src.js +1 -1
- package/modules/variwide.js +1 -1
- package/modules/variwide.src.js +40 -40
- package/modules/vector.js +1 -1
- package/modules/vector.js.map +1 -1
- package/modules/vector.src.js +109 -108
- package/modules/venn.js +23 -23
- package/modules/venn.js.map +1 -1
- package/modules/venn.src.js +5 -3
- package/modules/windbarb.js +1 -1
- package/modules/windbarb.src.js +44 -44
- package/modules/wordcloud.js +10 -10
- package/modules/wordcloud.js.map +1 -1
- package/modules/wordcloud.src.js +2 -1
- package/modules/xrange.js +12 -12
- package/modules/xrange.js.map +1 -1
- package/modules/xrange.src.js +113 -105
- package/package.json +1 -1
- package/themes/avocado.js +21 -37
- package/themes/avocado.src.js +1 -1
- package/themes/dark-blue.js +1 -1
- package/themes/dark-blue.src.js +1 -1
- package/themes/dark-green.js +1 -1
- package/themes/dark-green.src.js +1 -1
- package/themes/dark-unica.js +1 -1
- package/themes/dark-unica.src.js +1 -1
- package/themes/gray.js +1 -1
- package/themes/gray.src.js +1 -1
- package/themes/grid-light.js +1 -1
- package/themes/grid-light.src.js +1 -1
- package/themes/grid.js +1 -1
- package/themes/grid.src.js +1 -1
- package/themes/sand-signika.js +1 -1
- package/themes/sand-signika.src.js +1 -1
- package/themes/skies.js +1 -1
- package/themes/skies.src.js +1 -1
- package/themes/sunset.js +21 -37
- package/themes/sunset.src.js +1 -1
- package/.DS_Store +0 -0
- package/es-modules/.DS_Store +0 -0
- package/es-modules/modules/annotations-legacy.src.js +0 -1977
- package/js/.DS_Store +0 -0
package/modules/boost.src.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v7.1.
|
|
2
|
+
* @license Highcharts JS v7.1.2 (2019-06-04)
|
|
3
3
|
*
|
|
4
4
|
* Boost module
|
|
5
5
|
*
|
|
@@ -334,8 +334,9 @@
|
|
|
334
334
|
// Texture uniform
|
|
335
335
|
uSamplerUniform;
|
|
336
336
|
|
|
337
|
-
|
|
337
|
+
/**
|
|
338
338
|
* Handle errors accumulated in errors stack
|
|
339
|
+
* @private
|
|
339
340
|
*/
|
|
340
341
|
function handleErrors() {
|
|
341
342
|
if (errors.length) {
|
|
@@ -343,7 +344,9 @@
|
|
|
343
344
|
}
|
|
344
345
|
}
|
|
345
346
|
|
|
346
|
-
|
|
347
|
+
/**
|
|
348
|
+
* String to shader program
|
|
349
|
+
* @private
|
|
347
350
|
* @param {string} str - the program source
|
|
348
351
|
* @param {string} type - the program type: either `vertex` or `fragment`
|
|
349
352
|
* @returns {bool|shader}
|
|
@@ -368,9 +371,10 @@
|
|
|
368
371
|
return shader;
|
|
369
372
|
}
|
|
370
373
|
|
|
371
|
-
|
|
374
|
+
/**
|
|
372
375
|
* Create the shader.
|
|
373
376
|
* Loads the shader program statically defined above
|
|
377
|
+
* @private
|
|
374
378
|
*/
|
|
375
379
|
function createShader() {
|
|
376
380
|
var v = stringToProgram(vertShade, 'vertex'),
|
|
@@ -418,8 +422,9 @@
|
|
|
418
422
|
return true;
|
|
419
423
|
}
|
|
420
424
|
|
|
421
|
-
|
|
425
|
+
/**
|
|
422
426
|
* Destroy the shader
|
|
427
|
+
* @private
|
|
423
428
|
*/
|
|
424
429
|
function destroy() {
|
|
425
430
|
if (gl && shaderProgram) {
|
|
@@ -428,10 +433,11 @@
|
|
|
428
433
|
}
|
|
429
434
|
}
|
|
430
435
|
|
|
431
|
-
|
|
436
|
+
/**
|
|
432
437
|
* Bind the shader.
|
|
433
438
|
* This makes the shader the active one until another one is bound,
|
|
434
439
|
* or until 0 is bound.
|
|
440
|
+
* @private
|
|
435
441
|
*/
|
|
436
442
|
function bind() {
|
|
437
443
|
if (gl && shaderProgram) {
|
|
@@ -439,9 +445,10 @@
|
|
|
439
445
|
}
|
|
440
446
|
}
|
|
441
447
|
|
|
442
|
-
|
|
448
|
+
/**
|
|
443
449
|
* Set a uniform value.
|
|
444
450
|
* This uses a hash map to cache uniform locations.
|
|
451
|
+
* @private
|
|
445
452
|
* @param name {string} - the name of the uniform to set
|
|
446
453
|
* @param val {float} - the value to set
|
|
447
454
|
*/
|
|
@@ -457,8 +464,9 @@
|
|
|
457
464
|
}
|
|
458
465
|
}
|
|
459
466
|
|
|
460
|
-
|
|
467
|
+
/**
|
|
461
468
|
* Set the active texture
|
|
469
|
+
* @private
|
|
462
470
|
* @param texture - the texture
|
|
463
471
|
*/
|
|
464
472
|
function setTexture(texture) {
|
|
@@ -467,8 +475,9 @@
|
|
|
467
475
|
}
|
|
468
476
|
}
|
|
469
477
|
|
|
470
|
-
|
|
478
|
+
/**
|
|
471
479
|
* Set if inversion state
|
|
480
|
+
* @private
|
|
472
481
|
* @flag is the state
|
|
473
482
|
*/
|
|
474
483
|
function setInverted(flag) {
|
|
@@ -477,8 +486,9 @@
|
|
|
477
486
|
}
|
|
478
487
|
}
|
|
479
488
|
|
|
480
|
-
|
|
489
|
+
/**
|
|
481
490
|
* Enable/disable circle drawing
|
|
491
|
+
* @private
|
|
482
492
|
*/
|
|
483
493
|
function setDrawAsCircle(flag) {
|
|
484
494
|
if (gl && shaderProgram) {
|
|
@@ -486,8 +496,9 @@
|
|
|
486
496
|
}
|
|
487
497
|
}
|
|
488
498
|
|
|
489
|
-
|
|
499
|
+
/**
|
|
490
500
|
* Flush
|
|
501
|
+
* @private
|
|
491
502
|
*/
|
|
492
503
|
function reset() {
|
|
493
504
|
if (gl && shaderProgram) {
|
|
@@ -496,8 +507,9 @@
|
|
|
496
507
|
}
|
|
497
508
|
}
|
|
498
509
|
|
|
499
|
-
|
|
510
|
+
/**
|
|
500
511
|
* Set bubble uniforms
|
|
512
|
+
* @private
|
|
501
513
|
* @param series {Highcharts.Series} - the series to use
|
|
502
514
|
*/
|
|
503
515
|
function setBubbleUniforms(series, zCalcMin, zCalcMax) {
|
|
@@ -536,8 +548,9 @@
|
|
|
536
548
|
}
|
|
537
549
|
}
|
|
538
550
|
|
|
539
|
-
|
|
551
|
+
/**
|
|
540
552
|
* Set the Color uniform.
|
|
553
|
+
* @private
|
|
541
554
|
* @param color {Array<float>} - an array with RGBA values
|
|
542
555
|
*/
|
|
543
556
|
function setColor(color) {
|
|
@@ -552,8 +565,9 @@
|
|
|
552
565
|
}
|
|
553
566
|
}
|
|
554
567
|
|
|
555
|
-
|
|
568
|
+
/**
|
|
556
569
|
* Set skip translation
|
|
570
|
+
* @private
|
|
557
571
|
*/
|
|
558
572
|
function setSkipTranslation(flag) {
|
|
559
573
|
if (gl && shaderProgram) {
|
|
@@ -561,8 +575,9 @@
|
|
|
561
575
|
}
|
|
562
576
|
}
|
|
563
577
|
|
|
564
|
-
|
|
578
|
+
/**
|
|
565
579
|
* Set the perspective matrix
|
|
580
|
+
* @private
|
|
566
581
|
* @param m {Matrix4x4} - the matrix
|
|
567
582
|
*/
|
|
568
583
|
function setPMatrix(m) {
|
|
@@ -571,8 +586,9 @@
|
|
|
571
586
|
}
|
|
572
587
|
}
|
|
573
588
|
|
|
574
|
-
|
|
589
|
+
/**
|
|
575
590
|
* Set the point size.
|
|
591
|
+
* @private
|
|
576
592
|
* @param p {float} - point size
|
|
577
593
|
*/
|
|
578
594
|
function setPointSize(p) {
|
|
@@ -581,8 +597,9 @@
|
|
|
581
597
|
}
|
|
582
598
|
}
|
|
583
599
|
|
|
584
|
-
|
|
600
|
+
/**
|
|
585
601
|
* Get the shader program handle
|
|
602
|
+
* @private
|
|
586
603
|
* @returns {GLInt} - the handle for the program
|
|
587
604
|
*/
|
|
588
605
|
function getProgram() {
|
|
@@ -676,8 +693,9 @@
|
|
|
676
693
|
data = [];
|
|
677
694
|
}
|
|
678
695
|
|
|
679
|
-
|
|
696
|
+
/**
|
|
680
697
|
* Build the buffer
|
|
698
|
+
* @private
|
|
681
699
|
* @param dataIn {Array<float>} - a 0 padded array of indices
|
|
682
700
|
* @param attrib {String} - the name of the Attribute to bind the buffer to
|
|
683
701
|
* @param dataComponents {Integer} - the number of components per. indice
|
|
@@ -721,8 +739,9 @@
|
|
|
721
739
|
return true;
|
|
722
740
|
}
|
|
723
741
|
|
|
724
|
-
|
|
742
|
+
/**
|
|
725
743
|
* Bind the buffer
|
|
744
|
+
* @private
|
|
726
745
|
*/
|
|
727
746
|
function bind() {
|
|
728
747
|
if (!buffer) {
|
|
@@ -738,8 +757,9 @@
|
|
|
738
757
|
// gl.enableVertexAttribArray(vertAttribute);
|
|
739
758
|
}
|
|
740
759
|
|
|
741
|
-
|
|
760
|
+
/**
|
|
742
761
|
* Render the buffer
|
|
762
|
+
* @private
|
|
743
763
|
* @param from {Integer} - the start indice
|
|
744
764
|
* @param to {Integer} - the end indice
|
|
745
765
|
* @param drawMode {String} - the draw mode
|
|
@@ -783,9 +803,10 @@
|
|
|
783
803
|
}
|
|
784
804
|
}
|
|
785
805
|
|
|
786
|
-
|
|
806
|
+
/**
|
|
787
807
|
* Note about pre-allocated buffers:
|
|
788
808
|
* - This is slower for charts with many series
|
|
809
|
+
* @private
|
|
789
810
|
*/
|
|
790
811
|
function allocate(size) {
|
|
791
812
|
size *= 4;
|
|
@@ -968,8 +989,9 @@
|
|
|
968
989
|
vbuffer.allocate(s);
|
|
969
990
|
}
|
|
970
991
|
|
|
971
|
-
|
|
992
|
+
/**
|
|
972
993
|
* Returns an orthographic perspective matrix
|
|
994
|
+
* @private
|
|
973
995
|
* @param {number} width - the width of the viewport in pixels
|
|
974
996
|
* @param {number} height - the height of the viewport in pixels
|
|
975
997
|
*/
|
|
@@ -985,25 +1007,28 @@
|
|
|
985
1007
|
];
|
|
986
1008
|
}
|
|
987
1009
|
|
|
988
|
-
|
|
1010
|
+
/**
|
|
989
1011
|
* Clear the depth and color buffer
|
|
1012
|
+
* @private
|
|
990
1013
|
*/
|
|
991
1014
|
function clear() {
|
|
992
1015
|
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
|
|
993
1016
|
}
|
|
994
1017
|
|
|
995
|
-
|
|
1018
|
+
/**
|
|
996
1019
|
* Get the WebGL context
|
|
1020
|
+
* @private
|
|
997
1021
|
* @returns {WebGLContext} - the context
|
|
998
1022
|
*/
|
|
999
1023
|
function getGL() {
|
|
1000
1024
|
return gl;
|
|
1001
1025
|
}
|
|
1002
1026
|
|
|
1003
|
-
|
|
1027
|
+
/**
|
|
1004
1028
|
* Push data for a single series
|
|
1005
1029
|
* This calculates additional vertices and transforms the data to be
|
|
1006
1030
|
* aligned correctly in memory
|
|
1031
|
+
* @private
|
|
1007
1032
|
*/
|
|
1008
1033
|
function pushSeriesData(series, inst) {
|
|
1009
1034
|
var isRange = series.pointArrayMap &&
|
|
@@ -1630,9 +1655,10 @@
|
|
|
1630
1655
|
closeSegment();
|
|
1631
1656
|
}
|
|
1632
1657
|
|
|
1633
|
-
|
|
1658
|
+
/**
|
|
1634
1659
|
* Push a series to the renderer
|
|
1635
1660
|
* If we render the series immediatly, we don't have to loop later
|
|
1661
|
+
* @private
|
|
1636
1662
|
* @param s {Highchart.Series} - the series to push
|
|
1637
1663
|
*/
|
|
1638
1664
|
function pushSeries(s) {
|
|
@@ -1685,10 +1711,11 @@
|
|
|
1685
1711
|
}
|
|
1686
1712
|
}
|
|
1687
1713
|
|
|
1688
|
-
|
|
1714
|
+
/**
|
|
1689
1715
|
* Flush the renderer.
|
|
1690
1716
|
* This removes pushed series and vertices.
|
|
1691
1717
|
* Should be called after clearing and before rendering
|
|
1718
|
+
* @private
|
|
1692
1719
|
*/
|
|
1693
1720
|
function flush() {
|
|
1694
1721
|
series = [];
|
|
@@ -1700,8 +1727,9 @@
|
|
|
1700
1727
|
}
|
|
1701
1728
|
}
|
|
1702
1729
|
|
|
1703
|
-
|
|
1730
|
+
/**
|
|
1704
1731
|
* Pass x-axis to shader
|
|
1732
|
+
* @private
|
|
1705
1733
|
* @param axis {Highcharts.Axis} - the x-axis
|
|
1706
1734
|
*/
|
|
1707
1735
|
function setXAxis(axis) {
|
|
@@ -1720,8 +1748,9 @@
|
|
|
1720
1748
|
shader.setUniform('xAxisReversed', !!axis.reversed);
|
|
1721
1749
|
}
|
|
1722
1750
|
|
|
1723
|
-
|
|
1751
|
+
/**
|
|
1724
1752
|
* Pass y-axis to shader
|
|
1753
|
+
* @private
|
|
1725
1754
|
* @param axis {Highcharts.Axis} - the y-axis
|
|
1726
1755
|
*/
|
|
1727
1756
|
function setYAxis(axis) {
|
|
@@ -1740,8 +1769,9 @@
|
|
|
1740
1769
|
shader.setUniform('yAxisReversed', !!axis.reversed);
|
|
1741
1770
|
}
|
|
1742
1771
|
|
|
1743
|
-
|
|
1772
|
+
/**
|
|
1744
1773
|
* Set the translation threshold
|
|
1774
|
+
* @private
|
|
1745
1775
|
* @param has {boolean} - has threshold flag
|
|
1746
1776
|
* @param translation {Float} - the threshold
|
|
1747
1777
|
*/
|
|
@@ -1750,9 +1780,10 @@
|
|
|
1750
1780
|
shader.setUniform('translatedThreshold', translation);
|
|
1751
1781
|
}
|
|
1752
1782
|
|
|
1753
|
-
|
|
1783
|
+
/**
|
|
1754
1784
|
* Render the data
|
|
1755
1785
|
* This renders all pushed series.
|
|
1786
|
+
* @private
|
|
1756
1787
|
*/
|
|
1757
1788
|
function render(chart) {
|
|
1758
1789
|
|
|
@@ -1971,8 +2002,9 @@
|
|
|
1971
2002
|
flush();
|
|
1972
2003
|
}
|
|
1973
2004
|
|
|
1974
|
-
|
|
2005
|
+
/**
|
|
1975
2006
|
* Render the data when ready
|
|
2007
|
+
* @private
|
|
1976
2008
|
*/
|
|
1977
2009
|
function renderWhenReady(chart) {
|
|
1978
2010
|
clear();
|
|
@@ -1990,9 +2022,10 @@
|
|
|
1990
2022
|
}
|
|
1991
2023
|
}
|
|
1992
2024
|
|
|
1993
|
-
|
|
2025
|
+
/**
|
|
1994
2026
|
* Set the viewport size in pixels
|
|
1995
2027
|
* Creates an orthographic perspective matrix and applies it.
|
|
2028
|
+
* @private
|
|
1996
2029
|
* @param w {Integer} - the width of the viewport
|
|
1997
2030
|
* @param h {Integer} - the height of the viewport
|
|
1998
2031
|
*/
|
|
@@ -2009,8 +2042,9 @@
|
|
|
2009
2042
|
shader.setPMatrix(orthoMatrix(width, height));
|
|
2010
2043
|
}
|
|
2011
2044
|
|
|
2012
|
-
|
|
2045
|
+
/**
|
|
2013
2046
|
* Init OpenGL
|
|
2047
|
+
* @private
|
|
2014
2048
|
* @param canvas {HTMLCanvas} - the canvas to render to
|
|
2015
2049
|
*/
|
|
2016
2050
|
function init(canvas, noFlush) {
|
|
@@ -2188,16 +2222,18 @@
|
|
|
2188
2222
|
return true;
|
|
2189
2223
|
}
|
|
2190
2224
|
|
|
2191
|
-
|
|
2225
|
+
/**
|
|
2192
2226
|
* Check if we have a valid OGL context
|
|
2227
|
+
* @private
|
|
2193
2228
|
* @returns {Boolean} - true if the context is valid
|
|
2194
2229
|
*/
|
|
2195
2230
|
function valid() {
|
|
2196
2231
|
return gl !== false;
|
|
2197
2232
|
}
|
|
2198
2233
|
|
|
2199
|
-
|
|
2234
|
+
/**
|
|
2200
2235
|
* Check if the renderer has been initialized
|
|
2236
|
+
* @private
|
|
2201
2237
|
* @returns {Boolean} - true if it has, false if not
|
|
2202
2238
|
*/
|
|
2203
2239
|
function inited() {
|
|
@@ -2878,6 +2914,12 @@
|
|
|
2878
2914
|
// If we're rendering per. series we should create the marker groups
|
|
2879
2915
|
// as usual.
|
|
2880
2916
|
if (!chart.isChartSeriesBoosting()) {
|
|
2917
|
+
// If all series were boosting, but are not anymore
|
|
2918
|
+
// restore private markerGroup
|
|
2919
|
+
if (this.markerGroup === chart.markerGroup) {
|
|
2920
|
+
this.markerGroup = undefined;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2881
2923
|
this.markerGroup = series.plotGroup(
|
|
2882
2924
|
'markerGroup',
|
|
2883
2925
|
'markers',
|
|
@@ -2886,6 +2928,14 @@
|
|
|
2886
2928
|
chart.seriesGroup
|
|
2887
2929
|
);
|
|
2888
2930
|
} else {
|
|
2931
|
+
// If series has a private markeGroup, remove that
|
|
2932
|
+
// and use common markerGroup
|
|
2933
|
+
if (
|
|
2934
|
+
this.markerGroup &&
|
|
2935
|
+
this.markerGroup !== chart.markerGroup
|
|
2936
|
+
) {
|
|
2937
|
+
this.markerGroup.destroy();
|
|
2938
|
+
}
|
|
2889
2939
|
// Use a single group for the markers
|
|
2890
2940
|
this.markerGroup = chart.markerGroup;
|
|
2891
2941
|
|
|
@@ -3528,11 +3578,21 @@
|
|
|
3528
3578
|
var options = this.options,
|
|
3529
3579
|
data = options.data,
|
|
3530
3580
|
xAxis = this.xAxis && this.xAxis.options,
|
|
3531
|
-
yAxis = this.yAxis && this.yAxis.options
|
|
3581
|
+
yAxis = this.yAxis && this.yAxis.options,
|
|
3582
|
+
colorAxis = this.colorAxis && this.colorAxis.options;
|
|
3532
3583
|
|
|
3533
3584
|
return data.length > (options.boostThreshold || Number.MAX_VALUE) &&
|
|
3534
|
-
|
|
3535
|
-
|
|
3585
|
+
// Defined yAxis extremes
|
|
3586
|
+
isNumber(yAxis.min) &&
|
|
3587
|
+
isNumber(yAxis.max) &&
|
|
3588
|
+
// Defined (and required) xAxis extremes
|
|
3589
|
+
(!checkX ||
|
|
3590
|
+
(isNumber(xAxis.min) && isNumber(xAxis.max))
|
|
3591
|
+
) &&
|
|
3592
|
+
// Defined (e.g. heatmap) colorAxis extremes
|
|
3593
|
+
(!colorAxis ||
|
|
3594
|
+
(isNumber(colorAxis.min) && isNumber(colorAxis.max))
|
|
3595
|
+
);
|
|
3536
3596
|
};
|
|
3537
3597
|
|
|
3538
3598
|
/**
|
package/modules/broken-axis.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v7.1.
|
|
2
|
+
* @license Highcharts JS v7.1.2 (2019-06-04)
|
|
3
3
|
*
|
|
4
4
|
* (c) 2009-2019 Torstein Honsi
|
|
5
5
|
*
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
_registerModule(_modules, 'modules/broken-axis.src.js', [_modules['parts/Globals.js']], function (H) {
|
|
30
|
-
|
|
30
|
+
/* *
|
|
31
31
|
* (c) 2009-2019 Torstein Honsi
|
|
32
32
|
*
|
|
33
33
|
* License: www.highcharts.com/license
|
package/modules/bullet.js
CHANGED
package/modules/bullet.src.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Highcharts JS v7.1.
|
|
2
|
+
* @license Highcharts JS v7.1.2 (2019-06-04)
|
|
3
3
|
*
|
|
4
4
|
* Bullet graph series type for Highcharts
|
|
5
5
|
*
|
|
@@ -55,78 +55,78 @@
|
|
|
55
55
|
seriesType('bullet', 'column'
|
|
56
56
|
|
|
57
57
|
/**
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
*
|
|
66
|
-
* @extends plotOptions.column
|
|
67
|
-
* @since 6.0.0
|
|
68
|
-
* @product highcharts
|
|
69
|
-
* @excluding allAreas, boostThreshold, colorAxis, compare, compareBase
|
|
70
|
-
* @optionparent plotOptions.bullet
|
|
71
|
-
*/
|
|
72
|
-
, {
|
|
73
|
-
/**
|
|
74
|
-
* All options related with look and positiong of targets.
|
|
58
|
+
* A bullet graph is a variation of a bar graph. The bullet graph features
|
|
59
|
+
* a single measure, compares it to a target, and displays it in the context
|
|
60
|
+
* of qualitative ranges of performance that could be set using
|
|
61
|
+
* [plotBands](#yAxis.plotBands) on [yAxis](#yAxis).
|
|
62
|
+
*
|
|
63
|
+
* @sample {highcharts} highcharts/demo/bullet-graph/
|
|
64
|
+
* Bullet graph
|
|
75
65
|
*
|
|
76
|
-
* @
|
|
66
|
+
* @extends plotOptions.column
|
|
67
|
+
* @since 6.0.0
|
|
68
|
+
* @product highcharts
|
|
69
|
+
* @excluding allAreas, boostThreshold, colorAxis, compare, compareBase
|
|
70
|
+
* @optionparent plotOptions.bullet
|
|
77
71
|
*/
|
|
78
|
-
|
|
72
|
+
, {
|
|
79
73
|
/**
|
|
80
|
-
*
|
|
81
|
-
* as a pixel value or as a percentage of a column width.
|
|
74
|
+
* All options related with look and positiong of targets.
|
|
82
75
|
*
|
|
83
|
-
* @type {number|string}
|
|
84
76
|
* @since 6.0.0
|
|
85
77
|
*/
|
|
78
|
+
targetOptions: {
|
|
79
|
+
/**
|
|
80
|
+
* The width of the rectangle representing the target. Could be set
|
|
81
|
+
* as a pixel value or as a percentage of a column width.
|
|
82
|
+
*
|
|
83
|
+
* @type {number|string}
|
|
84
|
+
* @since 6.0.0
|
|
85
|
+
*/
|
|
86
86
|
width: '140%',
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
* The height of the rectangle representing the target.
|
|
90
|
+
*
|
|
91
|
+
* @since 6.0.0
|
|
92
|
+
*/
|
|
93
93
|
height: 3,
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
96
|
+
* The border color of the rectangle representing the target. When
|
|
97
|
+
* not set, the point's border color is used.
|
|
98
|
+
*
|
|
99
|
+
* In styled mode, use class `highcharts-bullet-target` instead.
|
|
100
|
+
*
|
|
101
|
+
* @type {Highcharts.ColorString}
|
|
102
|
+
* @since 6.0.0
|
|
103
|
+
* @product highcharts
|
|
104
|
+
* @apioption plotOptions.bullet.targetOptions.borderColor
|
|
105
|
+
*/
|
|
106
106
|
|
|
107
107
|
/**
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
108
|
+
* The color of the rectangle representing the target. When not set,
|
|
109
|
+
* point's color (if set in point's options -
|
|
110
|
+
* [`color`](#series.bullet.data.color)) or zone of the target value
|
|
111
|
+
* (if [`zones`](#plotOptions.bullet.zones) or
|
|
112
|
+
* [`negativeColor`](#plotOptions.bullet.negativeColor) are set)
|
|
113
|
+
* or the same color as the point has is used.
|
|
114
|
+
*
|
|
115
|
+
* In styled mode, use class `highcharts-bullet-target` instead.
|
|
116
|
+
*
|
|
117
|
+
* @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
|
|
118
|
+
* @since 6.0.0
|
|
119
|
+
* @product highcharts
|
|
120
|
+
* @apioption plotOptions.bullet.targetOptions.color
|
|
121
|
+
*/
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
124
|
+
* The border width of the rectangle representing the target.
|
|
125
|
+
*
|
|
126
|
+
* In styled mode, use class `highcharts-bullet-target` instead.
|
|
127
|
+
*
|
|
128
|
+
* @since 6.0.0
|
|
129
|
+
*/
|
|
130
130
|
borderWidth: 0
|
|
131
131
|
},
|
|
132
132
|
|
|
@@ -140,13 +140,13 @@
|
|
|
140
140
|
parallelArrays: ['x', 'y', 'target'],
|
|
141
141
|
|
|
142
142
|
/**
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
143
|
+
* Draws the targets. For inverted chart, the `series.group` is rotated,
|
|
144
|
+
* so the same coordinates apply. This method is based on column series
|
|
145
|
+
* drawPoints function.
|
|
146
|
+
*
|
|
147
|
+
* @ignore
|
|
148
|
+
* @function Highcharts.Series#drawPoints
|
|
149
|
+
*/
|
|
150
150
|
drawPoints: function () {
|
|
151
151
|
var series = this,
|
|
152
152
|
chart = series.chart,
|
|
@@ -260,11 +260,11 @@
|
|
|
260
260
|
},
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
263
|
+
* Includes target values to extend extremes from y values.
|
|
264
|
+
*
|
|
265
|
+
* @ignore
|
|
266
|
+
* @function Highcharts.Series#getExtremes
|
|
267
|
+
*/
|
|
268
268
|
getExtremes: function (yData) {
|
|
269
269
|
var series = this,
|
|
270
270
|
targetData = series.targetData,
|
package/modules/cylinder.js
CHANGED