| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610 | 
							- /**
 
-  * (c) 2009-2019 Highsoft AS
 
-  * Authors: Øystein Moseng, Torstein Hønsi, Jon A. Nygård
 
-  *
 
-  * License: www.highcharts.com/license
 
-  */
 
- /**
 
-  * Function callback to execute while series points are dragged. Return false to
 
-  * stop the default drag action.
 
-  *
 
-  * @callback Highcharts.SeriesPointDragCallbackFunction
 
-  *
 
-  * @param {Highcharts.Point} this
 
-  *        Point where the event occured.
 
-  *
 
-  * @param {Highcharts.SeriesPointDragEventObject} event
 
-  *        Event arguments.
 
-  */
 
- /**
 
-  * Contains common information for a drag event on series points.
 
-  *
 
-  * @interface Highcharts.SeriesPointDragEventObject
 
-  *//**
 
-  * New points during drag.
 
-  * @name Highcharts.SeriesPointDragEventObject#newPoints
 
-  * @type {Highcharts.Dictionary<Highcharts.SeriesPointDragPointObject>}
 
-  *//**
 
-  * Original data.
 
-  * @name Highcharts.SeriesPointDragEventObject#origin
 
-  * @type {object}
 
-  *//**
 
-  * Prevent default drag action.
 
-  * @name Highcharts.SeriesPointDragEventObject#preventDefault
 
-  * @type {Function}
 
-  *//**
 
-  * Target point that caused the event.
 
-  * @name Highcharts.SeriesPointDragEventObject#target
 
-  * @type {Highcharts.Point}
 
-  *//**
 
-  * Event type.
 
-  * @name Highcharts.SeriesPointDragEventObject#type
 
-  * @type {"drag"}
 
-  */
 
- /**
 
-  * Contains information about a dragged points new values.
 
-  *
 
-  * @interface Highcharts.SeriesPointDragPointObject
 
-  *//**
 
-  * New values.
 
-  * @name Highcharts.SeriesPointDragPointObject#newValues
 
-  * @type {Highcharts.Dictionary<number>}
 
-  *//**
 
-  * Dragged point.
 
-  * @name Highcharts.SeriesPointDragPointObject#point
 
-  * @type {Highcharts.Point}
 
-  */
 
- /**
 
-  * Function callback to execute when a series point is dragged.
 
-  *
 
-  * @callback Highcharts.SeriesPointDragStartCallbackFunction
 
-  *
 
-  * @param {Highcharts.Point} this
 
-  *        Point where the event occured.
 
-  *
 
-  * @param {Highcharts.SeriesPointDragStartEventObject} event
 
-  *        Event arguments.
 
-  */
 
- /**
 
-  * Contains common information for a drag event on series point.
 
-  *
 
-  * @interface Highcharts.SeriesPointDragStartEventObject
 
-  *
 
-  * @implements {global.MouseDownEvent}
 
-  *//**
 
-  * Data property being dragged.
 
-  * @name Highcharts.SeriesPointDragStartEventObject#updateProp
 
-  * @type {Highcharts.Dictionary<number>}
 
-  */
 
- /**
 
-  * Function callback to execute when series points are dropped.
 
-  *
 
-  * @callback Highcharts.SeriesPointDropCallbackFunction
 
-  *
 
-  * @param {Highcharts.Point} this
 
-  *        Point where the event occured.
 
-  *
 
-  * @param {Highcharts.SeriesPointDropEventObject} event
 
-  *        Event arguments.
 
-  */
 
- /**
 
-  * Contains common information for a drop event on series points.
 
-  *
 
-  * @interface Highcharts.SeriesPointDropEventObject
 
-  *//**
 
-  * New points after drop.
 
-  * @name Highcharts.SeriesPointDropEventObject#newPoints
 
-  * @type {Highcharts.Dictionary<Highcharts.SeriesPointDropPointObject>}
 
-  *//**
 
-  * Number of new points.
 
-  * @name Highcharts.SeriesPointDropEventObject#numNewPoints
 
-  * @type {number}
 
-  *//**
 
-  * Original data.
 
-  * @name Highcharts.SeriesPointDropEventObject#origin
 
-  * @type {object}
 
-  *//**
 
-  * Prevent default drop action.
 
-  * @name Highcharts.SeriesPointDropEventObject#preventDefault
 
-  * @type {Function}
 
-  *//**
 
-  * Target point that caused the event.
 
-  * @name Highcharts.SeriesPointDropEventObject#target
 
-  * @type {Highcharts.Point}
 
-  *//**
 
-  * Event type.
 
-  * @name Highcharts.SeriesPointDropEventObject#type
 
-  * @type {"drop"}
 
-  */
 
- /**
 
-  * Contains information about a dropped points new values.
 
-  *
 
-  * @interface Highcharts.SeriesPointDropPointObject
 
-  *//**
 
-  * New values.
 
-  * @name Highcharts.SeriesPointDropPointObject#newValues
 
-  * @type {Highcharts.Dictionary<number>}
 
-  *//**
 
-  * Dragged point.
 
-  * @name Highcharts.SeriesPointDropPointObject#point
 
-  * @type {Highcharts.Point}
 
-  */
 
- 'use strict';
 
- import H from '../parts/Globals.js';
 
- import '../parts/Utilities.js';
 
- var addEvent = H.addEvent,
 
-     objectEach = H.objectEach,
 
-     pick = H.pick,
 
-     merge = H.merge,
 
-     seriesTypes = H.seriesTypes;
 
- /**
 
-  * Flip a side property, used with resizeRect. If input side is "left", return
 
-  * "right" etc.
 
-  *
 
-  * @private
 
-  * @function flipResizeSide
 
-  *
 
-  * @param {string} side
 
-  *        Side prop to flip. Can be `left`, `right`, `top` or `bottom`.
 
-  *
 
-  * @return {"bottom"|"left"|"right"|"top"|undefined}
 
-  *         The flipped side.
 
-  */
 
- function flipResizeSide(side) {
 
-     return {
 
-         left: 'right',
 
-         right: 'left',
 
-         top: 'bottom',
 
-         bottom: 'top'
 
-     }[side];
 
- }
 
- /* @todo
 
- Add drag/drop support to specific data props for different series types.
 
- The dragDrop.draggableX/Y user options on series enable/disable all of these per
 
- irection unless they are specifically set in options using
 
- dragDrop.{optionName}. If the prop does not specify an optionName here, it can
 
- only be enabled/disabled by the user with draggableX/Y.
 
- Supported options for each prop:
 
-     optionName: User option in series.dragDrop that enables/disables
 
-         dragging this prop.
 
-     axis: Can be 'x' or 'y'. Whether this prop is linked to x or y axis.
 
-     move: Whether or not this prop should be updated when moving points.
 
-     resize: Whether or not to draw a drag handle and allow user to drag and
 
-         update this prop by itself.
 
-     beforeResize: Hook to perform tasks before a resize is made. Gets
 
-         the guide box, the new points values, and the point as args.
 
-     resizeSide: Which side of the guide box to resize when dragging the
 
-         handle. Can be "left", "right", "top", "bottom". Chart.inverted is
 
-         handled automatically. Can also be a function, taking the new point
 
-         values as parameter, as well as the point, and returning a string
 
-         with the side.
 
-     propValidate: Function that takes the prop value and the point as
 
-         arguments, and returns true if the prop value is valid, false if
 
-         not. It is used to prevent e.g. resizing "low" above "high".
 
-     handlePositioner: For resizeable props, return 0,0 in SVG plot coords of
 
-         where to place the dragHandle. Gets point as argument. Should return
 
-         object with x and y properties.
 
-     handleFormatter: For resizeable props, return the path of the drag
 
-         handle as an SVG path array. Gets the point as argument. The handle
 
-         is translated according to handlePositioner.
 
-     handleOptions: Options to merge with the default handle options.
 
-     TODO:
 
-     - It makes sense to have support for resizing the size of bubbles and
 
-         e.g variwide columns. This requires us to support dragging along a
 
-         z-axis, somehow computing a relative value from old to new pixel
 
-         size.
 
-     - Moving maps could be useful, although we would have to compute new
 
-         point.path values in order to do it properly (using SVG translate
 
-         is easier, but won't update the data).
 
- */
 
- // 90deg rotated column handle path, used in multiple series types
 
- var horizHandleFormatter = function (point) {
 
-     var shapeArgs = point.shapeArgs || point.graphic.getBBox(),
 
-         top = shapeArgs.r || 0, // Rounding of bar corners
 
-         bottom = shapeArgs.height - top,
 
-         centerY = shapeArgs.height / 2;
 
-     return [
 
-         // Top wick
 
-         'M', 0, top,
 
-         'L', 0, centerY - 5,
 
-         // Circle
 
-         'A', 1, 1, 0, 0, 0, 0, centerY + 5,
 
-         'A', 1, 1, 0, 0, 0, 0, centerY - 5,
 
-         // Bottom wick
 
-         'M', 0, centerY + 5,
 
-         'L', 0, bottom
 
-     ];
 
- };
 
- // Line series - only draggableX/Y, no drag handles
 
- var lineDragDropProps = seriesTypes.line.prototype.dragDropProps = {
 
-     x: {
 
-         axis: 'x',
 
-         move: true
 
-     },
 
-     y: {
 
-         axis: 'y',
 
-         move: true
 
-     }
 
- };
 
- // Flag series - same as line/scatter
 
- if (seriesTypes.flags) {
 
-     seriesTypes.flags.prototype.dragDropProps = lineDragDropProps;
 
- }
 
- // Column series - x can be moved, y can only be resized. Note extra
 
- // functionality for handling upside down columns (below threshold).
 
- var columnDragDropProps = seriesTypes.column.prototype.dragDropProps = {
 
-     x: {
 
-         axis: 'x',
 
-         move: true
 
-     },
 
-     y: {
 
-         axis: 'y',
 
-         move: false,
 
-         resize: true,
 
-         // Force guideBox start coordinates
 
-         beforeResize: function (guideBox, pointVals, point) {
 
-             // We need to ensure that guideBox always starts at threshold.
 
-             // We flip whether or not we update the top or bottom of the guide
 
-             // box at threshold, but if we drag the mouse fast, the top has not
 
-             // reached threshold before we cross over and update the bottom.
 
-             var threshold = point.series.translatedThreshold,
 
-                 y = guideBox.attr('y'),
 
-                 height,
 
-                 diff;
 
-             if (pointVals.y >= point.series.options.threshold || 0) {
 
-                 // Above threshold - always set height to hit the threshold
 
-                 height = guideBox.attr('height');
 
-                 diff = threshold ? threshold - (y + height) : 0;
 
-                 guideBox.attr({
 
-                     height: Math.max(0, Math.round(height + diff))
 
-                 });
 
-             } else {
 
-                 // Below - always set y to start at threshold
 
-                 guideBox.attr({
 
-                     y: Math.round(y + (threshold ? threshold - y : 0))
 
-                 });
 
-             }
 
-         },
 
-         // Flip the side of the resize handle if column is below threshold.
 
-         // Make sure we remove the handle on the other side.
 
-         resizeSide: function (pointVals, point) {
 
-             var chart = point.series.chart,
 
-                 dragHandles = chart.dragHandles,
 
-                 side = pointVals.y >= (point.series.options.threshold || 0) ?
 
-                     'top' : 'bottom',
 
-                 flipSide = flipResizeSide(side);
 
-             // Force remove handle on other side
 
-             if (dragHandles[flipSide]) {
 
-                 dragHandles[flipSide].destroy();
 
-                 delete dragHandles[flipSide];
 
-             }
 
-             return side;
 
-         },
 
-         // Position handle at bottom if column is below threshold
 
-         handlePositioner: function (point) {
 
-             var bBox = point.shapeArgs || point.graphic.getBBox();
 
-             return {
 
-                 x: bBox.x,
 
-                 y: point.y >= (point.series.options.threshold || 0) ?
 
-                     bBox.y : bBox.y + bBox.height
 
-             };
 
-         },
 
-         // Horizontal handle
 
-         handleFormatter: function (point) {
 
-             var shapeArgs = point.shapeArgs,
 
-                 radius = shapeArgs.r || 0, // Rounding of bar corners
 
-                 centerX = shapeArgs.width / 2;
 
-             return [
 
-                 // Left wick
 
-                 'M', radius, 0,
 
-                 'L', centerX - 5, 0,
 
-                 // Circle
 
-                 'A', 1, 1, 0, 0, 0, centerX + 5, 0,
 
-                 'A', 1, 1, 0, 0, 0, centerX - 5, 0,
 
-                 // Right wick
 
-                 'M', centerX + 5, 0,
 
-                 'L', shapeArgs.width - radius, 0
 
-             ];
 
-         }
 
-     }
 
- };
 
- // Bullet graph, x/y same as column, but also allow target to be dragged.
 
- if (seriesTypes.bullet) {
 
-     seriesTypes.bullet.prototype.dragDropProps = {
 
-         x: columnDragDropProps.x,
 
-         y: columnDragDropProps.y,
 
-         /**
 
-          * Allow target value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.bullet.dragDrop.draggableTarget
 
-          */
 
-         target: {
 
-             optionName: 'draggableTarget',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 var bBox = point.targetGraphic.getBBox();
 
-                 return {
 
-                     x: point.barX,
 
-                     y: bBox.y + bBox.height / 2
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter
 
-         }
 
-     };
 
- }
 
- // Columnrange series - move x, resize or move low/high
 
- if (seriesTypes.columnrange) {
 
-     seriesTypes.columnrange.prototype.dragDropProps = {
 
-         x: {
 
-             axis: 'x',
 
-             move: true
 
-         },
 
-         /**
 
-          * Allow low value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.columnrange.dragDrop.draggableLow
 
-          */
 
-         low: {
 
-             optionName: 'draggableLow',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'bottom',
 
-             handlePositioner: function (point) {
 
-                 var bBox = point.shapeArgs || point.graphic.getBBox();
 
-                 return {
 
-                     x: bBox.x,
 
-                     y: bBox.y + bBox.height
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.high;
 
-             }
 
-         },
 
-         /**
 
-          * Allow high value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.columnrange.dragDrop.draggableHigh
 
-          */
 
-         high: {
 
-             optionName: 'draggableHigh',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 var bBox = point.shapeArgs || point.graphic.getBBox();
 
-                 return {
 
-                     x: bBox.x,
 
-                     y: bBox.y
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val >= point.low;
 
-             }
 
-         }
 
-     };
 
- }
 
- // Boxplot series - move x, resize or move low/q1/q3/high
 
- if (seriesTypes.boxplot) {
 
-     seriesTypes.boxplot.prototype.dragDropProps = {
 
-         x: columnDragDropProps.x,
 
-         /**
 
-          * Allow low value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.boxplot.dragDrop.draggableLow
 
-          */
 
-         low: {
 
-             optionName: 'draggableLow',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'bottom',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.lowPlot
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.q1;
 
-             }
 
-         },
 
-         /**
 
-          * Allow Q1 value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.boxplot.dragDrop.draggableQ1
 
-          */
 
-         q1: {
 
-             optionName: 'draggableQ1',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'bottom',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.q1Plot
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.median && val >= point.low;
 
-             }
 
-         },
 
-         median: {
 
-             // Median can not be dragged individually, just move the whole
 
-             // point for this.
 
-             axis: 'y',
 
-             move: true
 
-         },
 
-         /**
 
-          * Allow Q3 value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.boxplot.dragDrop.draggableQ3
 
-          */
 
-         q3: {
 
-             optionName: 'draggableQ3',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.q3Plot
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.high && val >= point.median;
 
-             }
 
-         },
 
-         /**
 
-          * Allow high value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.boxplot.dragDrop.draggableHigh
 
-          */
 
-         high: {
 
-             optionName: 'draggableHigh',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.highPlot
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val >= point.q3;
 
-             }
 
-         }
 
-     };
 
- }
 
- // OHLC series - move x, resize or move open/high/low/close
 
- if (seriesTypes.ohlc) {
 
-     seriesTypes.ohlc.prototype.dragDropProps = {
 
-         x: columnDragDropProps.x,
 
-         /**
 
-          * Allow low value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.ohlc.dragDrop.draggableLow
 
-          */
 
-         low: {
 
-             optionName: 'draggableLow',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'bottom',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.plotLow
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.open && val <= point.close;
 
-             }
 
-         },
 
-         /**
 
-          * Allow high value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.ohlc.dragDrop.draggableHigh
 
-          */
 
-         high: {
 
-             optionName: 'draggableHigh',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.plotHigh
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val >= point.open && val >= point.close;
 
-             }
 
-         },
 
-         /**
 
-          * Allow open value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.ohlc.dragDrop.draggableOpen
 
-          */
 
-         open: {
 
-             optionName: 'draggableOpen',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: function (point) {
 
-                 return point.open >= point.close ? 'top' : 'bottom';
 
-             },
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.plotOpen
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.high && val >= point.low;
 
-             }
 
-         },
 
-         /**
 
-          * Allow close value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.ohlc.dragDrop.draggableClose
 
-          */
 
-         close: {
 
-             optionName: 'draggableClose',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: function (point) {
 
-                 return point.open >= point.close ? 'bottom' : 'top';
 
-             },
 
-             handlePositioner: function (point) {
 
-                 return {
 
-                     x: point.shapeArgs.x,
 
-                     y: point.plotClose
 
-                 };
 
-             },
 
-             handleFormatter: columnDragDropProps.y.handleFormatter,
 
-             propValidate: function (val, point) {
 
-                 return val <= point.high && val >= point.low;
 
-             }
 
-         }
 
-     };
 
- }
 
- // Arearange series - move x, resize or move low/high
 
- if (seriesTypes.arearange) {
 
-     var columnrangeDragDropProps = seriesTypes.columnrange
 
-             .prototype.dragDropProps,
 
-         // Use a circle covering the marker as drag handle
 
-         arearangeHandleFormatter = function (point) {
 
-             var radius = point.graphic ?
 
-                 point.graphic.getBBox().width / 2 + 1 :
 
-                 4;
 
-             return [
 
-                 'M', 0 - radius, 0,
 
-                 'a', radius, radius, 0, 1, 0, radius * 2, 0,
 
-                 'a', radius, radius, 0, 1, 0, radius * -2, 0
 
-             ];
 
-         };
 
-     seriesTypes.arearange.prototype.dragDropProps = {
 
-         x: columnrangeDragDropProps.x,
 
-         /**
 
-          * Allow low value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.arearange.dragDrop.draggableLow
 
-          */
 
-         low: {
 
-             optionName: 'draggableLow',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'bottom',
 
-             handlePositioner: function (point) {
 
-                 var bBox = point.lowerGraphic && point.lowerGraphic.getBBox();
 
-                 return bBox ? {
 
-                     x: bBox.x + bBox.width / 2,
 
-                     y: bBox.y + bBox.height / 2
 
-                 } : { x: -999, y: -999 };
 
-             },
 
-             handleFormatter: arearangeHandleFormatter,
 
-             propValidate: columnrangeDragDropProps.low.propValidate
 
-         },
 
-         /**
 
-          * Allow high value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.arearange.dragDrop.draggableHigh
 
-          */
 
-         high: {
 
-             optionName: 'draggableHigh',
 
-             axis: 'y',
 
-             move: true,
 
-             resize: true,
 
-             resizeSide: 'top',
 
-             handlePositioner: function (point) {
 
-                 var bBox = point.upperGraphic && point.upperGraphic.getBBox();
 
-                 return bBox ? {
 
-                     x: bBox.x + bBox.width / 2,
 
-                     y: bBox.y + bBox.height / 2
 
-                 } : { x: -999, y: -999 };
 
-             },
 
-             handleFormatter: arearangeHandleFormatter,
 
-             propValidate: columnrangeDragDropProps.high.propValidate
 
-         }
 
-     };
 
- }
 
- // Waterfall - mostly as column, but don't show drag handles for sum points
 
- if (seriesTypes.waterfall) {
 
-     seriesTypes.waterfall.prototype.dragDropProps = {
 
-         x: columnDragDropProps.x,
 
-         y: merge(columnDragDropProps.y, {
 
-             handleFormatter: function (point) {
 
-                 return point.isSum || point.isIntermediateSum ? null :
 
-                     columnDragDropProps.y.handleFormatter(point);
 
-             }
 
-         })
 
-     };
 
- }
 
- // Xrange - resize/move x/x2, and move y
 
- if (seriesTypes.xrange) {
 
-     // Handle positioner logic is the same for x and x2 apart from the
 
-     // x value. shapeArgs does not take yAxis reversed etc into account, so we
 
-     // use axis.toPixels to handle positioning.
 
-     var xrangeHandlePositioner = function (point, xProp) {
 
-             var series = point.series,
 
-                 xAxis = series.xAxis,
 
-                 yAxis = series.yAxis,
 
-                 inverted = series.chart.inverted,
 
-                 // Using toPixels handles axis.reversed, but doesn't take
 
-                 // chart.inverted into account.
 
-                 newX = xAxis.toPixels(point[xProp], true),
 
-                 newY = yAxis.toPixels(point.y, true);
 
-             // Handle chart inverted
 
-             if (inverted) {
 
-                 newX = xAxis.len - newX;
 
-                 newY = yAxis.len - newY -
 
-                     point.shapeArgs.height / 2;
 
-             } else {
 
-                 newY -= point.shapeArgs.height / 2;
 
-             }
 
-             return {
 
-                 x: Math.round(newX),
 
-                 y: Math.round(newY)
 
-             };
 
-         },
 
-         xrangeDragDropProps = seriesTypes.xrange.prototype.dragDropProps = {
 
-             y: {
 
-                 axis: 'y',
 
-                 move: true
 
-             },
 
-             /**
 
-              * Allow x value to be dragged individually. Requires
 
-              * `draggable-points` module.
 
-              *
 
-              * @type      {boolean}
 
-              * @default   true
 
-              * @apioption plotOptions.xrange.dragDrop.draggableX1
 
-              */
 
-             x: {
 
-                 optionName: 'draggableX1',
 
-                 axis: 'x',
 
-                 move: true,
 
-                 resize: true,
 
-                 resizeSide: 'left',
 
-                 handlePositioner: function (point) {
 
-                     return xrangeHandlePositioner(point, 'x');
 
-                 },
 
-                 handleFormatter: horizHandleFormatter,
 
-                 propValidate: function (val, point) {
 
-                     return val <= point.x2;
 
-                 }
 
-             },
 
-             /**
 
-              * Allow x2 value to be dragged individually. Requires
 
-              * `draggable-points` module.
 
-              *
 
-              * @type      {boolean}
 
-              * @default   true
 
-              * @apioption plotOptions.xrange.dragDrop.draggableX2
 
-              */
 
-             x2: {
 
-                 optionName: 'draggableX2',
 
-                 axis: 'x',
 
-                 move: true,
 
-                 resize: true,
 
-                 resizeSide: 'right',
 
-                 handlePositioner: function (point) {
 
-                     return xrangeHandlePositioner(point, 'x2');
 
-                 },
 
-                 handleFormatter: horizHandleFormatter,
 
-                 propValidate: function (val, point) {
 
-                     return val >= point.x;
 
-                 }
 
-             }
 
-         };
 
- }
 
- // Gantt - same as xrange, but with aliases
 
- if (seriesTypes.gantt) {
 
-     seriesTypes.gantt.prototype.dragDropProps = {
 
-         y: xrangeDragDropProps.y,
 
-         /**
 
-          * Allow start value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.gantt.dragDrop.draggableStart
 
-          */
 
-         start: merge(xrangeDragDropProps.x, {
 
-             optionName: 'draggableStart',
 
-             // Do not allow individual drag handles for milestones
 
-             validateIndividualDrag: function (point) {
 
-                 return !point.milestone;
 
-             }
 
-         }),
 
-         /**
 
-          * Allow end value to be dragged individually. Requires
 
-          * `draggable-points` module.
 
-          *
 
-          * @type      {boolean}
 
-          * @default   true
 
-          * @apioption plotOptions.gantt.dragDrop.draggableEnd
 
-          */
 
-         end: merge(xrangeDragDropProps.x2, {
 
-             optionName: 'draggableEnd',
 
-             // Do not allow individual drag handles for milestones
 
-             validateIndividualDrag: function (point) {
 
-                 return !point.milestone;
 
-             }
 
-         })
 
-     };
 
- }
 
- // Don't support certain series types
 
- [
 
-     'gauge',
 
-     'pie',
 
-     'sunburst',
 
-     'wordcloud',
 
-     'sankey',
 
-     'histogram',
 
-     'pareto',
 
-     'vector',
 
-     'windbarb',
 
-     'treemap',
 
-     'bellcurve',
 
-     'sma',
 
-     'map',
 
-     'mapline'
 
- ].forEach(
 
-     function (type) {
 
-         if (seriesTypes[type]) {
 
-             seriesTypes[type].prototype.dragDropProps = null;
 
-         }
 
-     }
 
- );
 
- /**
 
-  * The draggable-points module allows points to be moved around or modified in
 
-  * the chart. In addition to the options mentioned under the `dragDrop` API
 
-  * structure, the module fires three events,
 
-  * [point.dragStart](plotOptions.series.point.events.dragStart),
 
-  * [point.drag](plotOptions.series.point.events.drag) and
 
-  * [point.drop](plotOptions.series.point.events.drop).
 
-  *
 
-  * It requires the `modules/draggable-points.js` file to be loaded.
 
-  *
 
-  * @sample highcharts/dragdrop/resize-column
 
-  *         Draggable column and line series
 
-  * @sample highcharts/dragdrop/bar-series
 
-  *         Draggable bar
 
-  * @sample highcharts/dragdrop/drag-bubble
 
-  *         Draggable bubbles
 
-  * @sample highcharts/dragdrop/drag-xrange
 
-  *         Draggable X range series
 
-  *
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop
 
-  */
 
- /**
 
-  * The amount of pixels to drag the pointer before it counts as a drag
 
-  * operation. This prevents drag/drop to fire when just clicking or selecting
 
-  * points.
 
-  *
 
-  * @type      {number}
 
-  * @default   2
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragSensitivity
 
-  */
 
- var defaultDragSensitivity = 2;
 
- /**
 
-  * Style options for the guide box. The guide box has one state by default, the
 
-  * `default` state.
 
-  *
 
-  * @type         {Highcharts.Dictionary<Highcharts.PlotSeriesDragDropGuideBoxDefaultOptions>}
 
-  * @since        6.2.0
 
-  * @optionparent plotOptions.series.dragDrop.guideBox
 
-  */
 
- var defaultGuideBoxOptions = {
 
-     /**
 
-      * Style options for the guide box default state.
 
-      *
 
-      * @since 6.2.0
 
-      */
 
-     'default': {
 
-         /**
 
-          * CSS class name of the guide box in this state. Defaults to
 
-          * `highcharts-drag-box-default`.
 
-          *
 
-          * @since 6.2.0
 
-          */
 
-         className: 'highcharts-drag-box-default',
 
-         /**
 
-          * Width of the line around the guide box.
 
-          *
 
-          * @since 6.2.0
 
-          */
 
-         lineWidth: 1,
 
-         /**
 
-          * Color of the border around the guide box.
 
-          *
 
-          * @type  {Highcharts.ColorString}
 
-          * @since 6.2.0
 
-          */
 
-         lineColor: '#888',
 
-         /**
 
-          * Guide box fill color.
 
-          *
 
-          * @type  {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
 
-          * @since 6.2.0
 
-          */
 
-         color: 'rgba(0, 0, 0, 0.1)',
 
-         /**
 
-          * Guide box cursor.
 
-          *
 
-          * @since 6.2.0
 
-          */
 
-         cursor: 'move',
 
-         /**
 
-          * Guide box zIndex.
 
-          *
 
-          * @since 6.2.0
 
-          */
 
-         zIndex: 900
 
-     }
 
- };
 
- /**
 
-  * Options for the drag handles.
 
-  *
 
-  * @since        6.2.0
 
-  * @optionparent plotOptions.series.dragDrop.dragHandle
 
-  */
 
- var defaultDragHandleOptions = {
 
-     /**
 
-      * Function to define the SVG path to use for the drag handles. Takes the
 
-      * point as argument. Should return an SVG path in array format. The SVG
 
-      * path is automatically positioned on the point.
 
-      *
 
-      * @type      {Function}
 
-      * @since     6.2.0
 
-      * @apioption plotOptions.series.dragDrop.dragHandle.pathFormatter
 
-      */
 
-     // pathFormatter: null,
 
-     /**
 
-      * The mouse cursor to use for the drag handles. By default this is
 
-      * intelligently switching between `ew-resize` and `ns-resize` depending on
 
-      * the direction the point is being dragged.
 
-      *
 
-      * @type      {string}
 
-      * @since     6.2.0
 
-      * @apioption plotOptions.series.dragDrop.dragHandle.cursor
 
-      */
 
-     // cursor: null,
 
-     /**
 
-      * The class name of the drag handles. Defaults to `highcharts-drag-handle`.
 
-      *
 
-      * @since 6.2.0
 
-      */
 
-     className: 'highcharts-drag-handle',
 
-     /**
 
-      * The fill color of the drag handles.
 
-      *
 
-      * @type  {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
 
-      * @since 6.2.0
 
-      */
 
-     color: '#fff',
 
-     /**
 
-      * The line color of the drag handles.
 
-      *
 
-      * @type  {Highcharts.ColorString}
 
-      * @since 6.2.0
 
-      */
 
-     lineColor: 'rgba(0, 0, 0, 0.6)',
 
-     /**
 
-      * The line width for the drag handles.
 
-      *
 
-      * @since 6.2.0
 
-      */
 
-     lineWidth: 1,
 
-     /**
 
-      * The z index for the drag handles.
 
-      *
 
-      * @since 6.2.0
 
-      */
 
-     zIndex: 901
 
- };
 
- /**
 
-  * Set the minimum X value the points can be moved to.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         Limit dragging
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Limit dragging
 
-  *
 
-  * @type      {number}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragMinX
 
-  */
 
- /**
 
-  * Set the maximum X value the points can be moved to.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         Limit dragging
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Limit dragging
 
-  *
 
-  * @type      {number}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragMaxX
 
-  */
 
- /**
 
-  * Set the minimum Y value the points can be moved to.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         Limit dragging
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Limit dragging
 
-  *
 
-  * @type      {number}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragMinY
 
-  */
 
- /**
 
-  * Set the maximum Y value the points can be moved to.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         Limit dragging
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Limit dragging
 
-  *
 
-  * @type      {number}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragMaxY
 
-  */
 
- /**
 
-  * The X precision value to drag to for this series. Set to 0 to disable. By
 
-  * default this is disabled, except for category axes, where the default is 1.
 
-  *
 
-  * @type      {number}
 
-  * @default   0
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragPrecisionX
 
-  */
 
- /**
 
-  * The Y precision value to drag to for this series. Set to 0 to disable. By
 
-  * default this is disabled, except for category axes, where the default is 1.
 
-  *
 
-  * @type      {number}
 
-  * @default   0
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.dragPrecisionY
 
-  */
 
- /**
 
-  * Enable dragging in the X dimension.
 
-  *
 
-  * @type      {boolean}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.draggableX
 
-  */
 
- /**
 
-  * Enable dragging in the Y dimension. Note that this is not supported for
 
-  * TreeGrid axes (the default axis type in Gantt charts).
 
-  *
 
-  * @type      {boolean}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.draggableY
 
-  */
 
- /**
 
-  * Group the points by a property. Points with the same property value will be
 
-  * grouped together when moving.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         Drag grouped points
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Drag grouped points
 
-  *
 
-  * @type      {string}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.groupBy
 
-  */
 
- /**
 
-  * Update points as they are dragged. If false, a guide box is drawn to
 
-  * illustrate the new point size.
 
-  *
 
-  * @sample {gantt} gantt/dragdrop/drag-gantt
 
-  *         liveRedraw disabled
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         liveRedraw disabled
 
-  *
 
-  * @type      {boolean}
 
-  * @default   true
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.dragDrop.liveRedraw
 
-  */
 
- /**
 
-  * Set a key to hold when dragging to zoom the chart. Requires the
 
-  * draggable-points module. This is useful to avoid zooming while moving points.
 
-  * Should be set different than [chart.panKey](#chart.panKey).
 
-  *
 
-  * @type       {string}
 
-  * @since      6.2.0
 
-  * @validvalue ["alt", "ctrl", "meta", "shift"]
 
-  * @apioption  chart.zoomKey
 
-  */
 
- /**
 
-  * Callback that fires when starting to drag a point. The mouse event object is
 
-  * passed in as an argument. If a drag handle is used, `e.updateProp` is set to
 
-  * the data property being dragged. The `this` context is the point. See
 
-  * [drag and drop options](plotOptions.series.dragDrop).
 
-  *
 
-  * Requires the `draggable-points` module.
 
-  *
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Drag events
 
-  *
 
-  * @type      {Highcharts.SeriesPointDragStartCallbackFunction}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.point.events.dragStart
 
-  */
 
- /**
 
-  * Callback that fires while dragging a point. The mouse event is passed in as
 
-  * parameter. The original data can be accessed from `e.origin`, and the new
 
-  * point values can be accessed from `e.newPoints`. If there is only a single
 
-  * point being updated, it can be accessed from `e.newPoint` for simplicity, and
 
-  * its ID can be accessed from `e.newPointId`. The `this` context is the point
 
-  * being dragged. To stop the default drag action, return false. See
 
-  * [drag and drop options](plotOptions.series.dragDrop).
 
-  *
 
-  * Requires the `draggable-points` module.
 
-  *
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Drag events
 
-  *
 
-  * @type      {Highcharts.SeriesPointDragCallbackFunction}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.point.events.drag
 
-  */
 
- /**
 
-  * Callback that fires when the point is dropped. The parameters passed are the
 
-  * same as for [drag](#plotOptions.series.point.events.drag). To stop the
 
-  * default drop action, return false. See
 
-  * [drag and drop options](plotOptions.series.dragDrop).
 
-  *
 
-  * Requires the `draggable-points` module.
 
-  *
 
-  * @sample {highcharts} highcharts/dragdrop/drag-xrange
 
-  *         Drag events
 
-  *
 
-  * @type      {Highcharts.SeriesPointDropCallbackFunction}
 
-  * @since     6.2.0
 
-  * @apioption plotOptions.series.point.events.drop
 
-  */
 
- /**
 
-  * Point specific options for the draggable-points module. Overrides options on
 
-  * `series.dragDrop`.
 
-  *
 
-  * Requires the `draggable-points` module.
 
-  *
 
-  * @extends   plotOptions.series.dragDrop
 
-  * @since     6.2.0
 
-  * @apioption series.line.data.dragDrop
 
-  */
 
- /**
 
-  * Utility function to test if a series is using drag/drop, looking at its
 
-  * options.
 
-  *
 
-  * @private
 
-  * @function isSeriesDraggable
 
-  *
 
-  * @param {Highcharts.Series} series
 
-  *        The series to test.
 
-  *
 
-  * @return {boolean}
 
-  *         True if the series is using drag/drop.
 
-  */
 
- function isSeriesDraggable(series) {
 
-     var props = ['draggableX', 'draggableY'],
 
-         i;
 
-     // Add optionNames from dragDropProps to the array of props to check for
 
-     objectEach(series.dragDropProps, function (val) {
 
-         if (val.optionName) {
 
-             props.push(val.optionName);
 
-         }
 
-     });
 
-     // Loop over all options we have that could enable dragDrop for this
 
-     // series. If any of them are truthy, this series is draggable.
 
-     i = props.length;
 
-     while (i--) {
 
-         if (series.options.dragDrop[props[i]]) {
 
-             return true;
 
-         }
 
-     }
 
- }
 
- /**
 
-  * Utility function to test if a chart should have drag/drop enabled, looking at
 
-  * its options.
 
-  *
 
-  * @private
 
-  * @function isChartDraggable
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        The chart to test.
 
-  *
 
-  * @return {boolean}
 
-  *         True if the chart is drag/droppable.
 
-  */
 
- function isChartDraggable(chart) {
 
-     var i = chart.series ? chart.series.length : 0;
 
-     if (chart.hasCartesianSeries && !chart.polar) {
 
-         while (i--) {
 
-             if (
 
-                 chart.series[i].options.dragDrop &&
 
-                 isSeriesDraggable(chart.series[i])
 
-             ) {
 
-                 return true;
 
-             }
 
-         }
 
-     }
 
- }
 
- /**
 
-  * Utility function to test if a point is movable (any of its props can be
 
-  * dragged by a move, not just individually).
 
-  *
 
-  * @private
 
-  * @function isPointMovable
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point to test.
 
-  *
 
-  * @return {boolean}
 
-  *         True if the point is movable.
 
-  */
 
- function isPointMovable(point) {
 
-     var series = point.series,
 
-         seriesDragDropOptions = series.options.dragDrop || {},
 
-         pointDragDropOptions = point.options && point.options.dragDrop,
 
-         updateProps = series.dragDropProps,
 
-         hasMovableX,
 
-         hasMovableY;
 
-     objectEach(updateProps, function (p) {
 
-         if (p.axis === 'x' && p.move) {
 
-             hasMovableX = true;
 
-         } else if (p.axis === 'y' && p.move) {
 
-             hasMovableY = true;
 
-         }
 
-     });
 
-     // We can only move the point if draggableX/Y is set, even if all the
 
-     // individual prop options are set.
 
-     return (
 
-         seriesDragDropOptions.draggableX && hasMovableX ||
 
-             seriesDragDropOptions.draggableY && hasMovableY
 
-     ) &&
 
-         !(
 
-             pointDragDropOptions &&
 
-             pointDragDropOptions.draggableX === false &&
 
-             pointDragDropOptions.draggableY === false
 
-         ) &&
 
-         series.yAxis &&
 
-         series.xAxis;
 
- }
 
- /**
 
-  * Take a mouse/touch event and return the event object with chartX/chartY.
 
-  *
 
-  * @private
 
-  * @function getNormalizedEvent
 
-  *
 
-  * @param {global.Event} e
 
-  *        The event to normalize.
 
-  *
 
-  * @return {global.Event}
 
-  *         The normalized event.
 
-  */
 
- function getNormalizedEvent(e, chart) {
 
-     return e.chartX === undefined || e.chartY === undefined ?
 
-         chart.pointer.normalize(e) : e;
 
- }
 
- /**
 
-  * Add multiple event listeners with the same handler to the same element.
 
-  *
 
-  * @private
 
-  * @function addEvents
 
-  *
 
-  * @param {*} el
 
-  *        The element or object to add listeners to.
 
-  *
 
-  * @param {Array<string>} types
 
-  *        Array with the event types this handler should apply to.
 
-  *
 
-  * @param {Highcharts.EventCallbackFunction} fn
 
-  *        The function callback to execute when the events are fired.
 
-  *
 
-  * @param {Highcharts.Dictionary<*>} options
 
-  *        Event options
 
-  *
 
-  * @param {number} options.order
 
-  *        The order the event handler should be called. This opens for having
 
-  *        one handler be called before another, independent of in which order
 
-  *        they were added.
 
-  *
 
-  * @return {Function}
 
-  *         A callback function to remove the added events.
 
-  */
 
- function addEvents(el, types, fn, options) {
 
-     var removeFuncs = types.map(function (type) {
 
-         return addEvent(el, type, fn, options);
 
-     });
 
-     return function () {
 
-         removeFuncs.forEach(function (fn) {
 
-             fn();
 
-         });
 
-     };
 
- }
 
- /**
 
-  * In mousemove events, check that we have dragged mouse further than the
 
-  * dragSensitivity before we call mouseMove handler.
 
-  *
 
-  * @private
 
-  * @function hasDraggedPastSensitivity
 
-  *
 
-  * @param {global.Event} e
 
-  *        Mouse move event to test.
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        Chart that has started dragging.
 
-  *
 
-  * @param {number} sensitivity
 
-  *        Pixel sensitivity to test against.
 
-  *
 
-  * @return {boolean}
 
-  *         True if the event is moved past sensitivity relative to the chart's
 
-  *         drag origin.
 
-  */
 
- function hasDraggedPastSensitivity(e, chart, sensitivity) {
 
-     var orig = chart.dragDropData.origin,
 
-         oldX = orig.chartX,
 
-         oldY = orig.chartY,
 
-         newX = e.chartX,
 
-         newY = e.chartY,
 
-         distance = Math.sqrt(
 
-             (newX - oldX) * (newX - oldX) +
 
-             (newY - oldY) * (newY - oldY)
 
-         );
 
-     return distance > sensitivity;
 
- }
 
- /**
 
-  * Get a snapshot of points, mouse position, and guide box dimensions
 
-  *
 
-  * @private
 
-  * @function getPositionSnapshot
 
-  *
 
-  * @param {global.Event} e
 
-  *        Mouse event with mouse position to snapshot.
 
-  *
 
-  * @param {Array<Highcharts.Point>} points
 
-  *        Points to take snapshot of. We store the value of the data properties
 
-  *        defined in each series' dragDropProps.
 
-  *
 
-  * @param {Highcharts.SVGElement} [guideBox]
 
-  *        The guide box to take snapshot of.
 
-  *
 
-  * @return {object}
 
-  *         Snapshot object. Point properties are placed in a hashmap with IDs as
 
-  *         keys.
 
-  */
 
- function getPositionSnapshot(e, points, guideBox) {
 
-     var res = {
 
-         chartX: e.chartX,
 
-         chartY: e.chartY,
 
-         guideBox: guideBox && {
 
-             x: guideBox.attr('x'),
 
-             y: guideBox.attr('y'),
 
-             width: guideBox.attr('width'),
 
-             height: guideBox.attr('height')
 
-         },
 
-         points: {}
 
-     };
 
-     // Loop over the points and add their props
 
-     points.forEach(function (point) {
 
-         var pointProps = {};
 
-         // Add all of the props defined in the series' dragDropProps to the
 
-         // snapshot
 
-         objectEach(point.series.dragDropProps, function (val, key) {
 
-             pointProps[key] = point[key];
 
-         });
 
-         pointProps.point = point; // Store reference to point
 
-         res.points[point.id] = pointProps;
 
-     });
 
-     return res;
 
- }
 
- /**
 
-  * Get a list of points that are grouped with this point. If only one point is
 
-  * in the group, that point is returned by itself in an array.
 
-  *
 
-  * @private
 
-  * @function getGroupedPoints
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        Point to find group from.
 
-  *
 
-  * @return {Array<Highcharts.Point>}
 
-  *         Array of points in this group.
 
-  */
 
- function getGroupedPoints(point) {
 
-     var series = point.series,
 
-         groupKey = series.options.dragDrop.groupBy;
 
-     return point.options[groupKey] ?
 
-         // If we have a grouping option, filter the points by that
 
-         series.points.filter(function (comparePoint) {
 
-             return comparePoint.options[groupKey] === point.options[groupKey];
 
-         }) :
 
-         // Otherwise return the point by itself only
 
-         [point];
 
- }
 
- /**
 
-  * Resize a rect element on one side. The element is modified.
 
-  *
 
-  * @private
 
-  * @function resizeRect
 
-  *
 
-  * @param {Highcharts.SVGElement} rect
 
-  *        Rect element to resize.
 
-  *
 
-  * @param {string} updateSide
 
-  *        Which side of the rect to update. Can be `left`, `right`, `top` or
 
-  *        `bottom`.
 
-  *
 
-  * @param {object} update
 
-  *        Object with x and y properties, detailing how much to resize each
 
-  *        dimension.
 
-  *
 
-  * @return {Highcharts.SVGElement}
 
-  *         The modified rect.
 
-  */
 
- function resizeRect(rect, updateSide, update) {
 
-     var resizeAttrs;
 
-     switch (updateSide) {
 
-     case 'left':
 
-         resizeAttrs = {
 
-             x: rect.attr('x') + update.x,
 
-             width: Math.max(1, rect.attr('width') - update.x)
 
-         };
 
-         break;
 
-     case 'right':
 
-         resizeAttrs = {
 
-             width: Math.max(1, rect.attr('width') + update.x)
 
-         };
 
-         break;
 
-     case 'top':
 
-         resizeAttrs = {
 
-             y: rect.attr('y') + update.y,
 
-             height: Math.max(1, rect.attr('height') - update.y)
 
-         };
 
-         break;
 
-     case 'bottom':
 
-         resizeAttrs = {
 
-             height: Math.max(1, rect.attr('height') + update.y)
 
-         };
 
-         break;
 
-     default:
 
-     }
 
-     rect.attr(resizeAttrs);
 
- }
 
- /**
 
-  * Prepare chart.dragDropData with origin info, and show the guide box.
 
-  *
 
-  * @private
 
-  * @function initDragDrop
 
-  *
 
-  * @param {global.Event} e
 
-  *        Mouse event with original mouse position.
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point the dragging started on.
 
-  */
 
- function initDragDrop(e, point) {
 
-     var groupedPoints = getGroupedPoints(point),
 
-         series = point.series,
 
-         chart = series.chart,
 
-         guideBox;
 
-     // If liveRedraw is disabled, show the guide box with the default state
 
-     if (!pick(
 
-         series.options.dragDrop && series.options.dragDrop.liveRedraw,
 
-         true
 
-     )) {
 
-         chart.dragGuideBox = guideBox = series.getGuideBox(groupedPoints);
 
-         chart.setGuideBoxState('default', series.options.dragDrop.guideBox)
 
-             .add(series.group);
 
-     }
 
-     // Store some data on the chart to pick up later
 
-     chart.dragDropData = {
 
-         origin: getPositionSnapshot(e, groupedPoints, guideBox),
 
-         point: point,
 
-         groupedPoints: groupedPoints,
 
-         isDragging: true
 
-     };
 
- }
 
- /**
 
-  * Calculate new point options from points being dragged.
 
-  *
 
-  * @private
 
-  * @function getNewPoints
 
-  *
 
-  * @param {object} dragDropData
 
-  *        A chart's dragDropData with drag/drop origin information, and info on
 
-  *        which points are being dragged.
 
-  *
 
-  * @param {global.Event} newPos
 
-  *        Event with the new position of the mouse (chartX/Y properties).
 
-  *
 
-  * @return {Array<object>}
 
-  *         Hashmap with point.id mapped to an object with the original point
 
-  *         reference, as well as the new data values.
 
-  */
 
- function getNewPoints(dragDropData, newPos) {
 
-     var point = dragDropData.point,
 
-         series = point.series,
 
-         options = merge(series.options.dragDrop, point.options.dragDrop),
 
-         updateProps = {},
 
-         resizeProp = dragDropData.updateProp,
 
-         hashmap = {};
 
-     // Go through the data props that can be updated on this series and find out
 
-     // which ones we want to update.
 
-     objectEach(point.series.dragDropProps, function (val, key) {
 
-         // If we are resizing, skip if this key is not the correct one or it
 
-         // is not resizable.
 
-         if (
 
-             resizeProp && (
 
-                 resizeProp !== key ||
 
-                 !val.resize ||
 
-                 val.optionName && options[val.optionName] === false
 
-             )
 
-         ) {
 
-             return;
 
-         }
 
-         // If we are resizing, we now know it is good. If we are moving, check
 
-         // that moving along this axis is enabled, and the prop is movable.
 
-         // If this prop is enabled, add it to be updated.
 
-         if (
 
-             resizeProp || (
 
-                 val.move &&
 
-                 (
 
-                     val.axis === 'x' && options.draggableX ||
 
-                     val.axis === 'y' && options.draggableY
 
-                 )
 
-             )
 
-         ) {
 
-             updateProps[key] = val;
 
-         }
 
-     });
 
-     // Go through the points to be updated and get new options for each of them
 
-     (resizeProp ? // If resizing).forEach(only update the point we are resizing
 
-         [point] :
 
-         dragDropData.groupedPoints).forEach(
 
-         function (p) {
 
-             hashmap[p.id] = {
 
-                 point: p,
 
-                 newValues: p.getDropValues(
 
-                     dragDropData.origin, newPos, updateProps
 
-                 )
 
-             };
 
-         }
 
-     );
 
-     return hashmap;
 
- }
 
- /**
 
-  * Update the points in a chart from dragDropData.newPoints.
 
-  *
 
-  * @private
 
-  * @function updatePoints
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        A chart with dragDropData.newPoints.
 
-  *
 
-  * @param {boolean} [animate=true]
 
-  *        Animate updating points?
 
-  */
 
- function updatePoints(chart, animate) {
 
-     var newPoints = chart.dragDropData.newPoints,
 
-         animOptions = animate === false ? false : merge({
 
-             duration: 400 // 400 is the default in H.animate
 
-         }, chart.options.animation);
 
-     chart.isDragDropAnimating = true;
 
-     // Update the points
 
-     objectEach(newPoints, function (newPoint) {
 
-         newPoint.point.update(newPoint.newValues, false);
 
-     });
 
-     chart.redraw(animOptions);
 
-     // Clear the isAnimating flag after animation duration is complete.
 
-     // The complete handler for animation seems to have bugs at this time, so
 
-     // we have to use a timeout instead.
 
-     setTimeout(function () {
 
-         delete chart.isDragDropAnimating;
 
-         if (chart.hoverPoint && !chart.dragHandles) {
 
-             chart.hoverPoint.showDragHandles();
 
-         }
 
-     }, animOptions.duration);
 
- }
 
- /**
 
-  * Resize the guide box according to point options and a difference in mouse
 
-  * positions. Handles reversed axes.
 
-  *
 
-  * @private
 
-  * @function resizeGuideBox
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point that is being resized.
 
-  *
 
-  * @param {number} dX
 
-  *        Difference in X position.
 
-  *
 
-  * @param {number} dY
 
-  *        Difference in Y position.
 
-  */
 
- function resizeGuideBox(point, dX, dY) {
 
-     var series = point.series,
 
-         chart = series.chart,
 
-         dragDropData = chart.dragDropData,
 
-         resizeSide,
 
-         newPoint,
 
-         resizeProp = series.dragDropProps[dragDropData.updateProp];
 
-     // dragDropProp.resizeSide holds info on which side to resize.
 
-     newPoint = dragDropData.newPoints[point.id].newValues;
 
-     resizeSide = typeof resizeProp.resizeSide === 'function' ?
 
-         resizeProp.resizeSide(newPoint, point) : resizeProp.resizeSide;
 
-     // Call resize hook if it is defined
 
-     if (resizeProp.beforeResize) {
 
-         resizeProp.beforeResize(chart.dragGuideBox, newPoint, point);
 
-     }
 
-     // Do the resize
 
-     resizeRect(
 
-         chart.dragGuideBox,
 
-         resizeProp.axis === 'x' && series.xAxis.reversed ||
 
-         resizeProp.axis === 'y' && series.yAxis.reversed ?
 
-             flipResizeSide(resizeSide) : resizeSide,
 
-         {
 
-             x: resizeProp.axis === 'x' ?
 
-                 dX - (dragDropData.origin.prevdX || 0) : 0,
 
-             y: resizeProp.axis === 'y' ?
 
-                 dY - (dragDropData.origin.prevdY || 0) : 0
 
-         }
 
-     );
 
- }
 
- /**
 
-  * Default mouse move handler while dragging. Handles updating points or guide
 
-  * box.
 
-  *
 
-  * @private
 
-  * @function dragMove
 
-  *
 
-  * @param {global.Event} e
 
-  *        The mouse move event.
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point that is dragged.
 
-  */
 
- function dragMove(e, point) {
 
-     var series = point.series,
 
-         chart = series.chart,
 
-         data = chart.dragDropData,
 
-         options = merge(series.options.dragDrop, point.options.dragDrop),
 
-         draggableX = options.draggableX,
 
-         draggableY = options.draggableY,
 
-         origin = data.origin,
 
-         dX = e.chartX - origin.chartX,
 
-         dY = e.chartY - origin.chartY,
 
-         oldDx = dX,
 
-         updateProp = data.updateProp;
 
-     // Handle inverted
 
-     if (chart.inverted) {
 
-         dX = -dY;
 
-         dY = -oldDx;
 
-     }
 
-     // If we have liveRedraw enabled, update the points immediately. Otherwise
 
-     // update the guideBox.
 
-     if (pick(options.liveRedraw, true)) {
 
-         updatePoints(chart, false);
 
-         // Update drag handles
 
-         point.showDragHandles();
 
-     } else {
 
-         // No live redraw, update guide box
 
-         if (updateProp) {
 
-             // We are resizing, so resize the guide box
 
-             resizeGuideBox(point, dX, dY);
 
-         } else {
 
-             // We are moving, so move the guide box
 
-             chart.dragGuideBox.translate(
 
-                 draggableX ? dX : 0, draggableY ? dY : 0
 
-             );
 
-         }
 
-     }
 
-     // Update stored previous dX/Y
 
-     origin.prevdX = dX;
 
-     origin.prevdY = dY;
 
- }
 
- /**
 
-  * Set the state of the guide box.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Chart#setGuideBoxState
 
-  *
 
-  * @param {string} state
 
-  *        The state to set the guide box to.
 
-  *
 
-  * @param {object} options
 
-  *        Additional overall guideBox options to consider.
 
-  *
 
-  * @return {Highcharts.SVGElement}
 
-  *         The modified guide box.
 
-  */
 
- H.Chart.prototype.setGuideBoxState = function (state, options) {
 
-     var guideBox = this.dragGuideBox,
 
-         guideBoxOptions = merge(defaultGuideBoxOptions, options),
 
-         stateOptions = merge(guideBoxOptions.default, guideBoxOptions[state]);
 
-     return guideBox.attr({
 
-         className: stateOptions.className,
 
-         stroke: stateOptions.lineColor,
 
-         strokeWidth: stateOptions.lineWidth,
 
-         fill: stateOptions.color,
 
-         cursor: stateOptions.cursor,
 
-         zIndex: stateOptions.zIndex
 
-     });
 
- };
 
- /**
 
-  * Get updated point values when dragging a point.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Point#getDropValues
 
-  *
 
-  * @param {object} origin
 
-  *        Mouse position (chartX/Y) and point props at current data values.
 
-  *        Point props should be organized per point.id in a hashmap.
 
-  *
 
-  * @param {global.Event} newPos
 
-  *        New mouse position (chartX/Y).
 
-  *
 
-  * @param {object} updateProps
 
-  *        Point props to modify. Map of prop objects where each key refers to
 
-  *        the prop, and the value is an object with an axis property. Example:
 
-  *        {
 
-  *            x: {
 
-  *                axis: 'x'
 
-  *            },
 
-  *            x2: {
 
-  *                axis: 'x'
 
-  *            }
 
-  *        }
 
-  *
 
-  * @return {object}
 
-  *         An object with updated data values.
 
-  */
 
- H.Point.prototype.getDropValues = function (origin, newPos, updateProps) {
 
-     var point = this,
 
-         series = point.series,
 
-         options = merge(series.options.dragDrop, point.options.dragDrop),
 
-         yAxis = series.yAxis,
 
-         xAxis = series.xAxis,
 
-         dX = newPos.chartX - origin.chartX,
 
-         dY = newPos.chartY - origin.chartY,
 
-         oldX = pick(origin.x, point.x),
 
-         oldY = pick(origin.y, point.y),
 
-         dXValue = xAxis.toValue(
 
-             xAxis.toPixels(oldX, true) +
 
-             (xAxis.horiz ? dX : dY),
 
-             true
 
-         ) - oldX,
 
-         dYValue = yAxis.toValue(
 
-             yAxis.toPixels(oldY, true) +
 
-             (yAxis.horiz ? dX : dY),
 
-             true
 
-         ) - oldY,
 
-         result = {},
 
-         updateSingleProp,
 
-         pointOrigin = origin.points[point.id];
 
-     // Find out if we only have one prop to update
 
-     for (var key in updateProps) {
 
-         if (updateProps.hasOwnProperty(key)) {
 
-             if (updateSingleProp !== undefined) {
 
-                 updateSingleProp = false;
 
-                 break;
 
-             }
 
-             updateSingleProp = true;
 
-         }
 
-     }
 
-     // Utility function to apply precision and limit a value within the
 
-     // draggable range
 
-     function limitToRange(val, direction) {
 
-         var defaultPrecision = series[direction.toLowerCase() + 'Axis']
 
-                 .categories ? 1 : 0,
 
-             precision = pick(
 
-                 options['dragPrecision' + direction], defaultPrecision
 
-             ),
 
-             min = pick(options['dragMin' + direction], -Infinity),
 
-             max = pick(options['dragMax' + direction], Infinity),
 
-             res = val;
 
-         if (precision) {
 
-             res = Math.round(res / precision) * precision;
 
-         }
 
-         return Math.max(min, Math.min(max, res));
 
-     }
 
-     // Assign new value to property. Adds dX/YValue to the old value, limiting
 
-     // it within min/max ranges.
 
-     objectEach(updateProps, function (val, key) {
 
-         var oldVal = pointOrigin[key],
 
-             newVal = limitToRange(
 
-                 oldVal + (val.axis === 'x' ? dXValue : dYValue),
 
-                 val.axis.toUpperCase()
 
-             );
 
-         // If we are updating a single prop, and it has a validation function
 
-         // for the prop, run it. If it fails, don't update the value.
 
-         if (
 
-             !(
 
-                 updateSingleProp &&
 
-                 val.propValidate &&
 
-                 !val.propValidate(newVal, point)
 
-             ) &&
 
-             oldVal !== undefined
 
-         ) {
 
-             result[key] = newVal;
 
-         }
 
-     });
 
-     return result;
 
- };
 
- /**
 
-  * Returns an SVGElement to use as the guide box for a set of points.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Series#getGuideBox
 
-  *
 
-  * @param {Array<Highcharts.Point>} points
 
-  *        The state to set the guide box to.
 
-  *
 
-  * @return {Highcharts.SVGElement}
 
-  *         An SVG element for the guide box, not added to DOM.
 
-  */
 
- H.Series.prototype.getGuideBox = function (points) {
 
-     var chart = this.chart,
 
-         minX = Infinity,
 
-         maxX = -Infinity,
 
-         minY = Infinity,
 
-         maxY = -Infinity,
 
-         changed;
 
-     // Find bounding box of all points
 
-     points.forEach(function (point) {
 
-         var bBox = point.graphic && point.graphic.getBBox() || point.shapeArgs;
 
-         if (bBox && (bBox.width || bBox.height || bBox.x || bBox.y)) {
 
-             changed = true;
 
-             minX = Math.min(bBox.x, minX);
 
-             maxX = Math.max(bBox.x + bBox.width, maxX);
 
-             minY = Math.min(bBox.y, minY);
 
-             maxY = Math.max(bBox.y + bBox.height, maxY);
 
-         }
 
-     });
 
-     return changed ? chart.renderer.rect(
 
-         minX,
 
-         minY,
 
-         maxX - minX,
 
-         maxY - minY
 
-     ) : chart.renderer.g();
 
- };
 
- /**
 
-  * On point mouse out. Hide drag handles, depending on state.
 
-  *
 
-  * @private
 
-  * @function mouseOut
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point mousing out of.
 
-  */
 
- function mouseOut(point) {
 
-     var chart = point.series && point.series.chart,
 
-         dragDropData = chart && chart.dragDropData;
 
-     if (
 
-         chart &&
 
-         chart.dragHandles &&
 
-         !(
 
-             dragDropData &&
 
-             (
 
-                 dragDropData.isDragging &&
 
-                 dragDropData.draggedPastSensitivity ||
 
-                 dragDropData.isHoveringHandle === point.id
 
-             )
 
-         )
 
-     ) {
 
-         chart.hideDragHandles();
 
-     }
 
- }
 
- /**
 
-  * Mouseout on resize handle. Handle states, and possibly run mouseOut on point.
 
-  *
 
-  * @private
 
-  * @function onResizeHandleMouseOut
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point mousing out of.
 
-  */
 
- function onResizeHandleMouseOut(point) {
 
-     var chart = point.series.chart;
 
-     if (
 
-         chart.dragDropData &&
 
-         point.id === chart.dragDropData.isHoveringHandle
 
-     ) {
 
-         delete chart.dragDropData.isHoveringHandle;
 
-     }
 
-     if (!chart.hoverPoint) {
 
-         mouseOut(point);
 
-     }
 
- }
 
- /**
 
-  * Mousedown on resize handle. Init a drag if the conditions are right.
 
-  *
 
-  * @private
 
-  * @function onResizeHandleMouseDown
 
-  *
 
-  * @param {global.Event} e
 
-  *        The mousedown event.
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point mousing down on.
 
-  *
 
-  * @param {string} updateProp
 
-  *        The data property this resize handle is attached to for this point.
 
-  */
 
- function onResizeHandleMouseDown(e, point, updateProp) {
 
-     var chart = point.series.chart;
 
-     // Ignore if zoom/pan key is pressed
 
-     if (chart.zoomOrPanKeyPressed(e)) {
 
-         return;
 
-     }
 
-     // Prevent zooming
 
-     chart.mouseIsDown = false;
 
-     // We started a drag
 
-     initDragDrop(e, point);
 
-     chart.dragDropData.updateProp = e.updateProp = updateProp;
 
-     point.firePointEvent('dragStart', e);
 
-     // Prevent default to avoid point click for dragging too
 
-     e.stopPropagation();
 
-     e.preventDefault();
 
- }
 
- /**
 
-  * Render drag handles on a point - depending on which handles are enabled - and
 
-  * attach events to them.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Point#showDragHandles
 
-  */
 
- H.Point.prototype.showDragHandles = function () {
 
-     var point = this,
 
-         series = point.series,
 
-         chart = series.chart,
 
-         renderer = chart.renderer,
 
-         options = merge(series.options.dragDrop, point.options.dragDrop);
 
-     // Go through each updateProp and see if we are supposed to create a handle
 
-     // for it.
 
-     objectEach(series.dragDropProps, function (val, key) {
 
-         var handleOptions = merge(
 
-                 defaultDragHandleOptions,
 
-                 val.handleOptions,
 
-                 options.dragHandle
 
-             ),
 
-             handleAttrs = {
 
-                 className: handleOptions.className,
 
-                 'stroke-width': handleOptions.lineWidth,
 
-                 fill: handleOptions.color,
 
-                 stroke: handleOptions.lineColor
 
-             },
 
-             pathFormatter = handleOptions.pathFormatter || val.handleFormatter,
 
-             positioner = val.handlePositioner,
 
-             pos,
 
-             handle,
 
-             handleSide,
 
-             path,
 
-             // Run validation function on whether or not we allow individual
 
-             // updating of this prop.
 
-             validate = val.validateIndividualDrag ?
 
-                 val.validateIndividualDrag(point) : true;
 
-         if (
 
-             val.resize &&
 
-             validate &&
 
-             val.resizeSide &&
 
-             pathFormatter &&
 
-             (
 
-                 options['draggable' + val.axis.toUpperCase()] ||
 
-                 options[val.optionName]
 
-             ) &&
 
-             options[val.optionName] !== false
 
-         ) {
 
-             // Create group if it doesn't exist
 
-             if (!chart.dragHandles) {
 
-                 chart.dragHandles = {
 
-                     group: renderer.g('drag-drop-handles')
 
-                         .add(series.markerGroup || series.group)
 
-                 };
 
-             }
 
-             // Store which point this is
 
-             chart.dragHandles.point = point.id;
 
-             // Find position and path of handle
 
-             pos = positioner(point);
 
-             handleAttrs.d = path = pathFormatter(point);
 
-             handleSide = typeof val.resizeSide === 'function' ?
 
-                 val.resizeSide(point.options, point) : val.resizeSide;
 
-             if (!path || pos.x < 0 || pos.y < 0) {
 
-                 return;
 
-             }
 
-             // If cursor is not set explicitly, use axis direction
 
-             handleAttrs.cursor = handleOptions.cursor ||
 
-                 (val.axis === 'x') !== !!chart.inverted ?
 
-                 'ew-resize' : 'ns-resize';
 
-             // Create and add the handle element if it doesn't exist
 
-             handle = chart.dragHandles[handleSide];
 
-             if (!handle) {
 
-                 handle = chart.dragHandles[handleSide] = renderer
 
-                     .path()
 
-                     .add(chart.dragHandles.group);
 
-             }
 
-             // Move and update handle
 
-             handle.translate(pos.x, pos.y).attr(handleAttrs);
 
-             // Add events
 
-             addEvents(
 
-                 handle.element,
 
-                 ['touchstart', 'mousedown'],
 
-                 function (e) {
 
-                     onResizeHandleMouseDown(
 
-                         getNormalizedEvent(e, chart), point, key
 
-                     );
 
-                 }
 
-             );
 
-             addEvent(chart.dragHandles.group.element, 'mouseover', function () {
 
-                 chart.dragDropData = chart.dragDropData || {};
 
-                 chart.dragDropData.isHoveringHandle = point.id;
 
-             });
 
-             addEvents(
 
-                 chart.dragHandles.group.element,
 
-                 ['touchend', 'mouseout'],
 
-                 function () {
 
-                     onResizeHandleMouseOut(point);
 
-                 }
 
-             );
 
-         }
 
-     });
 
- };
 
- /**
 
-  * Remove the chart's drag handles if they exist.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Chart#hideDragHandles
 
-  */
 
- H.Chart.prototype.hideDragHandles = function () {
 
-     var chart = this;
 
-     if (chart.dragHandles) {
 
-         objectEach(chart.dragHandles, function (val, key) {
 
-             if (key !== 'group' && val.destroy) {
 
-                 val.destroy();
 
-             }
 
-         });
 
-         if (chart.dragHandles.group && chart.dragHandles.group.destroy) {
 
-             chart.dragHandles.group.destroy();
 
-         }
 
-         delete chart.dragHandles;
 
-     }
 
- };
 
- /**
 
-  * Utility function to count the number of props in an object.
 
-  *
 
-  * @private
 
-  * @function countProps
 
-  *
 
-  * @param {object} object
 
-  *        The object to count.
 
-  *
 
-  * @return {number}
 
-  *         Number of own properties on the object.
 
-  */
 
- function countProps(object) {
 
-     var count = 0;
 
-     for (var p in object) {
 
-         if (object.hasOwnProperty(p)) {
 
-             count++;
 
-         }
 
-     }
 
-     return count;
 
- }
 
- /**
 
-  * Utility function to get the value of the first prop of an object. (Note that
 
-  * the order of keys in an object is usually not guaranteed.)
 
-  *
 
-  * @private
 
-  * @function getFirstProp
 
-  *
 
-  * @param {object} object
 
-  *        The object to count.
 
-  *
 
-  * @return {*}
 
-  *         Value of the first prop in the object.
 
-  */
 
- function getFirstProp(object) {
 
-     for (var p in object) {
 
-         if (object.hasOwnProperty(p)) {
 
-             return object[p];
 
-         }
 
-     }
 
- }
 
- /**
 
-  * Mouseover on a point. Show drag handles if the conditions are right.
 
-  *
 
-  * @private
 
-  * @function mouseOver
 
-  *
 
-  * @param {Highcharts.Point} point
 
-  *        The point mousing over.
 
-  */
 
- function mouseOver(point) {
 
-     var series = point.series,
 
-         chart = series && series.chart,
 
-         dragDropData = chart && chart.dragDropData;
 
-     if (
 
-         chart &&
 
-         !(
 
-             dragDropData &&
 
-             dragDropData.isDragging && // Ignore if dragging a point
 
-             dragDropData.draggedPastSensitivity
 
-         ) &&
 
-         !chart.isDragDropAnimating && // Ignore if animating
 
-         series.options.dragDrop && // No need to compute handles without this
 
-         !(
 
-             chart.options &&
 
-             chart.options.chart &&
 
-             chart.options.chart.options3d // No 3D support
 
-         )
 
-     ) {
 
-         // Hide the handles if they exist on another point already
 
-         if (chart.dragHandles) {
 
-             chart.hideDragHandles();
 
-         }
 
-         point.showDragHandles();
 
-     }
 
- }
 
- /**
 
-  * On container mouse move. Handle drag sensitivity and fire drag event.
 
-  *
 
-  * @private
 
-  * @function mouseMove
 
-  *
 
-  * @param {global.Event} e
 
-  *        The mouse move event.
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        The chart we are moving across.
 
-  */
 
- function mouseMove(e, chart) {
 
-     // Ignore if zoom/pan key is pressed
 
-     if (chart.zoomOrPanKeyPressed(e)) {
 
-         return;
 
-     }
 
-     var dragDropData = chart.dragDropData,
 
-         point,
 
-         seriesDragDropOpts,
 
-         newPoints,
 
-         numNewPoints = 0,
 
-         newPoint;
 
-     if (dragDropData && dragDropData.isDragging) {
 
-         point = dragDropData.point;
 
-         seriesDragDropOpts = point.series.options.dragDrop;
 
-         // No tooltip for dragging
 
-         e.preventDefault();
 
-         // Update sensitivity test if not passed yet
 
-         if (!dragDropData.draggedPastSensitivity) {
 
-             dragDropData.draggedPastSensitivity = hasDraggedPastSensitivity(
 
-                 e, chart, pick(
 
-                     point.options.dragDrop &&
 
-                         point.options.dragDrop.dragSensitivity,
 
-                     seriesDragDropOpts &&
 
-                         seriesDragDropOpts.dragSensitivity,
 
-                     defaultDragSensitivity
 
-                 )
 
-             );
 
-         }
 
-         // If we have dragged past dragSensitivity, run the mousemove handler
 
-         // for dragging
 
-         if (dragDropData.draggedPastSensitivity) {
 
-             // Find the new point values from the moving
 
-             dragDropData.newPoints = getNewPoints(dragDropData, e);
 
-             // If we are only dragging one point, add it to the event
 
-             newPoints = dragDropData.newPoints;
 
-             numNewPoints = countProps(newPoints);
 
-             newPoint = numNewPoints === 1 ?
 
-                 getFirstProp(newPoints) :
 
-                 null;
 
-             // Run the handler
 
-             point.firePointEvent('drag', {
 
-                 origin: dragDropData.origin,
 
-                 newPoints: dragDropData.newPoints,
 
-                 newPoint: newPoint && newPoint.newValues,
 
-                 newPointId: newPoint && newPoint.point.id,
 
-                 numNewPoints: numNewPoints,
 
-                 chartX: e.chartX,
 
-                 chartY: e.chartY
 
-             }, function () {
 
-                 dragMove(e, point);
 
-             });
 
-         }
 
-     }
 
- }
 
- /**
 
-  * On container mouse up. Fire drop event and reset state.
 
-  *
 
-  * @private
 
-  * @function mouseUp
 
-  *
 
-  * @param {global.Event} e
 
-  *        The mouse up event.
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        The chart we were dragging in.
 
-  */
 
- function mouseUp(e, chart) {
 
-     var dragDropData = chart.dragDropData;
 
-     if (
 
-         dragDropData &&
 
-         dragDropData.isDragging &&
 
-         dragDropData.draggedPastSensitivity
 
-     ) {
 
-         var point = dragDropData.point,
 
-             newPoints = dragDropData.newPoints,
 
-             numNewPoints = countProps(newPoints),
 
-             newPoint = numNewPoints === 1 ?
 
-                 getFirstProp(newPoints) :
 
-                 null;
 
-         // Hide the drag handles
 
-         if (chart.dragHandles) {
 
-             chart.hideDragHandles();
 
-         }
 
-         // Prevent default action
 
-         e.preventDefault();
 
-         chart.cancelClick = true;
 
-         // Fire the event, with a default handler that updates the points
 
-         point.firePointEvent('drop', {
 
-             origin: dragDropData.origin,
 
-             chartX: e.chartX,
 
-             chartY: e.chartY,
 
-             newPoints: newPoints,
 
-             numNewPoints: numNewPoints,
 
-             newPoint: newPoint && newPoint.newValues,
 
-             newPointId: newPoint && newPoint.point.id
 
-         }, function () {
 
-             updatePoints(chart);
 
-         });
 
-     }
 
-     // Reset
 
-     delete chart.dragDropData;
 
-     // Clean up the drag guide box if it exists. This is always added on
 
-     // drag start, even if user is overriding events.
 
-     if (chart.dragGuideBox) {
 
-         chart.dragGuideBox.destroy();
 
-         delete chart.dragGuideBox;
 
-     }
 
- }
 
- /**
 
-  * On container mouse down. Init dragdrop if conditions are right.
 
-  *
 
-  * @private
 
-  * @function mouseDown
 
-  *
 
-  * @param {global.Event} e
 
-  *        The mouse down event.
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        The chart we are clicking.
 
-  */
 
- function mouseDown(e, chart) {
 
-     var dragPoint = chart.hoverPoint;
 
-     // Reset cancel click
 
-     chart.cancelClick = false;
 
-     // Ignore if zoom/pan key is pressed
 
-     if (chart.zoomOrPanKeyPressed(e)) {
 
-         return;
 
-     }
 
-     // If we somehow get a mousedown event while we are dragging, cancel
 
-     if (chart.dragDropData && chart.dragDropData.isDragging) {
 
-         mouseUp(e, chart);
 
-         return;
 
-     }
 
-     // If this point is movable, start dragging it
 
-     if (dragPoint && isPointMovable(dragPoint)) {
 
-         chart.mouseIsDown = false; // Prevent zooming
 
-         initDragDrop(e, dragPoint);
 
-         dragPoint.firePointEvent('dragStart', e);
 
-     }
 
- }
 
- // Point hover event. We use a short timeout due to issues with coordinating
 
- // point mouseover/out events on dragHandles and points. Particularly arearange
 
- // series are finicky since the markers are not individual points. This logic
 
- // should preferably be improved in the future. Notice that the mouseOut event
 
- // below must have a shorter timeout to ensure event order.
 
- addEvent(H.Point, 'mouseOver', function () {
 
-     var point = this;
 
-     setTimeout(function () {
 
-         mouseOver(point);
 
-     }, 12);
 
- });
 
- // Point mouseleave event. See above function for explanation of the timeout.
 
- addEvent(H.Point, 'mouseOut', function () {
 
-     var point = this;
 
-     setTimeout(function () {
 
-         if (point.series) {
 
-             mouseOut(point);
 
-         }
 
-     }, 10);
 
- });
 
- // Hide drag handles on a point if it is removed
 
- addEvent(H.Point, 'remove', function () {
 
-     var chart = this.series.chart,
 
-         dragHandles = chart.dragHandles;
 
-     if (dragHandles && dragHandles.point === this.id) {
 
-         chart.hideDragHandles();
 
-     }
 
- });
 
- /**
 
-  * Check whether the zoomKey or panKey is pressed.
 
-  *
 
-  * @private
 
-  * @function Highcharts.Chart#zoomOrPanKeyPressed
 
-  *
 
-  * @param {global.Event} e
 
-  *        A mouse event.
 
-  *
 
-  * @return {boolean}
 
-  *         True if the zoom or pan keys are pressed. False otherwise.
 
-  */
 
- H.Chart.prototype.zoomOrPanKeyPressed = function (e) {
 
-     // Check whether the panKey and zoomKey are set in chart.userOptions
 
-     var chartOptions = this.userOptions.chart || {},
 
-         panKey = chartOptions.panKey && chartOptions.panKey + 'Key',
 
-         zoomKey = chartOptions.zoomKey && chartOptions.zoomKey + 'Key';
 
-     return (e[zoomKey] || e[panKey]);
 
- };
 
- /**
 
-  * Add events to document and chart if the chart is draggable.
 
-  *
 
-  * @private
 
-  * @function addDragDropEvents
 
-  *
 
-  * @param {Highcharts.Chart} chart
 
-  *        The chart to add events to.
 
-  */
 
- function addDragDropEvents(chart) {
 
-     var container = chart.container,
 
-         doc = H.doc;
 
-     // Only enable if we have a draggable chart
 
-     if (isChartDraggable(chart)) {
 
-         addEvents(container, ['mousedown', 'touchstart'], function (e) {
 
-             mouseDown(getNormalizedEvent(e, chart), chart);
 
-         });
 
-         addEvents(container, ['mousemove', 'touchmove'], function (e) {
 
-             mouseMove(getNormalizedEvent(e, chart), chart);
 
-         });
 
-         addEvent(container, 'mouseleave', function (e) {
 
-             mouseUp(getNormalizedEvent(e, chart), chart);
 
-         });
 
-         chart.unbindDragDropMouseUp = addEvents(
 
-             doc,
 
-             ['mouseup', 'touchend'],
 
-             function (e) {
 
-                 mouseUp(getNormalizedEvent(e, chart), chart);
 
-             }
 
-         );
 
-         // Add flag to avoid doing this again
 
-         chart.hasAddedDragDropEvents = true;
 
-         // Add cleanup to make sure we don't pollute document
 
-         addEvent(chart, 'destroy', function () {
 
-             if (chart.unbindDragDropMouseUp) {
 
-                 chart.unbindDragDropMouseUp();
 
-             }
 
-         });
 
-     }
 
- }
 
- // Add event listener to Chart.render that checks whether or not we should add
 
- // dragdrop.
 
- addEvent(H.Chart, 'render', function () {
 
-     // If we don't have dragDrop events, see if we should add them
 
-     if (!this.hasAddedDragDropEvents) {
 
-         addDragDropEvents(this);
 
-     }
 
- });
 
 
  |