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
|
@@ -36,6 +36,8 @@ H.merge(
|
|
|
36
36
|
*/
|
|
37
37
|
type: 'circle',
|
|
38
38
|
|
|
39
|
+
translate: controllableMixin.translateShape,
|
|
40
|
+
|
|
39
41
|
render: function (parent) {
|
|
40
42
|
var attrs = this.attrsFromOptions(this.options);
|
|
41
43
|
|
|
@@ -68,16 +70,6 @@ H.merge(
|
|
|
68
70
|
controllableMixin.redraw.call(this, animation);
|
|
69
71
|
},
|
|
70
72
|
|
|
71
|
-
translate: function (dx, dy) {
|
|
72
|
-
var annotationOptions = this.annotation.userOptions,
|
|
73
|
-
shapeOptions = annotationOptions[this.collection][this.index];
|
|
74
|
-
|
|
75
|
-
this.translatePoint(dx, dy, 0);
|
|
76
|
-
|
|
77
|
-
// Options stored in chart:
|
|
78
|
-
shapeOptions.point = this.options.point;
|
|
79
|
-
},
|
|
80
|
-
|
|
81
73
|
/**
|
|
82
74
|
* Set the radius.
|
|
83
75
|
*
|
|
@@ -47,6 +47,8 @@ H.merge(
|
|
|
47
47
|
*/
|
|
48
48
|
type: 'image',
|
|
49
49
|
|
|
50
|
+
translate: controllableMixin.translateShape,
|
|
51
|
+
|
|
50
52
|
render: function (parent) {
|
|
51
53
|
var attrs = this.attrsFromOptions(this.options),
|
|
52
54
|
options = this.options;
|
|
@@ -84,16 +86,6 @@ H.merge(
|
|
|
84
86
|
this.graphic.placed = Boolean(position);
|
|
85
87
|
|
|
86
88
|
controllableMixin.redraw.call(this, animation);
|
|
87
|
-
},
|
|
88
|
-
|
|
89
|
-
translate: function (dx, dy) {
|
|
90
|
-
var annotationOptions = this.annotation.userOptions,
|
|
91
|
-
shapeOptions = annotationOptions[this.collection][this.index];
|
|
92
|
-
|
|
93
|
-
this.translatePoint(dx, dy, 0);
|
|
94
|
-
|
|
95
|
-
// Options stored in chart:
|
|
96
|
-
shapeOptions.point = this.options.point;
|
|
97
89
|
}
|
|
98
90
|
}
|
|
99
91
|
);
|
|
@@ -5,15 +5,50 @@ import './../../parts/SvgRenderer.js';
|
|
|
5
5
|
import controllableMixin from './controllableMixin.js';
|
|
6
6
|
import MockPoint from './../MockPoint.js';
|
|
7
7
|
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @private
|
|
11
|
+
* @interface Highcharts.AnnotationAnchorObject
|
|
12
|
+
*//**
|
|
13
|
+
* Relative to the plot area position
|
|
14
|
+
* @name Highcharts.AnnotationAnchorObject#relativePosition
|
|
15
|
+
* @type {Highcharts.AnnotationAnchorPositionObject}
|
|
16
|
+
*//**
|
|
17
|
+
* Absolute position
|
|
18
|
+
* @name Highcharts.AnnotationAnchorObject#absolutePosition
|
|
19
|
+
* @type {Highcharts.AnnotationAnchorPositionObject}
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* An object which denotes an anchor position
|
|
24
|
+
*
|
|
25
|
+
* @private
|
|
26
|
+
* @interface Highcharts.AnnotationAnchorPositionObject
|
|
27
|
+
*//**
|
|
28
|
+
* @name Highcharts.AnnotationAnchorPositionObject#x
|
|
29
|
+
* @property {number}
|
|
30
|
+
*//**
|
|
31
|
+
* @name Highcharts.AnnotationAnchorPositionObject#y
|
|
32
|
+
* @property {number}
|
|
33
|
+
*//**
|
|
34
|
+
* @name Highcharts.AnnotationAnchorPositionObject#height
|
|
35
|
+
* @property {number}
|
|
36
|
+
*//**
|
|
37
|
+
* @name Highcharts.AnnotationAnchorPositionObject#width
|
|
38
|
+
* @property {number}
|
|
39
|
+
*/
|
|
40
|
+
|
|
8
41
|
/**
|
|
9
42
|
* A controllable label class.
|
|
10
43
|
*
|
|
44
|
+
* @private
|
|
11
45
|
* @class
|
|
46
|
+
* @name Annotation.ControllableLabel
|
|
47
|
+
*
|
|
12
48
|
* @mixes Annotation.controllableMixin
|
|
13
|
-
* @memberOf Annotation
|
|
14
49
|
*
|
|
15
50
|
* @param {Highcharts.Annotation} annotation an annotation instance
|
|
16
|
-
* @param {
|
|
51
|
+
* @param {object} options a label's options
|
|
17
52
|
* @param {number} index of the label
|
|
18
53
|
**/
|
|
19
54
|
function ControllableLabel(annotation, options, index) {
|
|
@@ -25,7 +60,7 @@ function ControllableLabel(annotation, options, index) {
|
|
|
25
60
|
* Shapes which do not have background - the object is used for proper
|
|
26
61
|
* setting of the contrast color.
|
|
27
62
|
*
|
|
28
|
-
* @type {Array<
|
|
63
|
+
* @type {Array<string>}
|
|
29
64
|
*/
|
|
30
65
|
ControllableLabel.shapesWithoutBackground = ['connector'];
|
|
31
66
|
|
|
@@ -195,16 +230,24 @@ H.merge(
|
|
|
195
230
|
* @param {number} dy translation for y coordinate
|
|
196
231
|
**/
|
|
197
232
|
translate: function (dx, dy) {
|
|
198
|
-
var
|
|
199
|
-
|
|
233
|
+
var chart = this.annotation.chart,
|
|
234
|
+
// Annotation.options
|
|
235
|
+
labelOptions = this.annotation.userOptions,
|
|
236
|
+
// Chart.options.annotations
|
|
237
|
+
annotationIndex = chart.annotations.indexOf(this.annotation),
|
|
238
|
+
chartAnnotations = chart.options.annotations,
|
|
239
|
+
chartOptions = chartAnnotations[annotationIndex];
|
|
200
240
|
|
|
201
241
|
// Local options:
|
|
202
242
|
this.options.x += dx;
|
|
203
243
|
this.options.y += dy;
|
|
204
244
|
|
|
205
245
|
// Options stored in chart:
|
|
206
|
-
|
|
207
|
-
|
|
246
|
+
chartOptions[this.collection][this.index].x = this.options.x;
|
|
247
|
+
chartOptions[this.collection][this.index].y = this.options.y;
|
|
248
|
+
|
|
249
|
+
labelOptions[this.collection][this.index].x = this.options.x;
|
|
250
|
+
labelOptions[this.collection][this.index].y = this.options.y;
|
|
208
251
|
},
|
|
209
252
|
|
|
210
253
|
render: function (parent) {
|
|
@@ -312,8 +355,9 @@ H.merge(
|
|
|
312
355
|
/**
|
|
313
356
|
* Returns the label position relative to its anchor.
|
|
314
357
|
*
|
|
315
|
-
* @param {
|
|
316
|
-
*
|
|
358
|
+
* @param {Highcharts.AnnotationAnchorObject} anchor
|
|
359
|
+
*
|
|
360
|
+
* @return {Highcharts.AnnotationAnchorPositionObject|null} position
|
|
317
361
|
*/
|
|
318
362
|
position: function (anchor) {
|
|
319
363
|
var item = this.graphic,
|
|
@@ -407,6 +451,7 @@ H.merge(
|
|
|
407
451
|
|
|
408
452
|
/**
|
|
409
453
|
* General symbol definition for labels with connector
|
|
454
|
+
* @private
|
|
410
455
|
*/
|
|
411
456
|
H.SVGRenderer.prototype.symbols.connector = function (x, y, w, h, options) {
|
|
412
457
|
var anchorX = options && options.anchorX,
|
|
@@ -45,6 +45,8 @@ H.merge(
|
|
|
45
45
|
*/
|
|
46
46
|
type: 'rect',
|
|
47
47
|
|
|
48
|
+
translate: controllableMixin.translateShape,
|
|
49
|
+
|
|
48
50
|
render: function (parent) {
|
|
49
51
|
var attrs = this.attrsFromOptions(this.options);
|
|
50
52
|
|
|
@@ -76,16 +78,6 @@ H.merge(
|
|
|
76
78
|
this.graphic.placed = Boolean(position);
|
|
77
79
|
|
|
78
80
|
controllableMixin.redraw.call(this, animation);
|
|
79
|
-
},
|
|
80
|
-
|
|
81
|
-
translate: function (dx, dy) {
|
|
82
|
-
var annotationOptions = this.annotation.userOptions,
|
|
83
|
-
shapeOptions = annotationOptions[this.collection][this.index];
|
|
84
|
-
|
|
85
|
-
this.translatePoint(dx, dy, 0);
|
|
86
|
-
|
|
87
|
-
// Options stored in chart:
|
|
88
|
-
shapeOptions.point = this.options.point;
|
|
89
81
|
}
|
|
90
82
|
}
|
|
91
83
|
);
|
|
@@ -9,6 +9,7 @@ import MockPoint from './../MockPoint.js';
|
|
|
9
9
|
* It provides methods for handling points, control points
|
|
10
10
|
* and points transformations.
|
|
11
11
|
*
|
|
12
|
+
* @private
|
|
12
13
|
* @mixin
|
|
13
14
|
* @memberOf Annotation
|
|
14
15
|
*/
|
|
@@ -142,10 +143,13 @@ var controllableMixin = {
|
|
|
142
143
|
/**
|
|
143
144
|
* Map point's options to a point-like object.
|
|
144
145
|
*
|
|
145
|
-
* @param {
|
|
146
|
-
*
|
|
147
|
-
* @
|
|
148
|
-
*
|
|
146
|
+
* @param {Highcharts.MockPointOptionsObject} pointOptions
|
|
147
|
+
* point's options
|
|
148
|
+
* @param {Highcharts.PointLike} point
|
|
149
|
+
* a point like instance
|
|
150
|
+
*
|
|
151
|
+
* @return {Highcharts.PointLike|null}
|
|
152
|
+
* if the point is found/set returns this point, otherwise null
|
|
149
153
|
*/
|
|
150
154
|
point: function (pointOptions, point) {
|
|
151
155
|
if (pointOptions && pointOptions.series) {
|
|
@@ -331,6 +335,30 @@ var controllableMixin = {
|
|
|
331
335
|
this.transformPoint('translate', null, null, dx, dy, i);
|
|
332
336
|
},
|
|
333
337
|
|
|
338
|
+
/**
|
|
339
|
+
* Translate shape within controllable item.
|
|
340
|
+
* Replaces `controllable.translate` method.
|
|
341
|
+
*
|
|
342
|
+
* @param {number} dx translation for x coordinate
|
|
343
|
+
* @param {number} dy translation for y coordinate
|
|
344
|
+
*/
|
|
345
|
+
translateShape: function (dx, dy) {
|
|
346
|
+
var chart = this.annotation.chart,
|
|
347
|
+
// Annotation.options
|
|
348
|
+
shapeOptions = this.annotation.userOptions,
|
|
349
|
+
// Chart.options.annotations
|
|
350
|
+
annotationIndex = chart.annotations.indexOf(this.annotation),
|
|
351
|
+
chartOptions = chart.options.annotations[annotationIndex];
|
|
352
|
+
|
|
353
|
+
this.translatePoint(dx, dy, 0);
|
|
354
|
+
|
|
355
|
+
// Options stored in:
|
|
356
|
+
// - chart (for exporting)
|
|
357
|
+
// - current config (for redraws)
|
|
358
|
+
chartOptions[this.collection][this.index].point = this.options.point;
|
|
359
|
+
shapeOptions[this.collection][this.index].point = this.options.point;
|
|
360
|
+
},
|
|
361
|
+
|
|
334
362
|
/**
|
|
335
363
|
* Rotate a controllable.
|
|
336
364
|
*
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
* (c) 2009-2017 Highsoft, Black Label
|
|
1
|
+
/* *
|
|
3
2
|
*
|
|
4
|
-
*
|
|
5
|
-
|
|
3
|
+
* (c) 2009-2017 Highsoft, Black Label
|
|
4
|
+
*
|
|
5
|
+
* License: www.highcharts.com/license
|
|
6
|
+
*
|
|
7
|
+
* */
|
|
6
8
|
'use strict';
|
|
7
9
|
import H from '../parts/Globals.js';
|
|
8
10
|
import chartNavigationMixin from '../mixins/navigation.js';
|
|
@@ -218,13 +220,15 @@ extend(H.NavigationBindings.prototype, {
|
|
|
218
220
|
});
|
|
219
221
|
|
|
220
222
|
objectEach(options.events || {}, function (callback, eventName) {
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
223
|
+
if (H.isFunction(callback)) {
|
|
224
|
+
navigation.eventsToUnbind.push(
|
|
225
|
+
addEvent(
|
|
226
|
+
navigation,
|
|
227
|
+
eventName,
|
|
228
|
+
callback
|
|
229
|
+
)
|
|
230
|
+
);
|
|
231
|
+
}
|
|
228
232
|
});
|
|
229
233
|
|
|
230
234
|
navigation.eventsToUnbind.push(
|