diff --git a/.gitignore b/.gitignore index a246a37..75cdfeb 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -sftp-config.json \ No newline at end of file +.ftpconfig +sftp-config.json +phpunit/coverage/ diff --git a/api/client.php b/api/client.php index 06b5cb0..4019644 100644 --- a/api/client.php +++ b/api/client.php @@ -112,16 +112,18 @@ curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); - /* (4) On definit les donnees POST */ - $postdata = ''; + /* (4) On definit les donnees POST si on est pas en get */ + if( $build['method'] != 'GET' ){ + $postdata = ''; - // On formatte les donnees au format 'key=value&key=value' - foreach($build['postdata'] as $key=>$value) - $postdata .= $key.'='.$value.'&'; - rtrim($postdata); // on supprime le '&' a la fin s'il y a + // On formatte les donnees au format 'key=value&key=value' + foreach($build['postdata'] as $key=>$value) + $postdata .= $key.'='.$value.'&'; + rtrim($postdata); // on supprime le '&' a la fin s'il y a - // On envoie les donnees - curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata); + // On envoie les donnees + curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata); + } /* [4] Execution de la requete et recup de la response diff --git a/api/manifest.json b/api/manifest.json index edd11c7..247157d 100644 --- a/api/manifest.json +++ b/api/manifest.json @@ -26,7 +26,7 @@ "path": "charts/network_data" }, "description": "Renvoie un jeu de donnees pour un graphique de type network" - } + } } diff --git a/automate.php b/automate.php index 0853128..0aa39d3 100755 --- a/automate.php +++ b/automate.php @@ -6,6 +6,7 @@ use \manager\sessionManager; use \manager\ManagerError; use \manager\Repo; + use \manager\Database; use \api\client; @@ -21,7 +22,9 @@ /* [1] On recupere le journal d'appel =========================================================*/ $file_content = file_get_contents('calllog.xml'); - + + var_dump( $file_content ); return; + /* [2] On cree la requete =========================================================*/ $request = new ModuleRequest('call_log/unserialize', array('filecontent'=>$file_content)); @@ -58,7 +61,7 @@ echo "==================
"; foreach($sms as $v) var_dump( $v[0] ." (".$contact[$v[0]].") \t\t\t". $v[1] ." appels"); - + var_dump("\n\n\nOBJET COMPLET"); var_dump( $sms ); @@ -66,18 +69,18 @@ var_dump( $contact ); } - parseCallLog(); + // parseCallLog(); debug(); - + /* () Test du client de l'API generique */ // $api = new client(); - + // $response = $api->send('generate-network-chart-data', array( - // '@token'=> '48e701d4e72e4e35bc37c9a800b49d5400734d7b' + // '@token'=> '52945efbed43b50c12413f2f0e9519bfd9e98ce8' // )); // var_dump($response); - -?> \ No newline at end of file + +?> diff --git a/config/dispatcher-extensions.json b/config/dispatcher-extensions.json index b1f3c76..052f0a9 100755 --- a/config/dispatcher-extensions.json +++ b/config/dispatcher-extensions.json @@ -1,11 +1,11 @@ { - "svg": "image/svg+xml", - - "jpg": "image/jpeg", - "png": "image/png", - - "css": "text/css", - "js": "text/js", - - "json": "application/json" + "svg": "image/svg+xml", + + "jpg": "image/jpeg", + "png": "image/png", + + "css": "text/css", + "js": "text/javascript", + + "json": "application/json" } \ No newline at end of file diff --git a/config/dispatcher-tree.json b/config/dispatcher-tree.json index f49811d..6e7558d 100755 --- a/config/dispatcher-tree.json +++ b/config/dispatcher-tree.json @@ -9,6 +9,6 @@ "css" : "/css", "js" : "/js", - "cssview" : "/view/css", - "jsview" : "/view/js" -} \ No newline at end of file + "highcharts": "/js/lib/highcharts", + "sigma": "/js/lib/sigma" +} diff --git a/config/menu.json b/config/menu.json index 13c2035..1063eef 100644 --- a/config/menu.json +++ b/config/menu.json @@ -60,4 +60,4 @@ "attributes": { "data-sublink": "users" } } ] } -] \ No newline at end of file +] diff --git a/config/modules.json b/config/modules.json index 03e662f..c341857 100755 --- a/config/modules.json +++ b/config/modules.json @@ -1,12 +1,34 @@ { + "module": { + "method": { + "description": "Test de l'API", + "permissions": [], + "parameters": {} + }, + + "phpunitParams": { + "description": "Méthode utile à phpunit pour le test des paramètres.", + "permissions": [], + "parameters": { + "p1": { "description": "Texte", "type": "text" }, + "p2": { "description": "Entier positif", "type": "id" } + } + }, + + "phpunitPermissions": { + "description": "Méthode utile à phpunit pour le test des permissions.", + "permissions": ["a", "b"], + "parameters": {} + } + }, "user": { "login": { "description": "Connexion avec un login (identifiant ou adresse mail) et un mot de passe.", "permissions": [], "parameters": { - "login": { "description": "Identifiant ou adresse mail", "type": "varchar(255)" }, - "password": { "description": "Mot de passe", "type":"text" } + "login": { "description": "Identifiant ou adresse mail", "type": "varchar(3,50)" }, + "password": { "description": "Mot de passe", "type": "text" } } }, @@ -16,7 +38,7 @@ "parameters": {} }, - + "getById": { "description": "Retourne les informations d'un utilisateur.", "permissions": ["admin"], @@ -25,19 +47,19 @@ } }, - + "getAll": { "description": "Retourne les informations de tous les utilisateurs.", "permissions": ["admin"], "parameters": {} }, - + "create": { "description": "Creation d'un nouvel utilisateur.", "permissions": ["admin"], "parameters": { - "login" : { "description": "Login de l'utilisateur, 30 caracteres maximum.", "type": "varchar(30)" }, + "login" : { "description": "Login de l'utilisateur, 30 caracteres maximum.", "type": "varchar(3,30)" }, "password" : { "description": "Mot de passe de l'utilisateur.", "type": "text" }, "mail" : { "description": "Adresse mail de l'utilisateur.", "type": "mail" }, "reference" : { "description": "UID d'une personne d'un sondage, peut etre vide.", "type": "text" }, @@ -45,7 +67,7 @@ } }, - + "remove": { "description": "Suppression d'un utilisateur.", "permissions": ["admin"], @@ -99,10 +121,10 @@ "description": "Creation d'un token de nom et de duree donnee", "permissions": ["admin"], "parameters": { - "name": { "description": "Nom attribue au token", "type": "varchar(50)" }, + "name" : { "description": "Nom attribue au token", "type": "varchar(3,50)" }, "duration": { "description": "Duree du token en nombre de jours", "type": "numeric" } } } } -} \ No newline at end of file +} diff --git a/config/repositories.json b/config/repositories.json index 8ac9f7a..1ea2122 100755 --- a/config/repositories.json +++ b/config/repositories.json @@ -23,4 +23,4 @@ "remove" ] -} \ No newline at end of file +} diff --git a/config/views.json b/config/views.json index 9cf94af..145d1ee 100644 --- a/config/views.json +++ b/config/views.json @@ -4,4 +4,4 @@ "analytics", "charts", "settings" -] \ No newline at end of file +] diff --git a/css/container.css b/css/container.css index 2411aa1..b1ed8cf 100755 --- a/css/container.css +++ b/css/container.css @@ -1,2 +1,2 @@ -#WRAPPER>#CONTAINER>section{display:none;position:relative;flex-grow:1;padding:1em;border-radius:3px;background-color:#fff;color:#000;font-size:1em;border:1px solid #ddd}#WRAPPER>#CONTAINER>section.active{display:block}#WRAPPER>#CONTAINER>section h6{color:#848484;font-size:1.2em;text-transform:uppercase;font-weight:300;letter-spacing:.2em;margin:0;padding:0}#WRAPPER>#CONTAINER>section h6:before{content:'- '}#WRAPPER>#CONTAINER>section h6:after{content:' -'}#WRAPPER>#CONTAINER>section h6.center{text-align:center}#WRAPPER>#CONTAINER>section input[type="radio"],#WRAPPER>#CONTAINER>section input[type="checkbox"]{display:none}#WRAPPER>#CONTAINER>section input[type="radio"]+label[for],#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]{padding-left:.8em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#WRAPPER>#CONTAINER>section input[type="radio"]+label[for]:before,#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]:before{content:'';display:inline-block;position:relative;top:.1em;left:-.8em;width:calc( 1em - 2*.15em );height:calc( 1em - 2*.15em );border-radius:50% / 50%;border:0.15em solid #399ced;background:#fff center center no-repeat;background-image:none;background-size:70% auto;transition:background .2s ease-in-out;cursor:pointer}#WRAPPER>#CONTAINER>section input[type="radio"]:checked+label[for]:before,#WRAPPER>#CONTAINER>section input[type="checkbox"]:checked+label[for]:before{background-color:#399ced;background-image:url("/f/svg/checked/st/container")}#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]:before{border-radius:3px}#WRAPPER>#CONTAINER>section input[type="submit"],#WRAPPER>#CONTAINER>section input[type="button"]{margin:.5em 0;padding:.3em .5em;border-radius:3px;border:1px solid #515151;color:#515151;background-color:#fff;transition:background .1s ease-in-out, color .1s ease-in-out}#WRAPPER>#CONTAINER>section input[type="submit"]:hover,#WRAPPER>#CONTAINER>section input[type="button"]:hover{background-color:#515151;color:#fff}#WRAPPER>#CONTAINER>section input[type="submit"].primary,#WRAPPER>#CONTAINER>section input[type="button"].primary{border-color:#399ced;color:#399ced;background-color:#fff}#WRAPPER>#CONTAINER>section input[type="submit"].primary:hover,#WRAPPER>#CONTAINER>section input[type="button"].primary:hover{background-color:#399ced;color:#fff}#WRAPPER>#CONTAINER>section img{margin:1em;height:3em}#WRAPPER>#CONTAINER>section .flag{margin:0 .8em;padding:.2em .8em;border-radius:5px;border:1px solid #b5b5b5;color:#555;font-family:'Inconsolata'} +#WRAPPER>#CONTAINER>section{display:none;position:relative;flex-grow:1;padding:1em;border-radius:3px;background-color:#fff;color:#000;font-size:1em;border:1px solid #ddd}#WRAPPER>#CONTAINER>section.active{display:block}#WRAPPER>#CONTAINER>section.charts{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-around}#WRAPPER>#CONTAINER>section h6{color:#848484;font-size:1.2em;text-transform:uppercase;font-weight:300;letter-spacing:.2em;margin:0;padding:0}#WRAPPER>#CONTAINER>section h6:before{content:'- '}#WRAPPER>#CONTAINER>section h6:after{content:' -'}#WRAPPER>#CONTAINER>section h6.center{text-align:center}#WRAPPER>#CONTAINER>section input[type="radio"],#WRAPPER>#CONTAINER>section input[type="checkbox"]{display:none}#WRAPPER>#CONTAINER>section input[type="radio"]+label[for],#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]{padding-left:.8em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#WRAPPER>#CONTAINER>section input[type="radio"]+label[for]:before,#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]:before{content:'';display:inline-block;position:relative;top:.1em;left:-.8em;width:calc( 1em - 2*.15em );height:calc( 1em - 2*.15em );border-radius:50% / 50%;border:0.15em solid #399ced;background:#fff center center no-repeat;background-image:none;background-size:70% auto;transition:background .2s ease-in-out;cursor:pointer}#WRAPPER>#CONTAINER>section input[type="radio"]:checked+label[for]:before,#WRAPPER>#CONTAINER>section input[type="checkbox"]:checked+label[for]:before{background-color:#399ced;background-image:url("/f/svg/checked/st/container")}#WRAPPER>#CONTAINER>section input[type="checkbox"]+label[for]:before{border-radius:3px}#WRAPPER>#CONTAINER>section input[type="submit"],#WRAPPER>#CONTAINER>section input[type="button"]{margin:.5em 0;padding:.3em .5em;border-radius:3px;border:1px solid #515151;color:#515151;background-color:#fff;transition:background .1s ease-in-out, color .1s ease-in-out}#WRAPPER>#CONTAINER>section input[type="submit"]:hover,#WRAPPER>#CONTAINER>section input[type="button"]:hover{background-color:#515151;color:#fff}#WRAPPER>#CONTAINER>section input[type="submit"].primary,#WRAPPER>#CONTAINER>section input[type="button"].primary{border-color:#399ced;color:#399ced;background-color:#fff}#WRAPPER>#CONTAINER>section input[type="submit"].primary:hover,#WRAPPER>#CONTAINER>section input[type="button"].primary:hover{background-color:#399ced;color:#fff}#WRAPPER>#CONTAINER>section img{margin:1em;height:3em}#WRAPPER>#CONTAINER>section .flag{margin:0 .8em;padding:.2em .8em;border-radius:5px;border:1px solid #b5b5b5;color:#555;font-family:'Inconsolata'} /*# sourceMappingURL=container.css.map */ diff --git a/css/container.css.map b/css/container.css.map index 2f301a1..5c77dec 100755 --- a/css/container.css.map +++ b/css/container.css.map @@ -1,6 +1,6 @@ { "version": 3, -"mappings": "AAMC,2BAAW,CACV,OAAO,CAAE,IAAI,CAKb,QAAQ,CAAE,QAAQ,CAClB,SAAS,CAAE,CAAC,CAEZ,OAAO,CAAE,GAAG,CAEZ,aAAa,CAAE,GAAG,CAElB,gBAAgB,CAAE,IAAI,CAEtB,KAAK,CAAE,IAAI,CACX,SAAS,CAAE,GAAG,CAEd,MAAM,CAAE,cAAc,CAdtB,kCAAQ,CAAE,OAAO,CAAE,KAAK,CAoBxB,8BAAI,CACH,KAAK,CAAE,OAAsB,CAC7B,SAAS,CAAE,KAAK,CAChB,cAAc,CAAE,SAAS,CACzB,WAAW,CAAE,GAAG,CAChB,cAAc,CAAE,IAAI,CAEpB,MAAM,CAAE,CAAC,CACT,OAAO,CAAE,CAAC,CAEV,qCAAQ,CAAC,OAAO,CAAC,IAAI,CACrB,oCAAO,CAAC,OAAO,CAAC,IAAI,CAGpB,qCAAQ,CACP,UAAU,CAAE,MAAM,CAUpB,kGACwB,CACvB,OAAO,CAAE,IAAI,CAId,wHACqC,CACpC,YAAY,CAAE,IAAI,CAGlB,qBAAqB,CAAE,IAAI,CAC3B,mBAAmB,CAAI,IAAI,CAC3B,kBAAkB,CAAK,IAAI,CAC3B,gBAAgB,CAAO,IAAI,CAC3B,eAAe,CAAQ,IAAI,CAC3B,WAAW,CAAY,IAAI,CAI3B,sIAAQ,CACP,OAAO,CAAE,EAAE,CACX,OAAO,CAAE,YAAY,CACrB,QAAQ,CAAE,QAAQ,CACjB,GAAG,CAAE,IAAI,CACT,IAAI,CAAE,KAAK,CACX,KAAK,CAAE,qBAAqB,CAC5B,MAAM,CAAE,qBAAqB,CAE9B,aAAa,CAAE,SAAS,CACxB,MAAM,CAAE,oBAA6B,CAErC,UAAU,CAAE,4BAA4B,CACxC,gBAAgB,CAAE,IAAI,CACtB,eAAe,CAAE,QAAQ,CAEzB,UAAU,CAAE,0BAA0B,CAEtC,MAAM,CAAE,OAAO,CAKjB,sJACoD,CACnD,gBAAgB,CC9FA,OAAO,CD+FvB,gBAAgB,CAAE,kCAAkC,CAKrD,oEAA4C,CAC3C,aAAa,CAAE,GAAG,CASnB,iGACsB,CACrB,MAAM,CAAE,MAAM,CACd,OAAO,CAAE,SAAS,CAElB,aAAa,CAAE,GAAG,CAClB,MAAM,CAAE,iBAAmB,CAE3B,KAAK,CCvHW,OAAO,CDyHvB,gBAAgB,CAAE,IAAI,CAEtB,UAAU,CAAE,iDAAiD,CAG7D,6GAAO,CACN,gBAAgB,CC/HD,OAAO,CDgItB,KAAK,CAAE,IAAI,CAKZ,iHAAS,CACR,YAAY,CCrIG,OAAO,CDsItB,KAAK,CCtIU,OAAO,CDuItB,gBAAgB,CAAE,IAAI,CAItB,6HAAO,CACN,gBAAgB,CC5IF,OAAO,CD6IrB,KAAK,CAAE,IAAI,CASd,+BAAK,CACJ,MAAM,CAAE,GAAG,CACX,MAAM,CAAE,GAAG,CAKZ,iCAAO,CACN,MAAM,CAAE,MAAM,CACd,OAAO,CAAE,SAAS,CAElB,aAAa,CAAE,GAAG,CAClB,MAAM,CAAE,iBAAiB,CAEzB,KAAK,CAAE,IAAI,CACX,WAAW,CAAE,aAAa", +"mappings": "AAMC,2BAAW,CACV,OAAO,CAAE,IAAI,CAcb,QAAQ,CAAE,QAAQ,CAClB,SAAS,CAAE,CAAC,CAEZ,OAAO,CAAE,GAAG,CAEZ,aAAa,CAAE,GAAG,CAElB,gBAAgB,CAAE,IAAI,CAEtB,KAAK,CAAE,IAAI,CACX,SAAS,CAAE,GAAG,CAEd,MAAM,CAAE,cAAc,CAvBtB,kCAAQ,CAAE,OAAO,CAAE,KAAK,CAGxB,kCAAQ,CACP,OAAO,CAAE,IAAI,CAEb,cAAc,CAAE,GAAG,CACnB,SAAS,CAAE,IAAI,CACf,eAAe,CAAE,YAAY,CAqB9B,8BAAI,CACH,KAAK,CAAE,OAAsB,CAC7B,SAAS,CAAE,KAAK,CAChB,cAAc,CAAE,SAAS,CACzB,WAAW,CAAE,GAAG,CAChB,cAAc,CAAE,IAAI,CAEpB,MAAM,CAAE,CAAC,CACT,OAAO,CAAE,CAAC,CAEV,qCAAQ,CAAC,OAAO,CAAC,IAAI,CACrB,oCAAO,CAAC,OAAO,CAAC,IAAI,CAGpB,qCAAQ,CACP,UAAU,CAAE,MAAM,CAUpB,kGACwB,CACvB,OAAO,CAAE,IAAI,CAId,wHACqC,CACpC,YAAY,CAAE,IAAI,CAGlB,qBAAqB,CAAE,IAAI,CAC3B,mBAAmB,CAAI,IAAI,CAC3B,kBAAkB,CAAK,IAAI,CAC3B,gBAAgB,CAAO,IAAI,CAC3B,eAAe,CAAQ,IAAI,CAC3B,WAAW,CAAY,IAAI,CAI3B,sIAAQ,CACP,OAAO,CAAE,EAAE,CACX,OAAO,CAAE,YAAY,CACrB,QAAQ,CAAE,QAAQ,CACjB,GAAG,CAAE,IAAI,CACT,IAAI,CAAE,KAAK,CACX,KAAK,CAAE,qBAAqB,CAC5B,MAAM,CAAE,qBAAqB,CAE9B,aAAa,CAAE,SAAS,CACxB,MAAM,CAAE,oBAA6B,CAErC,UAAU,CAAE,4BAA4B,CACxC,gBAAgB,CAAE,IAAI,CACtB,eAAe,CAAE,QAAQ,CAEzB,UAAU,CAAE,0BAA0B,CAEtC,MAAM,CAAE,OAAO,CAKjB,sJACoD,CACnD,gBAAgB,CCvGA,OAAO,CDwGvB,gBAAgB,CAAE,kCAAkC,CAKrD,oEAA4C,CAC3C,aAAa,CAAE,GAAG,CASnB,iGACsB,CACrB,MAAM,CAAE,MAAM,CACd,OAAO,CAAE,SAAS,CAElB,aAAa,CAAE,GAAG,CAClB,MAAM,CAAE,iBAAmB,CAE3B,KAAK,CChIW,OAAO,CDkIvB,gBAAgB,CAAE,IAAI,CAEtB,UAAU,CAAE,iDAAiD,CAG7D,6GAAO,CACN,gBAAgB,CCxID,OAAO,CDyItB,KAAK,CAAE,IAAI,CAKZ,iHAAS,CACR,YAAY,CC9IG,OAAO,CD+ItB,KAAK,CC/IU,OAAO,CDgJtB,gBAAgB,CAAE,IAAI,CAItB,6HAAO,CACN,gBAAgB,CCrJF,OAAO,CDsJrB,KAAK,CAAE,IAAI,CASd,+BAAK,CACJ,MAAM,CAAE,GAAG,CACX,MAAM,CAAE,GAAG,CAKZ,iCAAO,CACN,MAAM,CAAE,MAAM,CACd,OAAO,CAAE,SAAS,CAElB,aAAa,CAAE,GAAG,CAClB,MAAM,CAAE,iBAAiB,CAEzB,KAAK,CAAE,IAAI,CACX,WAAW,CAAE,aAAa", "sources": ["container.scss","constants.scss"], "names": [], "file": "container.css" diff --git a/css/container.scss b/css/container.scss index b16c8dc..a588459 100755 --- a/css/container.scss +++ b/css/container.scss @@ -9,6 +9,15 @@ // Gestion de l'activation des sous-parties &.active{ display: block; } + + // Gestion d'une section contenant des graphiques + &.charts{ + display: flex; + + flex-direction: row; + flex-wrap: wrap; + justify-content: space-around; + } position: relative; flex-grow: 1; diff --git a/css/font.css b/css/font.css new file mode 100755 index 0000000..af130f3 --- /dev/null +++ b/css/font.css @@ -0,0 +1,21 @@ +@font-face { + font-family: 'Proxima Nova'; + font-style: normal; + font-weight: 100; + + src: url("/css/fonts/proxima-nova/thin.eot"); + src: url(/css/fonts/proxima-nova/thin#iefix.eot) format("embedded-opentype"), + url(/css/fonts/proxima-nova/thin.woff) format("woff"), + url(/css/fonts/proxima-nova/thin.ttf) format("truetype"); +} + +@font-face { + font-family: 'Proxima Nova'; + font-style: normal; + font-weight: normal; + + src: url("/css/fonts/proxima-nova/regular.eot"); + src: url(/css/fonts/proxima-nova/regular#iefix.eot) format("embedded-opentype"), + url(/css/fonts/proxima-nova/regular.woff) format("woff"), + url(/css/fonts/proxima-nova/regular.ttf) format("truetype"); +} \ No newline at end of file diff --git a/css/fonts.css b/css/fonts.css deleted file mode 100755 index e69de29..0000000 diff --git a/css/fonts/proxima-nova/regular#iefix.eot b/css/fonts/proxima-nova/regular#iefix.eot new file mode 100644 index 0000000..30d0ac5 Binary files /dev/null and b/css/fonts/proxima-nova/regular#iefix.eot differ diff --git a/css/fonts/proxima-nova/regular.eot b/css/fonts/proxima-nova/regular.eot new file mode 100644 index 0000000..30d0ac5 Binary files /dev/null and b/css/fonts/proxima-nova/regular.eot differ diff --git a/css/fonts/proxima-nova/regular.ttf b/css/fonts/proxima-nova/regular.ttf new file mode 100644 index 0000000..6690afd Binary files /dev/null and b/css/fonts/proxima-nova/regular.ttf differ diff --git a/css/fonts/proxima-nova/regular.woff b/css/fonts/proxima-nova/regular.woff new file mode 100644 index 0000000..38a81be Binary files /dev/null and b/css/fonts/proxima-nova/regular.woff differ diff --git a/css/fonts/proxima-nova/thin#iefix.eot b/css/fonts/proxima-nova/thin#iefix.eot new file mode 100644 index 0000000..0d59619 Binary files /dev/null and b/css/fonts/proxima-nova/thin#iefix.eot differ diff --git a/css/fonts/proxima-nova/thin.eot b/css/fonts/proxima-nova/thin.eot new file mode 100644 index 0000000..0d59619 Binary files /dev/null and b/css/fonts/proxima-nova/thin.eot differ diff --git a/css/fonts/proxima-nova/thin.ttf b/css/fonts/proxima-nova/thin.ttf new file mode 100644 index 0000000..acdc7f3 Binary files /dev/null and b/css/fonts/proxima-nova/thin.ttf differ diff --git a/css/fonts/proxima-nova/thin.woff b/css/fonts/proxima-nova/thin.woff new file mode 100644 index 0000000..ae6fde2 Binary files /dev/null and b/css/fonts/proxima-nova/thin.woff differ diff --git a/css/layout.scss b/css/layout.scss index 4a44883..27ae001 100755 --- a/css/layout.scss +++ b/css/layout.scss @@ -1,6 +1,6 @@ @import 'constants'; -body{ +body{ font-family: 'Open Sans'; font-size: 15px; @@ -23,7 +23,7 @@ body{ z-index: 1; - + /* [1] Header de la page ==========================================*/ & > #HEADER{ @@ -42,9 +42,9 @@ body{ } - + /* [2] Side-Menu de la page - ==========================================*/ + ==========================================*/ // Gestion du menu & > #MENU-SIDE{ display: block; @@ -62,7 +62,7 @@ body{ z-index: 10; } - + /* [3] Container de la page ==========================================*/ @@ -101,7 +101,7 @@ body{ &.active{ left: 0; } - + // flex properties flex-direction: row; flex-wrap: nowrap; @@ -131,7 +131,7 @@ body{ /* (2) Formulaire de connexion */ & > #login-form{ display: block; - + /* (2.1) Champs de texte (login/password) */ & > input[type='text'], @@ -149,7 +149,7 @@ body{ flex-wrap: nowrap; align-items: middle; - + border-radius: 5px; border: 1px solid lighten($theme-fg, 10); @@ -158,7 +158,7 @@ body{ color: $dark-fg-primary; font-weight: bold; letter-spacing: .07em; - + transition: border .2s ease-in-out; cursor: default; @@ -176,7 +176,7 @@ body{ & > input[type='submit']{ width: 100%; margin: 2em 0; - + border: 0; background-color: $theme-fg-primary; @@ -233,4 +233,4 @@ body{ cursor: pointer; } -} \ No newline at end of file +} diff --git a/index.php b/index.php index fb35d00..6ca0e5b 100755 --- a/index.php +++ b/index.php @@ -1,5 +1,5 @@ $_POST['login'], 'password' => $_POST['password'] )); $login_ans = $login->dispatch(); - // Si aucune erreur, on dit qu'on vient de se connecter + // Si aucune erreur, on dit qu'on vient de se connecter if( $login_ans->error == ManagerError::Success ) $_SESSION['login_status'] = 'logged'; else // Si on n'a pas les bonnes donnees @@ -54,7 +55,7 @@ /* (3) Gestion de le deconnexion */ $logout_vars = isset($_POST['logout-sub']); - // Si on se deconnecte + // Si on se deconnecte if( $logout_vars ){ $logout = new ModuleRequest('user/logout'); $logout_ans = $logout->dispatch(); @@ -68,6 +69,7 @@ + /* [0] On initialise le routeur ===================================================*/ $R = new Router( $_GET['url'] ); @@ -97,7 +99,7 @@ $R->post('api/?', function(){ $request = ModuleRequest::fromPost($_POST); $answer = $request->dispatch(); - + echo $answer->serialize(); }); @@ -105,7 +107,7 @@ // N'importe -> page d'accueil $R->get('.+', function(){ header('Location: /dashboard/'); }); $R->post('.+', function(){ header('Location: /dashboard/'); }); - + @@ -113,4 +115,4 @@ ===================================================*/ $R->run(); -?> \ No newline at end of file +?> diff --git a/js/action-script.js b/js/action-script.js index b32e321..c12ba0f 100755 --- a/js/action-script.js +++ b/js/action-script.js @@ -1,4 +1,216 @@ -/* [-1] On recupere la liste des pages +/* [0] Initialisation des variables en local +=========================================================*/ +var DOM = { + WRAPPER: $('WRAPPER'), + HEADER: $('HEADER'), + MENUSIDE: $('MENU-SIDE'), + CONTAINER: $('CONTAINER') + }; +var pageManager; + + +// On cree une instance de l'api +api = new APIClass('/api/'); + + + + + +/* [1] Toggle du sub-menu-side <-> navigation +===========================================*/ +function navSubMenu(subsection){ + /* [1] Format du param + ------------------------------------------------*/ + // Contient l'element courant + var current = document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink="'+pageManager.vars[0]+'"]'); + + // Contiendra l'element cible + var target = null; + + // si @subsection est un element, on le prends + target = (subsection instanceof Element) ? subsection : null; + + // Si string, on trouve l'element correspondant + target = (typeof subsection == 'string') ? document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink="'+subsection+'"]') : target; + + // Si rien trouve, on prend le premier element correspondant a la premiere page + target = (target == null) ? document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink]') : target; + + // Si le param n'est toujours pas bon, on retourne une erreur + if( target == null ) return false; + + /* [2] Gestion de l'affichage de l'element + ------------------------------------------------*/ + // On desactive l'element courant + if( current != null ) + current.remClass('active'); + + // On cache les sections visibles + var visibleSections = document.querySelectorAll('#CONTAINER > section[data-sublink].active'); + for( var i = 0 ; i < visibleSections.length ; i++ ) + visibleSections[i].remClass('active'); + + // On active le nouveau + if( target != null ){ + target.addClass('active'); + + // On affiche la section associee + var targetSection = document.querySelector('#CONTAINER > section[data-sublink="'+target.getData('sublink')+'"]'); + if( targetSection != null ) + targetSection.addClass('active'); + + } + + /* [3] Gestion de pageManager + ------------------------------------------------*/ + // Si element, on recupere le data-link + var page = null; + + // Si erreur, on retourne FALSE + if( !target.getData('sublink') ) return false + + var mustRefresh = pageManager.vars[0] != target.getData('sublink'); + + // On met a jour la variable page-manager si data-link trouve + pageManager.vars[0] = target.getData('sublink'); + + if( mustRefresh ) + // navMenu(pageManager.page); + pageManager.updateURL(); + +} + + +/* [4 Toggle du side-menu <-> navigation +===========================================*/ +function navMenu(section){ + + /* [1] Format du param + ------------------------------------------------*/ + // Contient l'element courant + var current = document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+pageManager.page+'"]'); + + // Contiendra l'element cible + var target = null; + + // si @section est un element, on le prends + target = (section instanceof Element) ? section : null; + + // Si string, on trouve l'element correspondant + target = (typeof section == 'string') ? document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+section+'"]') : target; + + // Si rien trouve, on prend le premier element correspondant a la premiere page + target = (target == null) ? document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+pageManager.pagelist[0]+'"]') : target; + + // Si le param n'est toujours pas bon, on retourne une erreur + if( target == null ) return false; + + /* [2] Gestion de l'affichage de l'element + ------------------------------------------------*/ + // On desactive l'element courant + if( current != null ) + current.remClass('active'); + // On active le nouveau + if( target != null ) + target.addClass('active'); + + /* [3] Gestion de pageManager + ------------------------------------------------*/ + // Si element, on recupere le data-link + var page = null; + + // On charge la page si data-link trouve + if( target.getData('link') ){ + DOM.HEADER.addClass('loading'); // Animation de chargement + + pageManager.setPage( target.getData('link') ); + + pageManager.activeXHR.addEventListener('loadend', function(){ + + // On gere la navigation du sous-menu (si defini, utilise) + var subSectionExists = pageManager.vars.length >= 1 && document.querySelector('#CONTAINER > section[data-sublink="'+pageManager.vars[0]+'"]') != null; + if( subSectionExists ) // Si le lien du menu associe existe + navSubMenu(pageManager.vars[0]); // on charge la page associee + else // sinon + navSubMenu(null); // on charge le lien par defaut + + + // GESTION DE LA NAVIGATION DU SOUS-MENU + // si le sous-menu existe + var smenu = document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub'); + if( smenu != null ) + smenu.addEventListener('click', function(e){ + var target = e.target; + + while( target != document.body && !target.getData('sublink') ) + target = target.parentNode; + + if( target.getData('sublink') ) + navSubMenu(target); + }, false); + + // On retire l'icone de chargement + DOM.HEADER.remClass('loading'); + }, false); + } + +} + + + + + + + + + + + + + + + + + + +/* [5] Gestion de la navigation (physique) +===========================================*/ +DOM.MENUSIDE.addEventListener('click', function(e){ + var target = e.target; + + // On remonte dans les parents au bon niveau + while( target != document.body && !target.getData('link') ) + target = target.parentNode; + + // Si on a trouve l'element, on l'utilise pour la page + if( target.getData('link') ) + navMenu(target.getData('link')); +}, false); + + + +/* [6] Gestion du rechargement de page +=========================================================*/ +function reload(){ navMenu( pageManager.page ); } + +/* [7] Gestion du toggle de la page de login +=========================================================*/ +var LOGIN = { + show: document.getElementById('user-data'), + hide: document.getElementById('login-close'), + page: document.getElementById('LOGIN') +}; + +/* (1) Gestion de l'affichage de la page de login */ +LOGIN.show.addEventListener('click', function(e){ LOGIN.page.className = 'active'; }, false); + +/* (2) Gestion de la fermeture de la page de login */ +LOGIN.hide.addEventListener('click', function(e){ LOGIN.page.className = ''; }, false); + + + + +/* [7] On recupere la liste des pages et on lance pageManager =========================================================*/ pageManagerClass.prototype.ajax('/f/json/menu/conf', function(pagelistSerialized){ // On initialise la liste des pages @@ -11,219 +223,10 @@ pageManagerClass.prototype.ajax('/f/json/menu/conf', function(pagelistSerialized for( var i = 0 ; i < pagelistObject.length; i++ ) pagelist.push( pagelistObject[i]['attributes']['data-link'] ); - - - - DOM = { - WRAPPER: $('WRAPPER'), - HEADER: $('HEADER'), - MENUSIDE: $('MENU-SIDE'), - CONTAINER: $('CONTAINER') - }; - - - - /* [0] Instanciation - ===========================================*/ - var pageManager = new pageManagerClass(); + /* (1) On initialisa pageManager */ + pageManager = new pageManagerClass(); pageManager.setPage(null, '/view', DOM.CONTAINER, pagelist ); - var api = new APIClass('/api/'); - - - - - - /* [1] Toggle du sub-menu-side <-> navigation - ===========================================*/ - function navSubMenu(subsection){ - /* [1] Format du param - ------------------------------------------------*/ - // Contient l'element courant - var current = document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink="'+pageManager.vars[0]+'"]'); - - // Contiendra l'element cible - var target = null; - - // si @subsection est un element, on le prends - target = (subsection instanceof Element) ? subsection : null; - - // Si string, on trouve l'element correspondant - target = (typeof subsection == 'string') ? document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink="'+subsection+'"]') : target; - - // Si rien trouve, on prend le premier element correspondant a la premiere page - target = (target == null) ? document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub > span[data-sublink]') : target; - - // Si le param n'est toujours pas bon, on retourne une erreur - if( target == null ) return false; - - /* [2] Gestion de l'affichage de l'element - ------------------------------------------------*/ - // On desactive l'element courant - if( current != null ) - current.remClass('active'); - - // On cache les sections visibles - var visibleSections = document.querySelectorAll('#CONTAINER > section[data-sublink].active'); - for( var i = 0 ; i < visibleSections.length ; i++ ) - visibleSections[i].remClass('active'); - - // On active le nouveau - if( target != null ){ - target.addClass('active'); - - // On affiche la section associee - var targetSection = document.querySelector('#CONTAINER > section[data-sublink="'+target.getData('sublink')+'"]'); - if( targetSection != null ) - targetSection.addClass('active'); - - } - - /* [3] Gestion de pageManager - ------------------------------------------------*/ - // Si element, on recupere le data-link - var page = null; - - // Si erreur, on retourne FALSE - if( !target.getData('sublink') ) return false - - var mustRefresh = pageManager.vars[0] != target.getData('sublink'); - - // On met a jour la variable page-manager si data-link trouve - pageManager.vars[0] = target.getData('sublink'); - - if( mustRefresh ) - // navMenu(pageManager.page); - pageManager.updateURL(); - - } - - - /* [4 Toggle du side-menu <-> navigation - ===========================================*/ - function navMenu(section){ - - /* [1] Format du param - ------------------------------------------------*/ - // Contient l'element courant - var current = document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+pageManager.page+'"]'); - - // Contiendra l'element cible - var target = null; - - // si @section est un element, on le prends - target = (section instanceof Element) ? section : null; - - // Si string, on trouve l'element correspondant - target = (typeof section == 'string') ? document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+section+'"]') : target; - - // Si rien trouve, on prend le premier element correspondant a la premiere page - target = (target == null) ? document.querySelector('#WRAPPER > #MENU-SIDE > span[data-link="'+pageManager.pagelist[0]+'"]') : target; - - // Si le param n'est toujours pas bon, on retourne une erreur - if( target == null ) return false; - - /* [2] Gestion de l'affichage de l'element - ------------------------------------------------*/ - // On desactive l'element courant - if( current != null ) - current.remClass('active'); - // On active le nouveau - if( target != null ) - target.addClass('active'); - - /* [3] Gestion de pageManager - ------------------------------------------------*/ - // Si element, on recupere le data-link - var page = null; - - // On charge la page si data-link trouve - if( target.getData('link') ){ - DOM.HEADER.addClass('loading'); // Animation de chargement - - pageManager.setPage( target.getData('link') ); - - pageManager.activeXHR.addEventListener('loadend', function(){ - - // On gere la navigation du sous-menu (si defini, utilise) - var subSectionExists = pageManager.vars.length >= 1 && document.querySelector('#CONTAINER > section[data-sublink="'+pageManager.vars[0]+'"]') != null; - if( subSectionExists ) // Si le lien du menu associe existe - navSubMenu(pageManager.vars[0]); // on charge la page associee - else // sinon - navSubMenu(null); // on charge le lien par defaut - - - // GESTION DE LA NAVIGATION DU SOUS-MENU - // si le sous-menu existe - var smenu = document.querySelector('#MENU-SIDE > span[data-link='+pageManager.page+'] + div.sub'); - if( smenu != null ) - smenu.addEventListener('click', function(e){ - var target = e.target; - - while( target != document.body && !target.getData('sublink') ) - target = target.parentNode; - - if( target.getData('sublink') ) - navSubMenu(target); - }, false); - - // On retire l'icone de chargement - DOM.HEADER.remClass('loading'); - }, false); - } - - }navMenu(pageManager.page); - - - - - - - - - - - - - - - - - - - /* [5] Gestion de la navigation (physique) - ===========================================*/ - DOM.MENUSIDE.addEventListener('click', function(e){ - var target = e.target; - - // On remonte dans les parents au bon niveau - while( target != document.body && !target.getData('link') ) - target = target.parentNode; - - // Si on a trouve l'element, on l'utilise pour la page - if( target.getData('link') ) - navMenu(target.getData('link')); - }, false); - - - - /* [6] Gestion du rechargement de page - =========================================================*/ - function reload(){ navMenu( pageManager.page ); } - - /* [7] Gestion du toggle de la page de login - =========================================================*/ - var LOGIN = { - show: document.getElementById('user-data'), - hide: document.getElementById('login-close'), - page: document.getElementById('LOGIN') - }; - - /* (1) Gestion de l'affichage de la page de login */ - LOGIN.show.addEventListener('click', function(e){ LOGIN.page.className = 'active'; }, false); - - /* (2) Gestion de la fermeture de la page de login */ - LOGIN.hide.addEventListener('click', function(e){ LOGIN.page.className = ''; }, false); - - -}, 'GET') \ No newline at end of file + /* (2) On charge la premiere page */ + navMenu(pageManager.page); +}, 'GET'); diff --git a/js/includes/test.js b/js/includes/test.js new file mode 100644 index 0000000..84d02ea --- /dev/null +++ b/js/includes/test.js @@ -0,0 +1 @@ +var a = 'Hello World!'; diff --git a/js/lib/api.js b/js/lib/api.js index 7a1e279..d0fa097 100755 --- a/js/lib/api.js +++ b/js/lib/api.js @@ -5,25 +5,24 @@ APIClass.prototype = { xhr: [], // tableau d'objets pour les requêtes ajax - /* transaction avec le serveur (http://host/api/) * * @param pRequest l'objet passé en JSON à http://host/api/ * @param pHandler fonction qui s'éxécutera lors de la réponse (1 argument -> réponse) * @param pToken si donne, token d'auth pour l'api * - * @return answer l'objet retourné par http://host/api/ via pHandler (1er argument) + * @return answer l'objet retourné par http://host/api/ via pHandler (1er argument) * *************************************************************************************************** * * @usecase * 1. var answerObject = sendRequest( - * 2. { var1: "exemple", var2: 198294 }, - * 3. function(rep){ alert(rep); } + * 2. { var1: "exemple", var2: 198294 }, + * 3. function(rep){ alert(rep); } * 4. ); * @explain - * 1. on appelle la fonction <=> on créé la requête - * 2. on passe l'objet qui sera envoyé + * 1. on appelle la fonction <=> on créé la requête + * 2. on passe l'objet qui sera envoyé * 3. on passe une fonction qui utilise un argument (sera la réponse de http://host/api/) (sous forme d'objet) * */ @@ -46,7 +45,7 @@ APIClass.prototype = { // création de l'objet AJAX if(window.XMLHttpRequest) // IE7+, Firefox, Chrome, Opera, Safari this.xhr[i] = new XMLHttpRequest(); - else // IE5, IE6 + else // IE5, IE6 this.xhr[i] = new ActiveXObject('Microsoft.XMLHttpRequest'); console.log(pRequest); @@ -85,7 +84,7 @@ APIClass.prototype = { // Gestion du token optionnel if( pToken != null ) this.xhr[i].setRequestHeader('Authorization', 'Digest '+pToken); - + this.xhr[i].send( form ); diff --git a/js/lib/highcharts/api/css/font-awesome.min.css b/js/lib/highcharts/api/css/font-awesome.min.css new file mode 100755 index 0000000..ee4e978 --- /dev/null +++ b/js/lib/highcharts/api/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"} diff --git a/js/lib/highcharts/api/css/images/ui-bg_flat_75_ffffff_40x100.png b/js/lib/highcharts/api/css/images/ui-bg_flat_75_ffffff_40x100.png new file mode 100755 index 0000000..ca779e3 Binary files /dev/null and b/js/lib/highcharts/api/css/images/ui-bg_flat_75_ffffff_40x100.png differ diff --git a/js/lib/highcharts/api/css/images/ui-bg_glass_75_dadada_1x400.png b/js/lib/highcharts/api/css/images/ui-bg_glass_75_dadada_1x400.png new file mode 100755 index 0000000..7eda20a Binary files /dev/null and b/js/lib/highcharts/api/css/images/ui-bg_glass_75_dadada_1x400.png differ diff --git a/js/lib/highcharts/api/css/jquery-ui.min.css b/js/lib/highcharts/api/css/jquery-ui.min.css new file mode 100755 index 0000000..ec83f88 --- /dev/null +++ b/js/lib/highcharts/api/css/jquery-ui.min.css @@ -0,0 +1,7 @@ +/*! jQuery UI - v1.11.4 - 2015-08-24 +* http://jqueryui.com +* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px +* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */ + +.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url("images/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url("images/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px} \ No newline at end of file diff --git a/js/lib/highcharts/api/css/ref.css b/js/lib/highcharts/api/css/ref.css new file mode 100755 index 0000000..3a2dcf7 --- /dev/null +++ b/js/lib/highcharts/api/css/ref.css @@ -0,0 +1,594 @@ +.clearfix { + clear: both; +} +.hidden { + visibility: hidden; +} +.container { + width: auto; + padding: 30px; + margin: auto; +} +* { + font-family: 'Source Sans Pro', sans-serif; +} + +body { + margin: 0; + background-color: #15151d; + font-size: 1em; + overflow-x: hidden; +} +h3 { + text-transform: uppercase; + margin-bottom: 3px; +} + +p { + margin: 0 0 1em 0; +} +a { + color: #8085e8; + text-decoration: none; + font-weight: bold; +} +a:hover { + color: #90ee7e; +} + +#nav a.dump { + padding: 0px; + margin: 0px; +} + +/* +========== +=== Header +========== +*/ +#top { + background-color: #252530; +} +#top .container { + padding: 0; +} +#top h1 { + color: #eeeaea; + font-weight: 100; + margin: 0; + font-size: 1.5em; +} +.cell { + width: 33%; + display: inline-block; + vertical-align: middle; +} + +.cell:nth-child(4) { + text-align: right; + color:#eeeaea; + font-size: 0.9em; +} + +#logo { + display: block; + +} +#logo img { + max-width: 200px; + width: 100%; + margin: 15px; + margin-left: 33px; + height: 32px; +} + +/* Search bar */ +#search-div { + color: #252530; + display: block; + margin-bottom: 20px; + border: 1px solid #252530; +} + +div#search-div i { + margin: 5px; + color: #252530; + font-size: 14px; +} + +input#search { + height: 18px; + font-family: "Courier New", Courier, monospace; + font-size: 0.9em; + background-color: transparent; + border: none; + outline: none; + color: #252530; + width:80%; +} + +.ui-autocomplete { + max-height: 500px; + max-width: 400px; + overflow-y: auto; + overflow-x: auto; +} + +.ui-menu .ui-menu-item { + font-size:14px; + zoom:1; + font-family: "Courier New", Courier, monospace; +} +.ui-widget-content a { + color: #222222 /*{fcContent}*/; +} + +/* +============== +=== END Header +============== +*/ +/* +========== +=== Footer +========== +*/ +#footer { + background-color: #15151d; + color: #eeeaea; +} +#footer-copy { + float: left; + font-size: 14px; + line-height: 18px; +} +#footer-social { + float: right; +} +#footer-social a { + color: #eeeaea; + font-size: 18px; + margin-left: 10px; +} +#footer-social a:hover { + color: #90ee7e; +} +#footer .container { + padding: 10px; +} +#scrollTop { + position: fixed; + bottom: 75px; + right: 50px; + background-color: #90ee7e; + padding: 10px; + border-radius: 2px; + color: white; + display: none; +} +#scrollTop:hover { + color: black; +} +/* +============== +=== END Footer +============== +*/ + +#reference-loading { + margin-top: 300px; + text-align: center; +} + +/* +=========== +=== Wrapper +=========== +*/ +#splashText { + display: none; +} +.nav-section h3 { + font-size: 24px; + margin-top: 0; +} + +#wrapper{ + background-color: #d6d1d1; +} +#wrapper .container { + padding: 0; +} +#wrapper-inner { + background-color: #ffffff; + /*border: 1px solid silver;*/ +} + +.tree a { + color: #252530; +} + +#nav .tree, #nav .tree * { + font-family: "Courier New", Courier, monospace; +} + +#nav .header p { + font-weight: normal; + color: #666; +} + +#nav h1, +#details h1, +#details h2 { + font-weight: 100; + margin-bottom: 1em; +} + +#nav h1, +#details h2 { + text-transform: uppercase; +} + +#nav { + min-height: 100%; + border-right: 1px solid silver; +} + +#nav-wrap { + width: 30%; + float:left; + overflow: auto; +} + +#nav a,#nav a:visited { + font-weight: bold; + padding: 0 2px; + margin: 1px; +} + +.nav-section { + padding: 30px; + position: relative; +} +.nav-section:last-child { + border-bottom: none; +} + +#nav .level { + margin-left: 13px; + display: none; +} + +#nav .level-0 { + display: block; +} + +#nav a.level-0 { + margin-left: 1em; +} + +#nav .menuitem { + position: relative; +} + +#nav .value { + width: 40%; + overflow: hidden; + color: silver; + position: absolute; + white-space: nowrap; +} +#nav .value-string, #nav .value-color { + color: #39A832; +} +#nav .value-number { + color: #297EA8; +} + +a.hilighted { + background-color: #C5F7BE; +} + +#nav .plus { + display: block; + position: absolute; + left: -12px; + top: 0; + width: 9px; + height: 9px; + font-family: FontAwesome; + color: gray; + +} +#nav .plus:before { +} + +#nav .collapsed>.plus:before { + content: "\f0da"; +} + +#nav .expanded>.plus:before { + content: "\f0d7"; +} + +#nav .dots { + padding: 0 4px; +} +#nav .expanded>.dots { + display: none; +} + +#nav .dots.loading { + background: url(./../images/ajax-loader.gif) no-repeat center; +} +#nav .dots.error { + color: red; + font-weight: bold; +} + +#nav .dots.loading span { + visibility: hidden; +} + +#nav code { + color:#8085e8; + font-weight: bold; +} + +#nav span.typed { + margin-left: 15px; +} +#nav .collapsed span.typed { + margin-left: 0; +} +#nav .collapsed br.typed { + display: none; +} + +#methods-and-properties-toc ul { + margin-left: 0; + padding-left: 1em; +} + +#options-tree,#global-options-tree,#objects-tree { + font-size: 0.9em; +} + +pre,code { + font-family: "Courier New", Courier, monospace; +} + +#overview { + margin-left: 420px; +} + +#details-wrap { + float: right; + width: 70%; + overflow:auto; + margin:0px; + padding:0px; +} + +/* Member styling */ +.member { + padding: 30px; + overflow-y: hidden; + position: relative; + border-top: 1px solid silver; +} + +.member:first-child { + color:green; +} + +.member.deprecated * { + color: silver !important; +} + +.member.hilighted { + background-color: #eefdec; +} + +.member .title, .member .title a, .member .returnType { + font-family: "Courier New", Courier, monospace; + font-size: 1.1em; + font-weight: bold; + margin-bottom: 5px; + display: inline-block; +} + +.member .title a{ + text-decoration: underline; +} + +.member .default { + display: none; +} + +.member .since { + float: right; + font-size: 0.8em; +} + +.member .description { + color: #666; +} +.member .context { + padding: 1em 0; +} + +.description code { + color: #666; + font-weight: normal; +} + +.section { + padding-top: 25px; +} + +.section .demo, .member .demo { + font-style: italic; + margin-top: 1.5em; + margin-bottom:0.5em; + margin-left: 1.5em; +} + +.section .member .demo { + margin-left: 0em; +} + +.section h1, +.section h2, +.section .section-description { + padding-left: 25px; +} + +.section h1 { + margin: 0px; + font-family: "Courier New", Courier, monospace; +} + +.section-description { + margin: 0 0 1em 0; +} + +/*gert*/ +.menuitem div { + margin-left: 8px; +} + +.tree { + padding-left: 24px; +} + +div.edit { + float: right +} + +/*edit form*/ +form#optionAttribute td.inp { + width: 450px; +} + +form#optionAttribute td input { + width: 100%; +} + +form#optionAttribute td textarea { + width: 100%; +} + +form#optionAttribute td input[type="checkbox"] { + width: 20px; +} + +.pencil { + background-image: url(./../images/edit.png); +} + +.remove { + background-image: url(./../images/delete.gif); +} + +.add { + background-image: url(./../images/add.png); +} + +.copy { + background-image: url(./../images/copy.png); +} + +.pencil, .add, .remove, .copy { + background-repeat: no-repeat; + background-position: center; + float: right; + position: relative; + width: 10px; + padding: 8px; +} + +.pencil a,.add a,.remove a, .copy a { + text-decoration: none; + padding: 5px; +} + +.deprecated, .error { + color: red; + font-weight: bold; +} + +dl#inhMembers dd a,span.returnType { + margin-left: 3px; +} + +/* fix for icons changing containers height, affects updateHeights, javascript function */ +#footer-social i:before { + line-height: 1.5; +} + +@media screen and (max-width: 767px) { + .nav-section-inner { + display: none; + } + #nav-wrap { + width: 100%; + } + #details-wrap { + width: 100%; + } + .nav-section { + padding: 0px; + } + #search-div{ + margin:30px; + } + #wrapper, + #wrapper-inner, + #details-wrap { + height: auto !important; + } + .cell { + width: 48%; + text-align: center !important; + } + .cell:nth-child(1) { + width: 100%; + } + #splashText { + padding: 30px; + text-align: center; + } + #splashText.section { + border: none; + } + #splashText img { + width: 100%; + max-width: 380px; + } + #scrollTop { + display: block; + } + .section { + padding-top: 0px; + } + #logo img { + margin-left:0px; + margin-right:0px; + } +} +@media screen and (max-width: 479px) { + #footer-copy, + #footer-social { + float: none; + text-align: center; + padding: 5px 0; + } + .cell { + width: 100%; + } + .ui-autocomplete { + max-height: 300px; + max-width: 275px; + overflow-x:auto; + } diff --git a/js/lib/highcharts/api/css/source-sans-pro.css b/js/lib/highcharts/api/css/source-sans-pro.css new file mode 100755 index 0000000..0c8ccc9 --- /dev/null +++ b/js/lib/highcharts/api/css/source-sans-pro.css @@ -0,0 +1,131 @@ +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-ExtraLight.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-ExtraLight.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-ExtraLight.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-ExtraLightIt.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-ExtraLightIt.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-ExtraLightIt.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-ExtraLightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-Light.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-Light.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-Light.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-LightIt.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-LightIt.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-LightIt.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-LightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-Regular.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-Regular.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-Regular.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-It.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-It.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-It.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-It.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-Semibold.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-Semibold.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-Semibold.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-SemiboldIt.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-SemiboldIt.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-SemiboldIt.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-SemiboldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-Bold.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-Bold.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-Bold.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-BoldIt.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-BoldIt.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-BoldIt.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-BoldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-Black.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-Black.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-Black.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-Black.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: italic; + font-stretch: normal; + src: url('../fonts/sourcesanspro/EOT/SourceSansPro-BlackIt.eot') format('embedded-opentype'), + url('../fonts/sourcesanspro/WOFF/OTF/SourceSansPro-BlackIt.otf.woff') format('woff'), + url('../fonts/sourcesanspro/OTF/SourceSansPro-BlackIt.otf') format('opentype'), + url('../fonts/sourcesanspro/TTF/SourceSansPro-BlackIt.ttf') format('truetype'); +} diff --git a/js/lib/highcharts/api/fonts/fontawesome-webfont.woff b/js/lib/highcharts/api/fonts/fontawesome-webfont.woff new file mode 100755 index 0000000..628b6a5 Binary files /dev/null and b/js/lib/highcharts/api/fonts/fontawesome-webfont.woff differ diff --git a/js/lib/highcharts/api/highcharts.html b/js/lib/highcharts/api/highcharts.html new file mode 100755 index 0000000..4df0208 --- /dev/null +++ b/js/lib/highcharts/api/highcharts.html @@ -0,0 +1,122 @@ + + + + + +Highcharts API Reference + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+

Options Reference v4.2.4

+
+
See also options for Highstock, Highmaps +
+
+
+
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+ + + + diff --git a/js/lib/highcharts/api/images/Highcharts.svg b/js/lib/highcharts/api/images/Highcharts.svg new file mode 100755 index 0000000..c07a9cc --- /dev/null +++ b/js/lib/highcharts/api/images/Highcharts.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/js/lib/highcharts/api/images/apple-touch-icon-114x114.png b/js/lib/highcharts/api/images/apple-touch-icon-114x114.png new file mode 100755 index 0000000..d0745ff Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-114x114.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-120x120.png b/js/lib/highcharts/api/images/apple-touch-icon-120x120.png new file mode 100755 index 0000000..cd4599f Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-120x120.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-144x144.png b/js/lib/highcharts/api/images/apple-touch-icon-144x144.png new file mode 100755 index 0000000..49cd184 Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-144x144.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-152x152.png b/js/lib/highcharts/api/images/apple-touch-icon-152x152.png new file mode 100755 index 0000000..73865ce Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-152x152.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-180x180.png b/js/lib/highcharts/api/images/apple-touch-icon-180x180.png new file mode 100755 index 0000000..79bee95 Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-180x180.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-57x57.png b/js/lib/highcharts/api/images/apple-touch-icon-57x57.png new file mode 100755 index 0000000..8995325 Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-57x57.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-60x60.png b/js/lib/highcharts/api/images/apple-touch-icon-60x60.png new file mode 100755 index 0000000..7e1ba3a Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-60x60.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-72x72.png b/js/lib/highcharts/api/images/apple-touch-icon-72x72.png new file mode 100755 index 0000000..55af2c2 Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-72x72.png differ diff --git a/js/lib/highcharts/api/images/apple-touch-icon-76x76.png b/js/lib/highcharts/api/images/apple-touch-icon-76x76.png new file mode 100755 index 0000000..2bbc9c1 Binary files /dev/null and b/js/lib/highcharts/api/images/apple-touch-icon-76x76.png differ diff --git a/js/lib/highcharts/api/images/favicon-160x160.png b/js/lib/highcharts/api/images/favicon-160x160.png new file mode 100755 index 0000000..557da46 Binary files /dev/null and b/js/lib/highcharts/api/images/favicon-160x160.png differ diff --git a/js/lib/highcharts/api/images/favicon-16x16.png b/js/lib/highcharts/api/images/favicon-16x16.png new file mode 100755 index 0000000..98e8169 Binary files /dev/null and b/js/lib/highcharts/api/images/favicon-16x16.png differ diff --git a/js/lib/highcharts/api/images/favicon-192x192.png b/js/lib/highcharts/api/images/favicon-192x192.png new file mode 100755 index 0000000..df415c3 Binary files /dev/null and b/js/lib/highcharts/api/images/favicon-192x192.png differ diff --git a/js/lib/highcharts/api/images/favicon-32x32.png b/js/lib/highcharts/api/images/favicon-32x32.png new file mode 100755 index 0000000..625ac9b Binary files /dev/null and b/js/lib/highcharts/api/images/favicon-32x32.png differ diff --git a/js/lib/highcharts/api/images/favicon-96x96.png b/js/lib/highcharts/api/images/favicon-96x96.png new file mode 100755 index 0000000..e219a75 Binary files /dev/null and b/js/lib/highcharts/api/images/favicon-96x96.png differ diff --git a/js/lib/highcharts/api/images/splash.svg b/js/lib/highcharts/api/images/splash.svg new file mode 100755 index 0000000..cbdc638 --- /dev/null +++ b/js/lib/highcharts/api/images/splash.svg @@ -0,0 +1,43 @@ + + + + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/js/lib/highcharts/api/images/sprite.png b/js/lib/highcharts/api/images/sprite.png new file mode 100755 index 0000000..f36941a Binary files /dev/null and b/js/lib/highcharts/api/images/sprite.png differ diff --git a/js/lib/highcharts/api/js/highcharts.json b/js/lib/highcharts/api/js/highcharts.json new file mode 100755 index 0000000..4d1ee35 --- /dev/null +++ b/js/lib/highcharts/api/js/highcharts.json @@ -0,0 +1,2 @@ +offline.highcharts.object = [{"name":"Axis","fullname":"Axis","returnType":"","description":"

A chart can have from 0 axes (pie chart) to multiples. In a normal, single series cartesian chart, there is one X axis and one Y axis.

The X axis or axes are referenced by chart.xAxis, which is an array of Axis objects. If there is only one axis, it can be referenced through chart.xAxis[0], and multiple axes have increasing indices. The same pattern goes for Y axes.

If you need to get the axes from a series object, use the series.xAxis andseries.yAxis properties. These are not arrays, as one series can only be associated to one X and one Y axis.

A third way to reference the axis programmatically is by id. Add an id in the axis configuration options, and get the axis by chart.get(id).

Configuration options for the axes are given in options.xAxis and options.yAxis.

","title":"Axis","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Axis--getExtremes","fullname":"Axis.getExtremes","type":"method","returnType":"Object","description":"Get the current extremes for the axis.","title":"getExtremes","isParent":false,"parent":"Axis","params":"()","paramsDescription":"dataMax: The maximum value of the axis' associated series.||dataMin: The minimum value of the axis' associated series.||max: The maximum axis value, either automatic or set manually. If the max option is not set and maxPadding is 0, this value will be the same as dataMax.||min: The minimum axis value, either automatic or set manually. If the min option is not set and minPadding is 0, this value will be the same as dataMin.","demo":"Report extremes by click on a button","since":"1.2.0","deprecated":false},{"name":"Axis--remove","fullname":"Axis.remove","type":"method","returnType":"","description":"Remove an axis from the chart.","title":"remove","isParent":false,"parent":"Axis","params":"(Boolean redraw)","paramsDescription":"redraw: Boolean
\r\nDefaults to true. Whether to redraw the chart following the remove. ","demo":"Add and remove axes","since":"3.0","deprecated":false},{"name":"Axis--removePlotBand","fullname":"Axis.removePlotBand","type":"method","returnType":"","description":"Remove a plot band by its id.","title":"removePlotBand","isParent":false,"parent":"Axis","params":"(String id)","paramsDescription":"id: String
The plot band's id as given in the original configuration object or in the addPlotBand method.","demo":"Remove plot band by id, Toggle the plot band from a button","since":"1.2.0","deprecated":false},{"name":"Axis--removePlotLine","fullname":"Axis.removePlotLine","type":"method","returnType":"","description":"Remove a plot line by its id.","title":"removePlotLine","isParent":false,"parent":"Axis","params":"(String id)","paramsDescription":"id: String
The plot line's id as given in the original configuration object or in the addPlotLine method.","demo":"Remove plot line by id,toggle the plot line from a button","since":"1.2.0","deprecated":false},{"name":"Axis--setCategories","fullname":"Axis.setCategories","type":"method","description":"Set new categories for the axis.","title":"setCategories","isParent":false,"parent":"Axis","params":"(Array cateories, [Boolean redraw])","paramsDescription":"categories: Array
The new category names.||redraw: Boolean
Defaults to true. Whether to redraw the axis or wait for an explicit call to chart.redraw().","demo":"Set categories by click on a button","since":"1.2.0"},{"name":"Axis--setExtremes","fullname":"Axis.setExtremes","type":"method","returnType":"","description":"Set the minimum and maximum of the axes after render time. If the startOnTick and endOnTick options are true, the minimum and maximum values are rounded off to the nearest tick. To prevent this, these options can be set to false before calling setExtremes. Also, setExtremes will not allow a range lower than the minRange option, which by default is the range of five points.","title":"setExtremes","isParent":false,"parent":"Axis","params":"(Number min, Number max, [Boolean redraw], [Mixed animation])","paramsDescription":"min: Number
The new minimum value||max: Number
The new maximum value||redraw: Boolean
Defaults to true. Whether to redraw the chart or wait for an explicit call to chart.redraw().||animation: Mixed
Defaults to true. When true, the resize will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Set extremes from button,Set extremes on datetime axis,setting extremes off ticks","since":"1.2.0","deprecated":false},{"name":"Axis--toPixels","fullname":"Axis.toPixels","type":"method","returnType":"Number","description":"Translates a value in terms of axis units in to pixels within the chart.","title":"toPixels","isParent":false,"parent":"Axis","params":"(Number value, [Boolean paneCoordinates])","paramsDescription":"value: Number
\r\nA value in terms of axis units.||\r\n\r\npaneCoordinates: Boolean
\r\nWhether to return the pixel coordinate relative to the chart or just the axis/pane itself.","demo":"","since":"3.0","deprecated":false},{"name":"Axis--toValue","fullname":"Axis.toValue","type":"method","returnType":"Number","description":"Translate a pixel position along the axis to a value in terms of axis units.","title":"toValue","isParent":false,"parent":"Axis","params":"(Number pixel, [Boolean paneCoordinates])","paramsDescription":"pixel: Number
\r\nA pixel position along the axis.||\r\n\r\npaneCoordinates: Boolean
\r\nWhether the input pixel position is relative to the chart or just the axis/pane itself.","demo":"","since":"3.0","deprecated":false},{"name":"Axis--update","fullname":"Axis.update","type":"method","returnType":"","description":"Update an axis object with a new set of options. The options are merged with the existing options, so only new or altered options need to be specified.","title":"update","isParent":false,"parent":"Axis","params":"(Object options, [Boolean redraw])","paramsDescription":"options: Object
\r\nThe new options that will be merged in with existing options on the axis.||\r\n\r\nredraw: Boolean
\r\nDefaults to true. Whether to redraw the chart after the new options are set. ","demo":"Axis update demo","since":"3.0","deprecated":false},{"name":"Chart","fullname":"Chart","returnType":"","description":"

The chart object is the JavaScript object representing a single chart in the web page.The pointer to your chart object is returned when a chart is created using the Highcharts.Chart() constructor:

var chart1 = new Highcharts.Chart(options);
","title":"Chart","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Chart--addAxis","fullname":"Chart.addAxis","type":"method","returnType":"","description":"Add an axis to the chart after render time. Note that this method should never be used when adding data synchronously at chart render time, as it adds expense to the calculations and rendering. When adding data at the same time as the chart is initiated, add the axis as a configuration option instead.","title":"addAxis","isParent":false,"parent":"Chart","params":"(Object options, [Boolean isX], [Boolean redraw], [Mixed animation])","paramsDescription":"options: Object
\r\nThe Axis options, as documented under xAxis and yAxis.||\r\n\r\nisX: Boolean
\r\nWhether it is an X axis or Y axis.||\r\n\r\nredraw: Boolean
\r\nDefaults to true. Whether to redraw the chart after the series is added. See the redraw() method below.||\r\n\r\nanimation: Mixed
\r\nDefaults to true. When true, the series' updating will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Add and remove axes","since":"3.0","deprecated":false},{"name":"Chart--addSeries","fullname":"Chart.addSeries","type":"method","returnType":"Series","description":"Add a series to the chart after render time. Note that this method should never be used when adding data synchronously at chart render time, as it adds expense to the calculations and rendering. When adding data at the same time as the chart is initiated, add the series as a configuration option instead.","title":"addSeries","isParent":false,"parent":"Chart","params":"(Object options, [Boolean redraw], [Mixed animation])","paramsDescription":"options: Object
\r\nThe series options, as documented under plotOptions.series and under the plotOptions for each series type.||\r\n\r\nredraw: Boolean
\r\nDefaults to true. Whether to redraw the chart after the series is added. See the redraw() method below.||\r\n\r\nanimation: Mixed
\r\nDefaults to true. When true, the series' updating will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Add a series from a button","since":"1.2.0","deprecated":false},{"name":"Chart--exportChart","fullname":"Chart.exportChart","type":"method","returnType":"","description":"Exporting module required. Submit an SVG version of the chart to a server along with some parameters for conversion.","title":"exportChart","isParent":false,"parent":"Chart","params":"(Object options, Object chartOptions)","paramsDescription":"options: Object
Exporting options. Out of the exporting options, the following options can be given as parameters to the exportChart method. All options default to the values given in the exporting config options. \r\nfilename: the filename for the export without extension, \r\nurl: the URL for the server module to do the conversion, \r\nwidth: the width of the PNG or JPEG image generated on the server, \r\ntype: the MIME type of the converted image, \r\nsourceWidth: the width of the source (in-page) chart, \r\nsourceHeight: the height of the source chart.||\r\n\r\nchartOptions: Object
Additional chart options for the exported chart. For example a different background color can be added here.","demo":"Export with no options, PDF type and custom filename, different chart background in export","since":"2.0","deprecated":false},{"name":"Chart--get","fullname":"Chart.get","type":"method","returnType":"Axis|Series|Point","description":"Get an axis, series or point by its id as given in the configuration options.","title":"get","isParent":false,"parent":"Chart","params":"(String id)","paramsDescription":"id: String
The id of the axis, series or point to get.","demo":"Get series by id","since":"1.2.0"},{"name":"Chart--getSVG","fullname":"Chart.getSVG","type":"method","returnType":"String","description":"Exporting module required. Get an SVG string representing the chart.","title":"getSVG","isParent":false,"parent":"Chart","params":"(Object additionalOptions)","paramsDescription":"additionalOptions: Object
Chart options to add to the exported chart in addition to the options given for the original chart. For example if series.lineWidth should be greater in the exported chart than in the original, or the chart should have a different background color, this is added here.","demo":"View the SVG from a button","since":"2.0","deprecated":false},{"name":"Chart--getSelectedPoints","fullname":"Chart.getSelectedPoints","type":"method","returnType":"Array","description":"Returns an array of all currently selected points in the chart. Points can be selected either programmatically by the point.select() method or by clicking.","title":"getSelectedPoints","isParent":false,"parent":"Chart","params":"()","paramsDescription":"An array of the selected points.","demo":"Get selected points","since":"1.2.0","deprecated":false},{"name":"Chart--destroy","fullname":"Chart.destroy","type":"method","returnType":"","description":"Removes the chart and purges memory. This method should be called before writing a new chart into the same container. It is called internally on window unload to prevent leaks.","title":"destroy","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"Destroy the chart from a button","since":"1.2.2","deprecated":false},{"name":"Chart--options","fullname":"Chart.options","type":"property","returnType":"Object","description":"The options structure for the chart.","title":"options","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Chart--xAxis","fullname":"Chart.xAxis","type":"property","returnType":"Array","description":"An array of the chart's x axes. If only one x axis, it is referenced by chart.xAxis[0].","title":"xAxis","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Chart--yAxis","fullname":"Chart.yAxis","type":"property","returnType":"Array","description":"An array of the chart's y axes. If only one y axis, it is referenced by chart.yAxis[0].","title":"yAxis","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Chart--container","fullname":"Chart.container","type":"property","returnType":"Object","description":"A reference to the containing HTML element, dynamically inserted into the element given in chart.renderTo.","title":"container","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"1.2.5","deprecated":false},{"name":"Point--series","fullname":"Point.series","type":"property","returnType":"Series","description":"The series object associated with the point.","title":"series","isParent":false,"parent":"Point","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Chart--print","fullname":"Chart.print","type":"method","returnType":"","description":"Exporting module required. Clears away other elements in the page and prints the chart as it is displayed. By default, when the exporting module is enabled, a button at the upper left calls this method.","title":"print","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"Print from a HTML button","since":"2.0","deprecated":false},{"name":"Chart--setSize","fullname":"Chart.setSize","type":"method","returnType":"","description":"Resize the chart to a given width and height.","title":"setSize","isParent":false,"parent":"Chart","params":"(Number width, Number height, [Mixed animation])","paramsDescription":"width: Number
The new pixel width of the chart.||height: Number
The new pixel height of the chart.||animation: Mixed
Defaults to true. When true, the resize will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Test resizing from buttons, add a jQuery UI resizable","since":"","deprecated":false},{"name":"Chart--showLoading","fullname":"Chart.showLoading","type":"method","returnType":"null","description":"Dim the chart's plot area and show a loading label text. Options for the loading screen are defined at options.loading. A custom text can be given as a parameter for loading.","title":"showLoading","isParent":false,"parent":"Chart","params":"(String str)","paramsDescription":"","demo":"Show and hide loading from a button,apply different text labels.","since":"2.0.5","deprecated":false},{"name":"Chart--updatePosition","fullname":"Chart.updatePosition","type":"method","returnType":"","description":"This method is deprecated as of 2.0.1. Updating the chart position after a move operation is no longer necessary.","title":"updatePosition","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"","since":"1.2.5","deprecated":true},{"name":"Element","fullname":"Element","returnType":"","description":"

The Element class is a JavaScript wrapper for SVG elements used in the rendering layer of Highchart. Combined with the Renderer object, these elements allows freeform annotation in the charts or even in your HTML pages without creating a chart at all.

","title":"Element","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Element--add","fullname":"Element.add","type":"method","returnType":"Element","description":"Add the element to the renderer canvas.","title":"add","isParent":false,"parent":"Element","params":"[(Object parent)]","paramsDescription":"parent: Object
The element can be added to a g (group) element.","demo":"Elements added to a group","since":"2.0"},{"name":"Element--animate","fullname":"Element.animate","type":"method","returnType":"Element","description":"Apply numeric attributes to the SVG/VML element by animation. See Element.attr() for more information on setting attributes.","title":"animate","isParent":false,"parent":"Element","params":"(Object attributes[, Object animation])","paramsDescription":"attributes: Object
A set of attributes to apply.||animation: Object
Optional animation parameters that are passed over to jQuery or other framework. Valid properties depend on the library, but options like duration, easing and complete are supported by jQuery.","demo":"Setting some attributes by animation","since":"2.0","deprecated":false},{"name":"Element--css","fullname":"Element.css","type":"method","returnType":"Element","description":"Apply some CSS properties to the element","title":"css","isParent":false,"parent":"Element","params":"(Object hash)","paramsDescription":"hash: Object
The object literal of CSS properties to apply. Properties should be hyphenated, not camelCased.","demo":"Styled text","since":"2.0"},{"name":"Element--on","fullname":"Element.on","type":"method","returnType":"Element","description":"Apply an event handler to the element","title":"on","isParent":false,"parent":"Element","params":"(String eventType, Function handler)","paramsDescription":"eventType: String
The event type to attach, for example 'click', 'mouseover', 'touch'.||handler: Function
The event handler function.","demo":"A clickable rectangle.","since":"2.0"},{"name":"Element--toFront","fullname":"Element.toFront","type":"method","returnType":"Element","description":"Bring the element to the front. Alternatively, a zIndex attribute can be given.","title":"toFront","isParent":false,"parent":"Element","paramsDescription":"The element object","demo":"Click an element to bring it to front.","since":"2.0"},{"name":"Highcharts","fullname":"Highcharts","returnType":"","description":"

The namespace under which all other Highcharts variables are assembled is called Highcharts.

var chart1 = new Highcharts.Chart(options);
","title":"Highcharts","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Highcharts--charts","fullname":"Highcharts.charts","type":"Array","returnType":"Array","description":"An array containing the current chart objects in the page. A chart's position in the array is preserved throughout the page's lifetime. When a chart is destroyed, the array item becomes undefined.","title":"charts","isParent":false,"parent":"Highcharts","params":"","paramsDescription":"","demo":"","since":"2.3.4","deprecated":false},{"name":"Highcharts--dateFormat","fullname":"Highcharts.dateFormat","type":"method","returnType":"String","description":"Formats a JavaScript date timestamp (milliseconds since Jan 1st 1970) into a human readable date string. The format is a subset of the formats for PHP's strftime function. Additional formats can be given in the Highcharts.dateFormats hook, see below.","title":"dateFormat","isParent":false,"parent":"Highcharts","params":"(String format, [Number time], [Boolean capitalize])","paramsDescription":"format: String
A string containing some of the formats above.||time: Number
The JavaScript time to format.||capitalize: Boolean
Whether to capitalize words in the return string.","demo":"","since":"","deprecated":false},{"name":"Highcharts--dateFormats","fullname":"Highcharts.dateFormats","type":"Object","returnType":"","description":"A hook for defining additional date format specifiers. New specifiers are defined as key-value pairs by using the specifier as key, and a function which takes the timestamp as value. This function returns the formatted portion of the date.","title":"dateFormats","isParent":false,"parent":"Highcharts","params":"","paramsDescription":"","demo":"Adding support for week number","since":"3.0","deprecated":false},{"name":"Highcharts--setOptions","fullname":"Highcharts.setOptions","type":"method","returnType":"Object","description":"Sets the options globally for all charts created after this has been called. Takes an options JavaScript object structure as the argument. These options are merged with the default options and the result is returned.","title":"setOptions","isParent":false,"parent":"Highcharts","params":"(Object options)","paramsDescription":"options: Object
The chart configuration object.","demo":"Setting a global option,applying a general theme"},{"name":"Point","fullname":"Point","returnType":"","description":"

The Point object is the JavaScript representation of each data point

The object can be accessed in a number of ways. In all point event handlers the point object is this. In the series object all the points are accessed by the series.data array.

Another way to reference the point programmatically is by id. Add an id in the point configuration options, and get the point object by chart.get(id).

","title":"Point","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Point--percentage","fullname":"Point.percentage","type":"property","returnType":"Number","description":"The percentage for points in a stacked series or pies.","title":"percentage","isParent":false,"parent":"Point","since":"1.2.0"},{"name":"Point--remove","fullname":"Point.remove","type":"method","returnType":"","description":"Remove the point from the series.","title":"remove","isParent":false,"parent":"Point","params":"([Boolean redraw], [Mixed animation])","paramsDescription":"redraw: Boolean
Defaults to true. Whether to redraw the chart after the point is removed.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.||animation: Mixed
Defaults to true. When true, the graph's updating will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Remove point and confirm,Remove pie slice","since":"1.2.0","deprecated":false},{"name":"Point--selected","fullname":"Point.selected","type":"property","returnType":"Boolean","description":"Whether the point is selected or not.","title":"selected","isParent":false,"parent":"Point","since":"1.2.0"},{"name":"Point--slice","fullname":"Point.slice","type":"method","returnType":"","description":"Slice out or set back in a pie chart slice. This is the default way of Highcharts to visualize that a pie point is selected.","title":"slice","isParent":false,"parent":"Point","params":"([Boolean sliced], [Boolean redraw], [Mixed animation])","paramsDescription":"sliced: Boolean
When true, the point is sliced out. When false, the point is set in. When null or undefined, the sliced state is toggled.||redraw: Boolean
Defaults to true. Whether to redraw the chart after the point is altered.||animation: Mixed
Defaults to true. When true, the move will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Slice and unslice a point from a button","since":"1.2.0","deprecated":false},{"name":"Point--x","fullname":"Point.x","type":"property","returnType":"Number","description":"The x value for the point.","title":"x","isParent":false,"parent":"Point","since":"1.2.0"},{"name":"Point--y","fullname":"Point.y","type":"property","returnType":"Number","description":"The y value for the point.","title":"y","isParent":false,"parent":"Point","since":"1.2.0"},{"name":"Renderer","fullname":"Renderer","returnType":"","description":"

Allows direct access to the Highcharts rendering layer in order to draw primitive shapes like circles, rectangles,paths or text directly on a chart, or independent from any chart. The Renderer represents a wrapper object for SVGin modern browsers and VML in IE < 8.

An existing chart's renderer can be accessed through chart.renderer. To create a renderer independent from a chart, use var renderer = new Highcharts.Renderer(parentNode, width, height); where parentNode is the HTML element where you want to add it.

The Renderer's methods are chained wherever possible, so you can initiate an element then call for example attr and css and add on that element in one statement.

","title":"Renderer","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Renderer--arc","fullname":"Renderer.arc","type":"method","returnType":"Element","description":"Draw an arc on the renderer canvas.","title":"arc","isParent":false,"parent":"Renderer","params":"(Number centerX, Number centerY, Number outerRadius, Number innerRadius, Number start, Number end)","paramsDescription":"centerX: Number
The x position of the arc's center in the SVG element.||centerY: Number
The y position of the arc's center in the SVG element.||outerRadius: Number
The outer radius of the arc.||innerRadius: Number
The inner radius of the arc.||start: Number
The starting angle of the arc in radians, where 0 is to the right and -Math.PI/2 is up.||end: Number
The ending angle of the arc in radians, where 0 is to the right and -Math.PI/2 is up.","demo":"Drawing an arc","since":"2.0"},{"name":"Renderer--circle","fullname":"Renderer.circle","type":"method","returnType":"Element","description":"Draw circle on the renderer canvas.","title":"circle","isParent":false,"parent":"Renderer","params":"(Number centerX, Number centerY, Number radius)","paramsDescription":"centerX: Number
The x position of the circle's center in the SVG element.||centerY: Number
The y position of the circle's center in the SVG element.||radius: Number
The radius of the circle.","demo":"Drawing a circle","since":"2.0"},{"name":"Renderer--g","fullname":"Renderer.g","type":"method","returnType":"Element","description":"Add an SVG/VML group.","title":"g","isParent":false,"parent":"Renderer","params":"(String name)","paramsDescription":"name: String
The name of the group. This will be used in the class name, which will be \"highcharts-\"+ name. Other Element objects are added to the group by using the group as the first parameter in .add() for the wrappers.","demo":"Show and hide grouped objects","since":"2.0","deprecated":false},{"name":"Renderer--image","fullname":"Renderer.image","type":"method","returnType":"Element","description":"Add an image from an external resource.","title":"image","isParent":false,"parent":"Renderer","params":"(String source, Number x, Number y, Number width, Number height)","paramsDescription":"source: String
The URL of the image.||x: String
The x position of the image's upper left corner.||y: String
The y position of the image's upper left corner.||width: String
The width of the image.||height: String
The height of the image.","demo":"Add an image in a chart,add an image independent from chart","since":"2.0"},{"name":"Renderer--path","fullname":"Renderer.path","type":"method","returnType":"Element","description":"Add a path based on SVG's path commands. In SVG capable browsers all path commands are supported, but in VML only a subset is supported: absolute moveTo (M), absolute lineTo (L), absolute curveTo (C) and close (Z).","title":"path","isParent":false,"parent":"Renderer","params":"(Array path)","paramsDescription":"path: Array
An SVG path split up in array form.","demo":"Draw a path in a chart,draw a path independent from a chart","since":"2.0","deprecated":false},{"name":"Renderer--rect","fullname":"Renderer.rect","type":"method","returnType":"Element","description":"Add a rectangle.","title":"rect","isParent":false,"parent":"Renderer","params":"(Number x, Number y, Number width, Number height, Number cornerRadius)","paramsDescription":"x: Number
The x position of the rectangle's upper left corner.||y: Number
The y position of the rectangle's upper left corner.||width: Number
The width of the rectangle.||height: Number
The height of the rectangle.||cornerRadius: Number
The corner radius of all the rectangle's corners.","demo":"Draw a rectangle in a chart,draw a rectangle independent from a chart","since":"2.0"},{"name":"Renderer--text","fullname":"Renderer.text","type":"method","returnType":"Element","description":"Draw text. The text can contain a subset of HTML, like spans and anchors and some basic text styling of these. For more advanced features like border and background, use label instead.","title":"text","isParent":false,"parent":"Renderer","params":"(String str, Number x, Number y)","paramsDescription":"str: String
The text or HTML to draw||x: Number
The x position of the text's lower left corner.||y: Number
The y position of the text's lower left corner.","demo":"Annotate the chart freely; annotate with a border and in response to the data; formatted text.","since":"2.0","deprecated":false},{"name":"Series","fullname":"Series","returnType":"","description":"

The Series object is the JavaScript representation of each line, area series, pie etc.

The object can be accessed in a number of ways. All series and point event handlers give a reference to the series object. The chart object has a series property that is a collection of all the chart's series. The point objects also have the same reference.

Another way to reference the series programmatically is by id. Add an id in the series configuration options, and get the series object by chart.get(id).

Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.series object. Then options for all series of a specific type are given in the plotOptions of that type, for example plotOptions.line. Next, options for one single series are given in the series array.

","title":"Series","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Series--addPoint","fullname":"Series.addPoint","type":"method","returnType":"","description":"Add a point to the series after render time. The point can be added at the end, or by giving it an X value, to the start or in the middle of the series.","title":"addPoint","isParent":false,"parent":"Series","params":"(Object options, [Boolean redraw], [Boolean shift], [Mixed animation])","paramsDescription":"options: Number|Array|Object
The point options. If options is a single number, a point with that y value is appended to the series.If it is an array, it will be interpreted as x and y values respectively. If it is an object, advanced options as outlined under series.data are applied.||\r\nredraw: Boolean
Defaults to true. Whether to redraw the chart after the point is added. When adding more than one point, it is highly recommended that the redraw option be set to false, and instead chart.redraw() is explicitly called after the adding of points is finished.||\r\nshift: Boolean
Defaults to false. When shift is true, one point is shifted off the start of the series as one is appended to the end. Use this option for live charts monitoring a value over time.||animation: Mixed
Defaults to true. When true, the graph will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Append point,append and shift,both x and y values given,append pie slice","since":"1.2.0","deprecated":false},{"name":"Series--hide","fullname":"Series.hide","type":"method","description":"Hides the series if visible. If the chart.ignoreHiddenSeries option is true,the chart is redrawn without this series.","title":"hide","isParent":false,"parent":"Series","params":"()","demo":"Toggle visibility from a button","since":"1.2.0"},{"name":"Series--name","fullname":"Series.name","type":"property","returnType":"String","description":"The series' name as given in the options.","title":"name","isParent":false,"parent":"Series","since":"1.2.0"},{"name":"Series--options","fullname":"Series.options","type":"property","returnType":"Object","description":"Read only. The series' options.","title":"options","isParent":false,"parent":"Series","since":"1.2.0"},{"name":"Series--select","fullname":"Series.select","type":"method","returnType":"","description":"Select or unselect the series. This means its selected property is set,the checkbox in the legend is toggled and when selected, the series is returned in the chart.getSelectedSeries() method.","title":"select","isParent":false,"parent":"Series","params":"([Boolean selected|null])","paramsDescription":"selected: Boolean|null
When true, the series is selected. When false it is unselected. When null or undefined, the series' selection state is toggled.","demo":"Select a series from a button","since":"1.2.0","deprecated":false},{"name":"Series--selected","fullname":"Series.selected","type":"property","returnType":"Boolean","description":"Read only. The series' selected state as set by series.select().","title":"selected","isParent":false,"parent":"Series","since":"1.2.0"},{"name":"Series--setVisible","fullname":"Series.setVisible","type":"method","returnType":"","description":"A utility function to show or hide the series with an optional redraw.","title":"setVisible","isParent":false,"parent":"Series","params":"(Boolean visible, [Boolean redraw])","paramsDescription":"visible: Boolean
Whether to show or hide the series. If undefined, the visibility is toggled.||redraw: Boolean
Defaults to true. Whether to redraw the chart after the series is altered.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.","demo":"","since":"","deprecated":false},{"name":"Series--show","fullname":"Series.show","type":"method","description":"Shows the series if hidden.","title":"show","isParent":false,"parent":"Series","params":"()","demo":"Toggle visibility from a button","since":"1.2.0"},{"name":"Series--type","fullname":"Series.type","type":"property","returnType":"String","description":"Read only. The series' type, like \"line\", \"area\" etc.","title":"type","isParent":false,"parent":"Series","since":"1.2.0"},{"name":"Series--update","fullname":"Series.update","type":"method","returnType":"","description":"Update the series with a new set of options. For a clean and precise handling of new options, all methods and elements from the series is removed, and it is initiated from scratch. Therefore, this method is more performance expensive than some other utility methods like setData or setVisible.","title":"update","isParent":false,"parent":"Series","params":"(Object options, [Boolean redraw])","paramsDescription":"options: Boolean
\r\nNew options that will be merged into the series' existing options.\r\n\r\n||\r\n\r\nredraw: Boolean
\r\nDefaults to true. Whether to redraw the chart after the series is altered. If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.","demo":"Updating series options","since":"3.0","deprecated":false},{"name":"Series--visible","fullname":"Series.visible","type":"property","returnType":"Boolean","description":"Read only. The series' visibility state as set by series.show(), series.hide(), or the initial configuration.","title":"visible","isParent":false,"parent":"Series","since":"1.2.0"},{"name":"Chart--addSeriesAsDrilldown","fullname":"Chart.addSeriesAsDrilldown","type":"method","returnType":"","description":"Add a series to the chart as drilldown from a specific point in the parent series. This method is used for async drilldown, when clicking a point in a series should result in loading and displaying a more high-resolution series. When not async, the setup is simpler using the drilldown.series options structure.","title":"addSeriesAsDrilldown","isParent":false,"parent":"Chart","params":"(Object point, Object seriesOptions)","paramsDescription":"point: Object
\r\nThe existing Point object from which the drilldown will start.||\r\n\r\nseriesOptions: Object
\r\nThe series options, as documented under plotOptions.series and under the plotOptions for each series type.","demo":"Async drilldown","since":"3.0.8","deprecated":false},{"name":"Chart--drillUp","fullname":"Chart.drillUp","type":"method","returnType":"","description":"When the chart is drilled down to a child series, calling chart.drillUp() will drill up to the parent series.","title":"drillUp","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"","since":"3.0.8","deprecated":false},{"name":"Chart--setTitle","fullname":"Chart.setTitle","type":"method","returnType":"","description":"Set a new title or subtitle for the chart","title":"setTitle","isParent":false,"parent":"Chart","params":"(Object title, object subtitle, Boolean redraw)","paramsDescription":"title: Object
A configuration object for the new title as defined at #title.||\r\nsubtitle: Object
A configuration object for the new subtitle as defined at #subtitle.||\r\nredraw: Boolean
Whether to redraw the chart. Defaults to true.","demo":"Set title text and styles","since":"2.1.0","deprecated":false},{"name":"Element--attr","fullname":"Element.attr","type":"method","returnType":"Element","description":"

Apply attributes to the SVG/VML elements. These attributes for the most parts correspond to SVG, but some are specific to Highcharts, like zIndex and rotation.

\r\n\r\n

In order to set the rotation center for rotation, set x and y to 0 and use translateX and translateY attributes to position the element instead.

\r\n\r\n

Attributes frequently used in Highcharts are fill, stroke, stroke-width.

","title":"attr","isParent":false,"parent":"Element","params":"Object hash","paramsDescription":"hash: Object
A set of attributes to apply.","demo":"Setting some attributes","since":"2.0","deprecated":false},{"name":"Axis--setTitle","fullname":"Axis.setTitle","type":"method","returnType":"","description":"Update the title of the axis after render time.","title":"setTitle","isParent":false,"parent":"Axis","params":"(Object title, [Boolean redraw])","paramsDescription":"title: Object
The new title options on the same format as given in xAxis.title.||redraw: Boolean
Whether to redraw the chart now or hold until the next chart.redraw()","demo":"Set a new Y axis title","since":"2.2","deprecated":false},{"name":"Series--remove","fullname":"Series.remove","type":"method","returnType":"","description":"Remove the series from the chart.","title":"remove","isParent":false,"parent":"Series","params":"([Boolean redraw])","paramsDescription":"redraw: Boolean
Defaults to true. Whether to redraw the chart after the series is removed.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.","demo":"Remove first series from a button","since":"1.2.0","deprecated":false},{"name":"Chart--getSelectedSeries","fullname":"Chart.getSelectedSeries","type":"method","returnType":"Array","description":"Returns an array of all currently selected series in the chart. Series can be selected either programmatically by the series.select() method or by checking the checkbox next to the legend item if series.showCheckBox is true.","title":"getSelectedSeries","isParent":false,"parent":"Chart","params":"()","paramsDescription":"An array of the selected Series items.","demo":"Get selected series","since":"1.2.0","deprecated":false},{"name":"Point--category","fullname":"Point.category","type":"property","returnType":"String|Number","description":"For categorized axes this property holds the category name for the point. For other axis it holds the x value.","title":"category","isParent":false,"parent":"Point","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Chart--hideLoading","fullname":"Chart.hideLoading","type":"method","returnType":"","description":"Hide the loading screen. Options for the loading screen are defined at options.loading.","title":"hideLoading","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"Show and hide loading from a button","since":"1.2.0","deprecated":false},{"name":"Axis--addPlotLine","fullname":"Axis.addPlotLine","type":"method","returnType":"","description":"Add a plot line after render time.","title":"addPlotLine","isParent":false,"parent":"Axis","params":"(Object options)","paramsDescription":"options: Object
A configuration object consisting of the same members as options.xAxis.plotLines","demo":"Toggle the plot line from a button","since":"1.2.0","deprecated":false},{"name":"Axis--addPlotBand","fullname":"Axis.addPlotBand","type":"method","returnType":"","description":"Add a plot band after render time.","title":"addPlotBand","isParent":false,"parent":"Axis","params":"(Object options)","paramsDescription":"options: Object
A configuration object consisting of the same members as options.xAxis.plotBands","demo":"Toggle the plot band from a button","since":"1.2.0","deprecated":false},{"name":"Chart--series","fullname":"Chart.series","type":"property","returnType":"Array","description":"An array of all the chart's series.","title":"series","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Element--destroy","fullname":"Element.destroy","type":"method","returnType":"","description":"Destroy the element and free up memory","title":"destroy","isParent":false,"parent":"Element","params":"","paramsDescription":"","demo":"","since":"2.0","deprecated":false},{"name":"Point--total","fullname":"Point.total","type":"Number","returnType":"Number","description":"The total of a stack for stacked series, or pie in pie charts.","title":"total","isParent":false,"parent":"Point","params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Chart--reflow","fullname":"Chart.reflow","type":"method","returnType":"","description":"Reflows the chart to its container. By default, the chart reflows automatically to its container following a window.resize event, as per the chart.reflow option. However, there are no reliable events for div resize, so if the container is resized without a window resize event, this must be called explicitly. ","title":"reflow","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"Resize div and reflow, pop up and reflow","since":"","deprecated":false},{"name":"Element--getBBox","fullname":"Element.getBBox","type":"method","returnType":"Object","description":"Get the bounding box of the element","title":"getBBox","isParent":false,"parent":"Element","params":"","paramsDescription":"A hash object containing x, y, width and height values for the element.","demo":"Draw a rectangle based on a text's bounding box.","since":"2.0","deprecated":false},{"name":"Series--chart","fullname":"Series.chart","type":"property","returnType":"Chart","description":"Read only. The chart that the series belongs to.","title":"chart","isParent":false,"parent":"Series","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Series--data","fullname":"Series.data","type":"property","returnType":"Array","description":"Read only. An array with the series' data point objects.","title":"data","isParent":false,"parent":"Series","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Series--xAxis","fullname":"Series.xAxis","type":"property","returnType":"Axis","description":"Read only. The unique xAxis object associated with the series.","title":"xAxis","isParent":false,"parent":"Series","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Series--yAxis","fullname":"Series.yAxis","type":"property","returnType":"Axis","description":"Read only. The unique yAxis object associated with the series.","title":"yAxis","isParent":false,"parent":"Series","params":"","paramsDescription":"","demo":"","since":"1.2.0","deprecated":false},{"name":"Series--removePoint","fullname":"Series.removePoint","type":"method","returnType":"","description":"Remove a point from the series. Unlike the Point.remove method, this can also be done on a point that is not instanciated because it is outside the view or subject to data grouping.","title":"removePoint","isParent":false,"parent":"Series","params":"(Object index, [Boolean redraw], [Mixed animation])","paramsDescription":"index: Number
The index of the point in the data array.||\r\nredraw: Boolean
Defaults to true. Whether to redraw the chart after the point is added. When adding more than one point, it is highly recommended that the redraw option be set to false, and instead chart.redraw() is explicitly called after the adding of points is finished.||\r\nanimation: Mixed
Defaults to true. When true, the graph will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Remove cropped point","since":"4.1.0","deprecated":false},{"name":"Highcharts--numberFormat","fullname":"Highcharts.numberFormat","type":"method","returnType":"String","description":"Formats a JavaScript number with grouped thousands, a fixed amount of decimals and an optional decimal point. It is a port of PHP's function with the same name. See PHP number_format for a full explanation of the parameters.","title":"numberFormat","isParent":false,"parent":"Highcharts","params":"(Number number, [Number decimals], [String decimalPoint], [String thousandsSep])","paramsDescription":"number: Number
The raw number to format.||decimals: Number
The desired number of decimals.||decimalPoint: String
The decimal point. Defaults to \".\" or to the string specified globally in options.lang.decimalPoint.||thousandsSep: String
The thousands separator. Defaults to \" \" or to the string specified globally in options.lang.thousandsSep.","demo":"Custom number format","since":"","deprecated":false},{"name":"Renderer--label","fullname":"Renderer.label","type":"method","returnType":"Element","description":"Draw a label, which is an extended text element with support for border and background. Highcharts creates a g element with a text and a path or rect inside, to make it behave somewhat like a HTML div. Border and background are set through stroke, stroke-width and fill attributes using the attr method. This must be done before calling add.","title":"label","isParent":false,"parent":"Renderer","params":"(String str, Number x, Number y, String shape, Number anchorX, Number anchorY, Boolean useHTML, Boolean baseline, String className)","paramsDescription":"str: String
\r\nThe text or HTML to draw||\r\n\r\nx: Number
\r\nThe x position of the label's left side.||\r\n\r\ny: Number
\r\nThe y position of the label's top side or baseline, depending on the baseline parameter.||\r\n\r\nshape: String
\r\nThe shape of the label's border/background, if any. Defaults to rect.||\r\n\r\nanchorX: Number
\r\nIf the shape has a pointer, like the chevron on a callout shape, anchorX is the x position to point to.||\r\n\r\nanchorY: Number
\r\nIf the shape has a pointer, like the chevron on a callout shape, anchorY is the y position to point to.||\r\n\r\nuseHTML: Boolean
\r\nUse HTML to render the text of the label.||\r\n\r\nbaseline: Boolean
\r\nWhether the label should be vertically aligned by the text baseline, which makes it behave like the text element, or by the top left side, which makes it behave like a HTML div.||\r\n\r\nclassName: String
\r\nA class name for the g element surrounding the label.\r\n\r\n","demo":"A label on the chart","since":"","deprecated":false},{"name":"Chart--redraw","fullname":"Chart.redraw","type":"method","returnType":"","description":"Redraw the chart after changes have been done to the data or axis extremes. All methods for updating axes, series or points have a parameter for redrawing the chart. This is true by default. But in many cases you want to do more than one operation on the chart before redrawing, for example add a number of points. In those cases it is a waste of resources to redraw the chart for each new point added. So you add the points and call chart.redraw() after.","title":"redraw","isParent":false,"parent":"Chart","params":"([Mixed animation])","paramsDescription":"animation: Mixed
Defaults to true. When true, the update will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"","since":"1.2.0","deprecated":false},{"name":"Point--update","fullname":"Point.update","type":"method","returnType":"","description":"Update the point with new values.","title":"update","isParent":false,"parent":"Point","params":"([Mixed options], [Boolean redraw], [Mixed animation])","paramsDescription":"options: Number|Array|Object
The point options. Point options are handled as described under the series<type>.data item for each series type. For example for a line series, if options is a single number, the point will be given that number as the main y value. If it is an array, it will be interpreted as x and y values respectively. If it is an object, advanced options are applied.\r\n\r\n||redraw: Boolean
Defaults to true. Whether to redraw the chart after the point is updated.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.\r\n\r\n||animation: Mixed
Defaults to true. When true, the update will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.","demo":"Update column value,update pie slice","since":"1.2.0","deprecated":false},{"name":"Series--setData","fullname":"Series.setData","type":"method","returnType":"","description":"Apply a new set of data to the series and optionally redraw it. Note that this method throws away all points and creates new ones. For updating the values of existing points, use Point.update() instead. To keep memory usage low, Highcharts mutates the passed data array instead of copying it, so if you are going to reuse the same array it is a good idea to pass a clone to setData.","title":"setData","isParent":false,"parent":"Series","params":"(Array<Mixed> data, [Boolean redraw], [Mixed animation], [Boolean updatePoints])","paramsDescription":"data: Array<Number>|Array<Array>|Array<Object>
Takes an array of data in the same format as described under series<type>data for the given series type.||\r\n\r\nredraw: Boolean
Defaults to true. Whether to redraw the chart after the series is altered.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.||\r\n\r\n\r\nanimation: Mixed
When the updated data is the same length as the existing data, points will be updated by default, and animation visualizes how the points are changed. Set false to disable animation, or a configuration object to set duration or easing.||\r\n\r\n\r\nupdatePoints: Boolean
When the updated data is the same length as the existing data, points will be updated instead of replace. This option prevents this, and makes setData behave like it did prior to Highcharts 3.0.10.","demo":"Set new data from a button,set data in a pie","since":"1.2.0","deprecated":false},{"name":"Point--select","fullname":"Point.select","type":"method","returnType":"","description":"Select or unselect the point.","title":"select","isParent":false,"parent":"Point","params":"([Boolean select], [Boolean accumulate])","paramsDescription":"select: Boolean
When true, the point is selected. When false, the point is unselected. When null or undefined, the selection state is toggled.||accumulate: Boolean
When true, the selection is added to other selected points. When false, other selected points are deselected. Internally in Highcharts,selected points are accumulated on Control, Shift or Cmd clicking the point.","demo":"Select a point from a button, select a range of points through a drag selection.","since":"1.2.0","deprecated":false},{"name":"Point--visible","fullname":"Point.visible","type":"Boolean","returnType":"","description":"For certain series types, like pie. Whether the Point instance is visible.","title":"visible","isParent":false,"parent":"Point","params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Highcharts--chart","fullname":"Highcharts.chart","type":"","returnType":"Chart","description":"As Highcharts.Chart, but without need for the new keyword.","title":"chart","isParent":false,"parent":"Highcharts","params":"([String|Object renderTo], Object options, Function callback)","paramsDescription":"","demo":"","since":"4.2.0","deprecated":false},{"name":"Highcharts--Chart","fullname":"Highcharts.Chart","type":"method","returnType":"Chart","description":"This is the constructor for creating a new chart object.","title":"Chart","isParent":false,"parent":"Highcharts","params":"([String|Object renderTo], Object options, Function callback)","paramsDescription":"renderTo: String[Object
The id or a reference to a DOM element where the chart should be rendered (since v4.2.0).||\r\n\r\n\r\noptions: Object
The chart options, as documented under the heading \"The options object\"in the left menu.||\r\n\r\ncallback: Function
A function to execute when the chart object is finished loading and rendering. Since v4.2.2, it also waits for images to be loaded, for example from point markers. In most cases the chart is built in one thread, but in Internet Explorer version 8 or less the chart is sometimes initiated before the document is ready, and in these cases the chart object will not be finished directly after callingnew Highcharts.Chart(). As a consequence, code that relies on the newly built Chart object should always run in the callback. Defining a chart.event.load handler is equivalent.","demo":"","since":"","deprecated":false},{"name":"Chart--exportChartLocal","fullname":"Chart.exportChartLocal","type":"method","returnType":"","description":"Export the chart to a PNG or SVG without sending it to a server. Requires modules/exporting.js and modules/offline-exporting.js.","title":"exportChartLocal","isParent":false,"parent":"Chart","params":"(Object options, Object chartOptions)","paramsDescription":"See exportChart for parameter description.","demo":"","since":"","deprecated":false}]; +offline.highcharts.option = [{"name":"series--","fullname":"series.","title":"","parent":"series","isParent":false,"returnType":"","context":"","defaults":"","values":"","since":"","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--","fullname":"plotOptions.gauge.","title":"","parent":"plotOptions-gauge","isParent":false,"returnType":"","context":"","defaults":"","values":"","since":"","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"series--","fullname":"series.","title":"","parent":"series","isParent":false,"returnType":"","context":"","defaults":"","values":"","since":"","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge--","fullname":"plotOptions.solidgauge.","title":"","parent":"plotOptions-solidgauge","isParent":false,"returnType":"","context":"","defaults":"","values":"","since":"","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"global--Date","fullname":"global.Date","title":"Date","parent":"global","isParent":false,"returnType":"Object","since":"4.0.4","description":"A custom Date class for advanced date handling. For example, JDate can be hooked in to handle Jalali dates.","deprecated":false},{"name":"global--VMLRadialGradientURL","fullname":"global.VMLRadialGradientURL","title":"VMLRadialGradientURL","parent":"global","isParent":false,"returnType":"String","defaults":"http://code.highcharts.com/{version}/gfx/vml-radial-gradient.png","since":"2.3.0","description":"Path to the pattern image required by VML browsers in order to draw radial gradients.","demo":"","seeAlso":"","deprecated":false},{"name":"drilldown--activeAxisLabelStyle","fullname":"drilldown.activeAxisLabelStyle","title":"activeAxisLabelStyle","parent":"drilldown","isParent":false,"returnType":"CSSObject","since":"3.0.8","description":"Additional styles to apply to the X axis label for a point that has drilldown data. By default it is underlined and blue to invite to interaction. Defaults to:\r\n
activeAxisLabelStyle: {\r\n\tcursor: 'pointer',\r\n\tcolor: '#0d233a',\r\n\tfontWeight: 'bold',\r\n\ttextDecoration: 'underline'\t\t\t\r\n}
","demo":"Label styles","deprecated":false},{"name":"legend-navigation--activeColor","fullname":"legend.navigation.activeColor","title":"activeColor","parent":"legend-navigation","isParent":false,"returnType":"Color","defaults":"#3E576F","since":"2.2.4","description":"The color for the active up or down arrow in the legend page navigation.","demo":"\n\t\t\t\tLegend page navigation demonstrated"},{"name":"drilldown--activeDataLabelStyle","fullname":"drilldown.activeDataLabelStyle","title":"activeDataLabelStyle","parent":"drilldown","isParent":false,"returnType":"CSSObject","since":"3.0.8","description":"Additional styles to apply to the data label of a point that has drilldown data. By default it is underlined and blue to invite to interaction. Defaults to:\r\n
activeAxisLabelStyle: {\r\n\tcursor: 'pointer',\r\n\tcolor: '#0d233a',\r\n\tfontWeight: 'bold',\r\n\ttextDecoration: 'underline'\t\t\t\r\n}
","demo":"Label styles","deprecated":false},{"name":"chart-events--addSeries","fullname":"chart.events.addSeries","title":"addSeries","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"1.2.0","description":"Fires when a series is added to the chart after load time, using the addSeries method. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Through event.options you can access the series options that was passed to the addSeries method. Returning false prevents the series from being added.","demo":"Alert on add series","deprecated":false},{"name":"plotOptions-solidgauge-events--afterAnimate","fullname":"plotOptions.solidgauge.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-funnel-events--afterAnimate","fullname":"plotOptions.funnel.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-boxplot-events--afterAnimate","fullname":"plotOptions.boxplot.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-gauge-events--afterAnimate","fullname":"plotOptions.gauge.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-heatmap-events--afterAnimate","fullname":"plotOptions.heatmap.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-column-events--afterAnimate","fullname":"plotOptions.column.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-line-events--afterAnimate","fullname":"plotOptions.line.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-areaspline-events--afterAnimate","fullname":"plotOptions.areaspline.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-waterfall-events--afterAnimate","fullname":"plotOptions.waterfall.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-bubble-events--afterAnimate","fullname":"plotOptions.bubble.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-treemap-events--afterAnimate","fullname":"plotOptions.treemap.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-arearange-events--afterAnimate","fullname":"plotOptions.arearange.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-spline-events--afterAnimate","fullname":"plotOptions.spline.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-area-events--afterAnimate","fullname":"plotOptions.area.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-series-events--afterAnimate","fullname":"plotOptions.series.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-pyramid-events--afterAnimate","fullname":"plotOptions.pyramid.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-pie-events--afterAnimate","fullname":"plotOptions.pie.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-scatter-events--afterAnimate","fullname":"plotOptions.scatter.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-polygon-events--afterAnimate","fullname":"plotOptions.polygon.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-errorbar-events--afterAnimate","fullname":"plotOptions.errorbar.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-areasplinerange-events--afterAnimate","fullname":"plotOptions.areasplinerange.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-columnrange-events--afterAnimate","fullname":"plotOptions.columnrange.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"plotOptions-bar-events--afterAnimate","fullname":"plotOptions.bar.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"series-events--afterAnimate","fullname":"series.events.afterAnimate","title":"afterAnimate","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"4.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"Show label after animate","deprecated":false},{"name":"xAxis-events--afterBreaks","fullname":"xAxis.events.afterBreaks","title":"afterBreaks","parent":"xAxis-events","isParent":false,"returnType":"Function","since":"4.1.0","description":"An event fired after the breaks have rendered.","demo":"afterBreak Event","seeAlso":"breaks","deprecated":false},{"name":"yAxis-events--afterBreaks","fullname":"yAxis.events.afterBreaks","title":"afterBreaks","parent":"yAxis-events","isParent":false,"returnType":"Function","since":"4.1.0","description":"An event fired after the breaks have rendered.","demo":"afterBreak Event","seeAlso":"breaks","deprecated":false},{"name":"chart-events--afterPrint","fullname":"chart.events.afterPrint","title":"afterPrint","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","defaults":"","values":"","since":"4.1.0","description":"Fires after a chart is printed through the context menu item or the Chart.print method. Requires the exporting module.","demo":"Rescale the chart to print","seeAlso":"","deprecated":false},{"name":"xAxis-events--afterSetExtremes","fullname":"xAxis.events.afterSetExtremes","title":"afterSetExtremes","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"2.3","description":"As opposed to the setExtremes event, this event fires after the final min and max values are computed and corrected for minRange.","deprecated":false},{"name":"yAxis-events--afterSetExtremes","fullname":"yAxis.events.afterSetExtremes","title":"afterSetExtremes","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"2.3","description":"As opposed to the setExtremes event, this event fires after the final min and max values are computed and corrected for minRange.","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--align","fullname":"plotOptions.waterfall.dataLabels.align","title":"align","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-column-dataLabels--align","fullname":"plotOptions.column.dataLabels.align","title":"align","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-spline-dataLabels--align","fullname":"plotOptions.spline.dataLabels.align","title":"align","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-treemap-dataLabels--align","fullname":"plotOptions.treemap.dataLabels.align","title":"align","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"yAxis-plotLines-label--align","fullname":"yAxis.plotLines.label.align","title":"align","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"left","since":"2.1","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"Aligned to the right","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--align","fullname":"plotOptions.areasplinerange.dataLabels.align","title":"align","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"xAxis-plotLines-label--align","fullname":"xAxis.plotLines.label.align","title":"align","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"left","since":"2.1","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"Aligned to the right","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"left","description":"Alignment of the data label relative to the data point.","demo":"Data labels inside the bar"},{"name":"exporting-buttons-contextButton--align","fullname":"exporting.buttons.contextButton.align","title":"align","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"right","values":"[\"left\", \"center\", \"right\"]","since":"2.0","description":"Alignment for the buttons.","demo":"Center aligned"},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-bubble-dataLabels--align","fullname":"plotOptions.bubble.dataLabels.align","title":"align","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-line-dataLabels--align","fullname":"plotOptions.line.dataLabels.align","title":"align","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"xAxis-labels--align","fullname":"xAxis.labels.align","title":"align","parent":"xAxis-labels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"What part of the string the given position is anchored to. Can be one of \"left\", \"center\" or \"right\". Defaults to an intelligent guess based on which side of the chart the axis is on and the rotation of the label.","demo":"\"left\", \r\n\t\t\t\"right\" on X axis","deprecated":false},{"name":"yAxis-title--align","fullname":"yAxis.title.align","title":"align","parent":"yAxis-title","isParent":false,"returnType":"String","defaults":"middle","values":"[\"low\", \"middle\", \"high\"]","description":"Alignment of the title relative to the axis values. Possible values\r\n are \"low\", \"middle\" or \"high\".","demo":"X axis title aligned \"low\",\r\n\t\t\t\"middle\" by default, \r\n\t\t\t\"high\", \r\n\t\t\tplace the Y axis title on top of the axis","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--align","fullname":"plotOptions.columnrange.dataLabels.align","title":"align","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"legend--align","fullname":"legend.align","title":"align","parent":"legend","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","since":"2.0","description":"

The horizontal alignment of the legend box within the chart area. Valid values are left, center and right.

\r\n\r\n

In the case that the legend is aligned in a corner position, the layout option will determine whether to place it above/below or on the side of the plot area.

","demo":"Legend at the right of the chart","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-area-dataLabels--align","fullname":"plotOptions.area.dataLabels.align","title":"align","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"xAxis-plotBands-label--align","fullname":"xAxis.plotBands.label.align","title":"align","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"center","since":"2.1","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"Aligned to the right"},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"xAxis-title--align","fullname":"xAxis.title.align","title":"align","parent":"xAxis-title","isParent":false,"returnType":"String","defaults":"middle","values":"[\"low\", \"middle\", \"high\"]","description":"Alignment of the title relative to the axis values. Possible values\r\n are \"low\", \"middle\" or \"high\".","demo":"X axis title aligned \"low\",\r\n\t\t\t\"middle\" by default, \r\n\t\t\t\"high\", \r\n\t\t\tplace the Y axis title on top of the axis","deprecated":false},{"name":"plotOptions-polygon-dataLabels--align","fullname":"plotOptions.polygon.dataLabels.align","title":"align","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"yAxis-labels--align","fullname":"yAxis.labels.align","title":"align","parent":"yAxis-labels","isParent":false,"returnType":"String","defaults":"right","description":"What part of the string the given position is anchored to. \n\t\tCan be one of \"left\", \"center\" or \"right\".","demo":"\"left\" on Y axis"},{"name":"yAxis-stackLabels--align","fullname":"yAxis.stackLabels.align","title":"align","parent":"yAxis-stackLabels","isParent":false,"returnType":"String","values":"[\"left\", \"center\", \"right\"]","since":"2.1.5","description":"Defines the horizontal alignment of the stack total label. Can be one of \"left\", \"center\" or \"right\". The default value is calculated at runtime and depends on orientation and whether the stack is positive or negative.","demo":"aligned to the left,\n\t\t\taligned in center,\n\t\t\taligned to the right"},{"name":"plotOptions-solidgauge-dataLabels--align","fullname":"plotOptions.solidgauge.dataLabels.align","title":"align","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"yAxis-plotBands-label--align","fullname":"yAxis.plotBands.label.align","title":"align","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"center","since":"2.1","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"Aligned to the right"},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--align","fullname":"plotOptions.areaspline.dataLabels.align","title":"align","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"title--align","fullname":"title.align","title":"align","parent":"title","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","since":"2.0","description":"The horizontal alignment of the title. Can be one of \"left\", \"center\" and \"right\".","demo":"Aligned to the plot area (x = 70px \n\t\t\t= margin left - spacing left)"},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"subtitle--align","fullname":"subtitle.align","title":"align","parent":"subtitle","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","since":"2.0","description":"The horizontal alignment of the subtitle. Can be one of \"left\", \"center\" and \"right\".","demo":"Footnote at right of plot area"},{"name":"plotOptions-heatmap-dataLabels--align","fullname":"plotOptions.heatmap.dataLabels.align","title":"align","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-gauge-dataLabels--align","fullname":"plotOptions.gauge.dataLabels.align","title":"align","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"navigation-buttonOptions--align","fullname":"navigation.buttonOptions.align","title":"align","parent":"navigation-buttonOptions","isParent":false,"returnType":"String","defaults":"right","values":"[\"left\", \"center\", \"right\"]","since":"2.0","description":"Alignment for the buttons.","demo":"Center aligned"},{"name":"plotOptions-series-dataLabels--align","fullname":"plotOptions.series.dataLabels.align","title":"align","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-arearange-dataLabels--align","fullname":"plotOptions.arearange.dataLabels.align","title":"align","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"series-dataLabels--align","fullname":"series.dataLabels.align","title":"align","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"plotOptions-bar-dataLabels--align","fullname":"plotOptions.bar.dataLabels.align","title":"align","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"String","defaults":"left","description":"Alignment of the data label relative to the data point.","demo":"Data labels inside the bar"},{"name":"plotOptions-scatter-dataLabels--align","fullname":"plotOptions.scatter.dataLabels.align","title":"align","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point. If right, the right side of the label should be touching the point. For points with an extent, like columns, the alignments also dictates how to align it inside the box, as given with the inside option. Can be one of \"left\", \"center\" or \"right\".","demo":"Left aligned","deprecated":false},{"name":"chart--alignTicks","fullname":"chart.alignTicks","title":"alignTicks","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","description":"When using multiple axis, the ticks of two or more opposite axes will automatically be aligned by adding ticks to the axis or axes with the least ticks. This can be prevented by setting alignTicks to false. If the grid lines look messy, it's a good idea to hide them for the secondary axis by setting gridLineWidth to 0.","demo":"True by default, \n\t\t\tfalse."},{"name":"yAxis--allowDecimals","fullname":"yAxis.allowDecimals","title":"allowDecimals","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Whether to allow decimals in this axis' ticks. When counting integers, like\r persons or hits on a web page, decimals must be avoided in the axis tick\r labels.","demo":"True by default (unwanted for this\r\n\t\t\ttype of data), \r\n\t\t\tfalse","seeAlso":"minTickInterval","deprecated":false},{"name":"xAxis--allowDecimals","fullname":"xAxis.allowDecimals","title":"allowDecimals","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Whether to allow decimals in this axis' ticks. When counting integers, like\r persons or hits on a web page, decimals must be avoided in the axis tick\r labels.","demo":"True by default (unwanted for this\r\n\t\t\ttype of data), \r\n\t\t\tfalse","seeAlso":"minTickInterval","deprecated":false},{"name":"plotOptions-treemap--allowDrillToNode","fullname":"plotOptions.treemap.allowDrillToNode","title":"allowDrillToNode","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","values":"[\"false\", \"true\"]","since":"4.1.0","description":"When enabled the user can click on a point which is a parent and zoom in on its children.","demo":"Enabled","deprecated":false},{"name":"series--allowDrillToNode","fullname":"series.allowDrillToNode","title":"allowDrillToNode","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"[\"false\", \"true\"]","since":"4.1.0","description":"When enabled the user can click on a point which is a parent and zoom in on its children.","demo":"Enabled","deprecated":false},{"name":"exporting--allowHTML","fullname":"exporting.allowHTML","title":"allowHTML","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.8","description":"

Experimental setting to allow HTML inside the chart (added through the useHTML options), directly in the exported image. This allows you to preserve complicated HTML structures like tables or bi-directional text in exported charts.

\r\n\r\n

Disclaimer: The HTML is rendered in a foreignObject tag in the generated SVG. The official export server is based on PhantomJS, which supports this, but other SVG clients, like Batik, does not support it. This also applies to downloaded SVG that you want to open in a desktop client.

","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--allowOverlap","fullname":"plotOptions.solidgauge.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-spline-dataLabels--allowOverlap","fullname":"plotOptions.spline.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-arearange-dataLabels--allowOverlap","fullname":"plotOptions.arearange.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--allowOverlap","fullname":"plotOptions.columnrange.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-series-dataLabels--allowOverlap","fullname":"plotOptions.series.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--allowOverlap","fullname":"plotOptions.waterfall.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-polygon-dataLabels--allowOverlap","fullname":"plotOptions.polygon.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--allowOverlap","fullname":"plotOptions.heatmap.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--allowOverlap","fullname":"plotOptions.areasplinerange.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-bar-dataLabels--allowOverlap","fullname":"plotOptions.bar.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-scatter-dataLabels--allowOverlap","fullname":"plotOptions.scatter.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-gauge-dataLabels--allowOverlap","fullname":"plotOptions.gauge.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-bubble-dataLabels--allowOverlap","fullname":"plotOptions.bubble.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-line-dataLabels--allowOverlap","fullname":"plotOptions.line.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-column-dataLabels--allowOverlap","fullname":"plotOptions.column.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-treemap-dataLabels--allowOverlap","fullname":"plotOptions.treemap.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-area-dataLabels--allowOverlap","fullname":"plotOptions.area.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--allowOverlap","fullname":"plotOptions.areaspline.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"series-dataLabels--allowOverlap","fullname":"series.dataLabels.allowOverlap","title":"allowOverlap","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the dataLabels.padding can be set to 0.","demo":"Don't allow overlap","deprecated":false},{"name":"drilldown--allowPointDrilldown","fullname":"drilldown.allowPointDrilldown","title":"allowPointDrilldown","parent":"drilldown","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.7","description":"When this option is false, clicking a single point will drill down all points in the same category, equivalent to clicking the X axis label.","demo":"Don't allow point drilldown.","seeAlso":"","deprecated":false},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-line--allowPointSelect","fullname":"plotOptions.line.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-bubble--allowPointSelect","fullname":"plotOptions.bubble.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-boxplot--allowPointSelect","fullname":"plotOptions.boxplot.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-waterfall--allowPointSelect","fullname":"plotOptions.waterfall.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-polygon--allowPointSelect","fullname":"plotOptions.polygon.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-errorbar--allowPointSelect","fullname":"plotOptions.errorbar.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-arearange--allowPointSelect","fullname":"plotOptions.arearange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-areaspline--allowPointSelect","fullname":"plotOptions.areaspline.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-column--allowPointSelect","fullname":"plotOptions.column.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-bar--allowPointSelect","fullname":"plotOptions.bar.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-series--allowPointSelect","fullname":"plotOptions.series.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-areasplinerange--allowPointSelect","fullname":"plotOptions.areasplinerange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-funnel--allowPointSelect","fullname":"plotOptions.funnel.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-pyramid--allowPointSelect","fullname":"plotOptions.pyramid.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-area--allowPointSelect","fullname":"plotOptions.area.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-columnrange--allowPointSelect","fullname":"plotOptions.columnrange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-scatter--allowPointSelect","fullname":"plotOptions.scatter.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-pie--allowPointSelect","fullname":"plotOptions.pie.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"series--allowPointSelect","fullname":"series.allowPointSelect","title":"allowPointSelect","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-treemap--allowPointSelect","fullname":"plotOptions.treemap.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-spline--allowPointSelect","fullname":"plotOptions.spline.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"plotOptions-heatmap--allowPointSelect","fullname":"plotOptions.heatmap.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Allow this series' points to be selected by clicking on the markers, bars or pie slices.","demo":"Line, \n\t\t\tcolumn, \n\t\t\tpie"},{"name":"chart-options3d--alpha","fullname":"chart.options3d.alpha","title":"alpha","parent":"chart-options3d","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"One of the two rotation angles for the chart.","demo":"Dynamic Angles","deprecated":false},{"name":"xAxis--alternateGridColor","fullname":"xAxis.alternateGridColor","title":"alternateGridColor","parent":"xAxis","isParent":false,"returnType":"Color","description":"When using an alternate grid color, a band is painted across the plot area between every other grid line.","demo":"Alternate grid color on the Y axis"},{"name":"yAxis--alternateGridColor","fullname":"yAxis.alternateGridColor","title":"alternateGridColor","parent":"yAxis","isParent":false,"returnType":"Color","description":"When using an alternate grid color, a band is painted across the plot area between every other grid line.","demo":"Alternate grid color on the Y axis"},{"name":"plotOptions-treemap--alternateStartingDirection","fullname":"plotOptions.treemap.alternateStartingDirection","title":"alternateStartingDirection","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Enabling this option will make the treemap alternate the drawing direction between vertical and horizontal.\r\nThe next levels starting direction will always be the opposite of the previous.","demo":"Enabled\r\n","deprecated":false},{"name":"series--alternateStartingDirection","fullname":"series.alternateStartingDirection","title":"alternateStartingDirection","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.0","description":"Enabling this option will make the treemap alternate the drawing direction between vertical and horizontal.\r\nThe next levels starting direction will always be the opposite of the previous.","demo":"Enabled\r\n","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-column--animation","fullname":"plotOptions.column.animation","title":"animation","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-polygon--animation","fullname":"plotOptions.polygon.animation","title":"animation","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-arearange--animation","fullname":"plotOptions.arearange.animation","title":"animation","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-pie--animation","fullname":"plotOptions.pie.animation","title":"animation","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-heatmap--animation","fullname":"plotOptions.heatmap.animation","title":"animation","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"tooltip--animation","fullname":"tooltip.animation","title":"animation","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Enable or disable animation of the tooltip. In slow legacy IE browsers the animation is disabled by default.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--animation","fullname":"plotOptions.spline.animation","title":"animation","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-gauge--animation","fullname":"plotOptions.gauge.animation","title":"animation","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-waterfall--animation","fullname":"plotOptions.waterfall.animation","title":"animation","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-areaspline--animation","fullname":"plotOptions.areaspline.animation","title":"animation","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-bubble--animation","fullname":"plotOptions.bubble.animation","title":"animation","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"drilldown--animation","fullname":"drilldown.animation","title":"animation","parent":"drilldown","isParent":false,"returnType":"Boolean|Object","since":"3.0.8","description":"

Set the animation for all drilldown animations. Animation of a drilldown occurs when drilling between a column point and a column series, or a pie slice and a full pie series. Drilldown can still be used between series and points of different types, but animation will not occur.

\r\n \r\n

The animation can either be set as a boolean or a configuration object. If true,\r\n it will use the 'swing' jQuery easing and a duration of 500 ms. If used as a configuration object,\r\n the following properties are supported: \r\n

\r\n \t
duration
\r\n \t
The duration of the animation in milliseconds.
\r\n \t\r\n \t
easing
\r\n \t
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-area--animation","fullname":"plotOptions.area.animation","title":"animation","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"legend-navigation--animation","fullname":"legend.navigation.animation","title":"animation","parent":"legend-navigation","isParent":false,"returnType":"Boolean|Object","defaults":"true","since":"2.2.4","description":"How to animate the pages when navigating up or down. A value of true applies the default navigation given in the chart.animation option. Additional options can be given as an object containing values for easing and duration. .","demo":"\n\t\t\t\tLegend page navigation demonstrated"},{"name":"plotOptions-line--animation","fullname":"plotOptions.line.animation","title":"animation","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-series--animation","fullname":"plotOptions.series.animation","title":"animation","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"chart--animation","fullname":"chart.animation","title":"animation","parent":"chart","isParent":false,"returnType":"Boolean|Object","defaults":"true","description":"

Set the overall animation for all chart updating. Animation can be disabled throughout\r\n the chart by setting it to false here. It can be overridden for each individual\r\n API method as a function parameter. The only animation not affected by this option is the \r\n initial series animation, see plotOptions.series.animation.

\r\n \r\n

The animation can either be set as a boolean or a configuration object. If true,\r\n it will use the 'swing' jQuery easing and a duration of 500 ms. If used as a configuration object,\r\n the following properties are supported: \r\n

\r\n \t
duration
\r\n \t
The duration of the animation in milliseconds.
\r\n \t\r\n \t
easing
\r\n \t
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
","demo":"Updating with no animation, \r\n\t\t\twith a longer duration, \r\n\t\t\twith a jQuery UI easing.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-columnrange--animation","fullname":"plotOptions.columnrange.animation","title":"animation","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-solidgauge--animation","fullname":"plotOptions.solidgauge.animation","title":"animation","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-scatter--animation","fullname":"plotOptions.scatter.animation","title":"animation","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-treemap--animation","fullname":"plotOptions.treemap.animation","title":"animation","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-areasplinerange--animation","fullname":"plotOptions.areasplinerange.animation","title":"animation","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"plotOptions-bar--animation","fullname":"plotOptions.bar.animation","title":"animation","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animation","fullname":"series.animation","title":"animation","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"

Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods.\t\tThe following properties are supported:

\r\n
\r\n
duration
\r\n
The duration of the animation in milliseconds.
\r\n
easing
\r\n
A string reference to an easing function set on the Math object. See the easing demo.
\r\n
\r\n

\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

","demo":"Animation disabled,\r\n\t\t\tslower animation,\r\n\t\t\teasing \"easeOutBounce\" through jQuery UI.","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--animationLimit","fullname":"plotOptions.column.animationLimit","title":"animationLimit","parent":"plotOptions-column","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--animationLimit","fullname":"plotOptions.heatmap.animationLimit","title":"animationLimit","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--animationLimit","fullname":"plotOptions.pyramid.animationLimit","title":"animationLimit","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--animationLimit","fullname":"plotOptions.waterfall.animationLimit","title":"animationLimit","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--animationLimit","fullname":"plotOptions.spline.animationLimit","title":"animationLimit","parent":"plotOptions-spline","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--animationLimit","fullname":"plotOptions.scatter.animationLimit","title":"animationLimit","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--animationLimit","fullname":"plotOptions.arearange.animationLimit","title":"animationLimit","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area--animationLimit","fullname":"plotOptions.area.animationLimit","title":"animationLimit","parent":"plotOptions-area","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--animationLimit","fullname":"plotOptions.treemap.animationLimit","title":"animationLimit","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--animationLimit","fullname":"plotOptions.gauge.animationLimit","title":"animationLimit","parent":"plotOptions-gauge","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--animationLimit","fullname":"plotOptions.funnel.animationLimit","title":"animationLimit","parent":"plotOptions-funnel","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series--animationLimit","fullname":"plotOptions.series.animationLimit","title":"animationLimit","parent":"plotOptions-series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--animationLimit","fullname":"plotOptions.areasplinerange.animationLimit","title":"animationLimit","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--animationLimit","fullname":"plotOptions.columnrange.animationLimit","title":"animationLimit","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--animationLimit","fullname":"plotOptions.pie.animationLimit","title":"animationLimit","parent":"plotOptions-pie","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--animationLimit","fullname":"plotOptions.polygon.animationLimit","title":"animationLimit","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line--animationLimit","fullname":"plotOptions.line.animationLimit","title":"animationLimit","parent":"plotOptions-line","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--animationLimit","fullname":"plotOptions.errorbar.animationLimit","title":"animationLimit","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--animationLimit","fullname":"plotOptions.areaspline.animationLimit","title":"animationLimit","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--animationLimit","fullname":"plotOptions.bar.animationLimit","title":"animationLimit","parent":"plotOptions-bar","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge--animationLimit","fullname":"plotOptions.solidgauge.animationLimit","title":"animationLimit","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--animationLimit","fullname":"plotOptions.bubble.animationLimit","title":"animationLimit","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--animationLimit","fullname":"plotOptions.boxplot.animationLimit","title":"animationLimit","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"series--animationLimit","fullname":"series.animationLimit","title":"animationLimit","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"For some series, there is a limit that shuts down initial animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation doesn't run if there is more than 250 points totally. To disable this cap, set animationLimit to Infinity.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area","fullname":"plotOptions.area","title":"area","parent":"plotOptions","isParent":true},{"name":"plotOptions-arearange","fullname":"plotOptions.arearange","title":"arearange","parent":"plotOptions","isParent":true,"since":"2.3.0","description":"The area range is a cartesian series type with higher and lower Y values along an X axis. Requires highcharts-more.js.","demo":"Arearange example","deprecated":false},{"name":"plotOptions-areaspline","fullname":"plotOptions.areaspline","title":"areaspline","parent":"plotOptions","isParent":true,"deprecated":false},{"name":"plotOptions-areasplinerange","fullname":"plotOptions.areasplinerange","title":"areasplinerange","parent":"plotOptions","isParent":true,"since":"2.3.0","description":"The area spline range is a cartesian series type with higher and lower Y values along an X axis. Requires highcharts-more.js.","deprecated":false},{"name":"legend-navigation--arrowSize","fullname":"legend.navigation.arrowSize","title":"arrowSize","parent":"legend-navigation","isParent":false,"returnType":"Number","defaults":"12","since":"2.2.4","description":"The pixel size of the up and down arrows in the legend paging navigation. .","demo":"\n\t\t\t\tLegend page navigation demonstrated"},{"name":"noData--attr","fullname":"noData.attr","title":"attr","parent":"noData","isParent":false,"returnType":"Object","since":"3.0.8","description":"An object of additional SVG attributes for the no-data label.","deprecated":false},{"name":"plotOptions-bubble-states-hover-halo--attributes","fullname":"plotOptions.bubble.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-bubble-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-states-hover-halo--attributes","fullname":"plotOptions.area.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-area-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-states-hover-halo--attributes","fullname":"plotOptions.line.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-line-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-states-hover-halo--attributes","fullname":"plotOptions.pyramid.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-pyramid-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-states-hover-halo--attributes","fullname":"plotOptions.pie.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-pie-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-states-hover-halo--attributes","fullname":"plotOptions.polygon.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-polygon-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-states-hover-halo--attributes","fullname":"plotOptions.series.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-states-hover-halo--attributes","fullname":"plotOptions.scatter.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-scatter-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-halo--attributes","fullname":"plotOptions.solidgauge.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-solidgauge-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-states-hover-halo--attributes","fullname":"plotOptions.treemap.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-treemap-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover-halo--attributes","fullname":"plotOptions.column.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-column-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-states-hover-halo--attributes","fullname":"plotOptions.spline.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-spline-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-halo--attributes","fullname":"plotOptions.areasplinerange.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-areasplinerange-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-states-hover-halo--attributes","fullname":"plotOptions.columnrange.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-columnrange-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-halo--attributes","fullname":"plotOptions.areaspline.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-areaspline-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-states-hover-halo--attributes","fullname":"plotOptions.funnel.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-funnel-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-states-hover-halo--attributes","fullname":"plotOptions.boxplot.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-boxplot-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-states-hover-halo--attributes","fullname":"plotOptions.errorbar.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-errorbar-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-halo--attributes","fullname":"plotOptions.bar.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-bar-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-states-hover-halo--attributes","fullname":"plotOptions.arearange.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-arearange-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-states-hover-halo--attributes","fullname":"plotOptions.gauge.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-gauge-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-states-hover-halo--attributes","fullname":"plotOptions.heatmap.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-heatmap-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-states-hover-halo--attributes","fullname":"plotOptions.waterfall.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-waterfall-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--attributes","fullname":"series.states.hover.halo.attributes","title":"attributes","parent":"series-states-hover-halo","isParent":false,"returnType":"Object","defaults":"","values":"","since":"4.0","description":"A collection of SVG attributes to override the appearance of the halo, for example fill, stroke and stroke-width.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels--autoRotation","fullname":"xAxis.labels.autoRotation","title":"autoRotation","parent":"xAxis-labels","isParent":false,"returnType":"Array","defaults":"[-45]","since":"4.1.0","description":"For horizontal axes, the allowed degrees of label rotation to prevent overlapping labels. If there is enough space, labels are not rotated. As the chart gets narrower, it will start rotating the labels -45 degrees, then remove every second label and try again with rotations 0 and -45 etc. Set it to false to disable rotation, which will cause the labels to word-wrap if possible.","demo":"Default auto rotation of 0 or -45, custom graded auto rotation","deprecated":false},{"name":"yAxis-labels--autoRotation","fullname":"yAxis.labels.autoRotation","title":"autoRotation","parent":"yAxis-labels","isParent":false,"returnType":"Array","defaults":"[-45]","since":"4.1.0","description":"For horizontal axes, the allowed degrees of label rotation to prevent overlapping labels. If there is enough space, labels are not rotated. As the chart gets narrower, it will start rotating the labels -45 degrees, then remove every second label and try again with rotations 0 and -45 etc. Set it to false to disable rotation, which will cause the labels to word-wrap if possible.","demo":"Default auto rotation of 0 or -45, custom graded auto rotation","deprecated":false},{"name":"xAxis-labels--autoRotationLimit","fullname":"xAxis.labels.autoRotationLimit","title":"autoRotationLimit","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"80","since":"4.1.5","description":"When each category width is more than this many pixels, we don't apply auto rotation. Instead, we lay out the axis label with word wrap. A lower limit makes sense when the label contains multiple short words that don't extend the available horizontal space for each label.","demo":"Lower limit","deprecated":false},{"name":"yAxis-labels--autoRotationLimit","fullname":"yAxis.labels.autoRotationLimit","title":"autoRotationLimit","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"80","since":"4.1.5","description":"When each category width is more than this many pixels, we don't apply auto rotation. Instead, we lay out the axis label with word wrap. A lower limit makes sense when the label contains multiple short words that don't extend the available horizontal space for each label.","demo":"Lower limit","deprecated":false},{"name":"chart-options3d-frame-back","fullname":"chart.options3d.frame.back","title":"back","parent":"chart-options3d-frame","isParent":true,"returnType":"","defaults":"","values":"","since":"4.0","description":"Defines the back panel of the frame around 3D charts.","demo":"","seeAlso":"","deprecated":false},{"name":"pane--background","fullname":"pane.background","title":"background","parent":"pane","isParent":false,"returnType":"Array","since":"2.3.0","description":"An object, or array of objects, for backgrounds. Sub options include backgroundColor (can be solid or gradient), shape (\"solid\" or \"arc\"), innerWidth, outerWidth, borderWidth, borderColor.","demo":"Multiple backgrounds on a gauge.","deprecated":false},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-waterfall-dataLabels--backgroundColor","fullname":"plotOptions.waterfall.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-columnrange-dataLabels--backgroundColor","fullname":"plotOptions.columnrange.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-solidgauge-dataLabels--backgroundColor","fullname":"plotOptions.solidgauge.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-areasplinerange-dataLabels--backgroundColor","fullname":"plotOptions.areasplinerange.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-funnel-dataLabels--backgroundColor","fullname":"plotOptions.funnel.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"tooltip--backgroundColor","fullname":"tooltip.backgroundColor","title":"backgroundColor","parent":"tooltip","isParent":false,"returnType":"Color","defaults":"rgba(255, 255, 255, 0.85)","description":"The background color or gradient for the tooltip.","demo":"Yellowish background,\r\n\t\t\tgradient","deprecated":false},{"name":"series-pivot--backgroundColor","fullname":"series.pivot.backgroundColor","title":"backgroundColor","parent":"series-pivot","isParent":false,"returnType":"Color","defaults":"black","since":"2.3.0","description":"The background color or fill of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--backgroundColor","fullname":"plotOptions.spline.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-treemap-dataLabels--backgroundColor","fullname":"plotOptions.treemap.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-polygon-dataLabels--backgroundColor","fullname":"plotOptions.polygon.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-area-dataLabels--backgroundColor","fullname":"plotOptions.area.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"legend--backgroundColor","fullname":"legend.backgroundColor","title":"backgroundColor","parent":"legend","isParent":false,"returnType":"Color","description":"The background color of the legend.","demo":"Yellowish background","deprecated":false},{"name":"chart--backgroundColor","fullname":"chart.backgroundColor","title":"backgroundColor","parent":"chart","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The background color or gradient for the outer chart area.","demo":"Color,\n\t\t\tgradient"},{"name":"plotOptions-heatmap-dataLabels--backgroundColor","fullname":"plotOptions.heatmap.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-areaspline-dataLabels--backgroundColor","fullname":"plotOptions.areaspline.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-gauge-pivot--backgroundColor","fullname":"plotOptions.gauge.pivot.backgroundColor","title":"backgroundColor","parent":"plotOptions-gauge-pivot","isParent":false,"returnType":"Color","defaults":"black","since":"2.3.0","description":"The background color or fill of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--backgroundColor","fullname":"plotOptions.line.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-column-dataLabels--backgroundColor","fullname":"plotOptions.column.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-series-dataLabels--backgroundColor","fullname":"plotOptions.series.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-bubble-dataLabels--backgroundColor","fullname":"plotOptions.bubble.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-bar-dataLabels--backgroundColor","fullname":"plotOptions.bar.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-gauge-dataLabels--backgroundColor","fullname":"plotOptions.gauge.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-arearange-dataLabels--backgroundColor","fullname":"plotOptions.arearange.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-pie-dataLabels--backgroundColor","fullname":"plotOptions.pie.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-pyramid-dataLabels--backgroundColor","fullname":"plotOptions.pyramid.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-gauge-dial--backgroundColor","fullname":"plotOptions.gauge.dial.backgroundColor","title":"backgroundColor","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"Color","defaults":"black","since":"2.3.0","description":"The background or fill color of the gauge's dial. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--backgroundColor","fullname":"plotOptions.scatter.dataLabels.backgroundColor","title":"backgroundColor","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dial--backgroundColor","fullname":"series.dial.backgroundColor","title":"backgroundColor","parent":"series-dial","isParent":false,"returnType":"Color","defaults":"black","since":"2.3.0","description":"The background or fill color of the gauge's dial. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dataLabels--backgroundColor","fullname":"series.dataLabels.backgroundColor","title":"backgroundColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The background color or gradient for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-bar","fullname":"plotOptions.bar","title":"bar","parent":"plotOptions","isParent":true},{"name":"plotOptions-gauge-dial--baseLength","fullname":"plotOptions.gauge.dial.baseLength","title":"baseLength","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"String","defaults":"70%","since":"2.3.0","description":"The length of the dial's base part, relative to the total radius or length of the dial. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dial--baseLength","fullname":"series.dial.baseLength","title":"baseLength","parent":"series-dial","isParent":false,"returnType":"String","defaults":"70%","since":"2.3.0","description":"The length of the dial's base part, relative to the total radius or length of the dial. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dial--baseWidth","fullname":"series.dial.baseWidth","title":"baseWidth","parent":"series-dial","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The pixel width of the base of the gauge dial. The base is the part closest to the pivot, defined by baseLength. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dial--baseWidth","fullname":"plotOptions.gauge.dial.baseWidth","title":"baseWidth","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The pixel width of the base of the gauge dial. The base is the part closest to the pivot, defined by baseLength. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"chart-events--beforePrint","fullname":"chart.events.beforePrint","title":"beforePrint","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"4.1.0","description":"Fires before a chart is printed through the context menu item or the Chart.print method. Requires the exporting module.","demo":"Rescale the chart to print","deprecated":false},{"name":"chart-options3d--beta","fullname":"chart.options3d.beta","title":"beta","parent":"chart-options3d","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"One of the two rotation angles for the chart.","demo":"Dynamic Angles","deprecated":false},{"name":"plotOptions-column--borderColor","fullname":"plotOptions.column.borderColor","title":"borderColor","parent":"plotOptions-column","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"plotOptions-polygon-dataLabels--borderColor","fullname":"plotOptions.polygon.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-treemap--borderColor","fullname":"plotOptions.treemap.borderColor","title":"borderColor","parent":"plotOptions-treemap","isParent":false,"returnType":"Color","defaults":"#E0E0E0","description":"The color of the border surrounding each tree map item.","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--borderColor","fullname":"plotOptions.pyramid.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color for the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--borderColor","fullname":"tooltip.borderColor","title":"borderColor","parent":"tooltip","isParent":false,"returnType":"Color","defaults":"null","description":"The color of the tooltip border. When null, the border takes the color of the corresponding series or point.","demo":"Follow series by default,\r\n\t\t\tblack border","deprecated":false},{"name":"plotOptions-gauge-pivot--borderColor","fullname":"plotOptions.gauge.pivot.borderColor","title":"borderColor","parent":"plotOptions-gauge-pivot","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border or stroke color of the pivot. In able to change this, the borderWidth must also be set to something other than the default 0.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dial--borderColor","fullname":"series.dial.borderColor","title":"borderColor","parent":"series-dial","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color or stroke of the gauge's dial. By default, the borderWidth is 0, so this must be set in addition to a custom border color.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--borderColor","fullname":"plotOptions.solidgauge.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color for the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-pivot--borderColor","fullname":"series.pivot.borderColor","title":"borderColor","parent":"series-pivot","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border or stroke color of the pivot. In able to change this, the borderWidth must also be set to something other than the default 0.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--borderColor","fullname":"plotOptions.area.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"plotOptions-series-dataLabels--borderColor","fullname":"plotOptions.series.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-treemap-levels--borderColor","fullname":"plotOptions.treemap.levels.borderColor","title":"borderColor","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"Color","since":"4.1.0","description":"Can set borderColor on all points which lies on the same level.","deprecated":false},{"name":"plotOptions-column-dataLabels--borderColor","fullname":"plotOptions.column.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"yAxis-plotBands--borderColor","fullname":"yAxis.plotBands.borderColor","title":"borderColor","parent":"yAxis-plotBands","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"","description":"Border color for the plot band. Also requires borderWidth to be set.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--borderColor","fullname":"plotOptions.heatmap.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"chart--borderColor","fullname":"chart.borderColor","title":"borderColor","parent":"chart","isParent":false,"returnType":"Color","defaults":"#4572A7","description":"The color of the outer chart border.","demo":"Brown border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-columnrange-dataLabels--borderColor","fullname":"plotOptions.columnrange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color for the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--borderColor","fullname":"plotOptions.funnel.borderColor","title":"borderColor","parent":"plotOptions-funnel","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"plotOptions-treemap-dataLabels--borderColor","fullname":"plotOptions.treemap.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-funnel-dataLabels--borderColor","fullname":"plotOptions.funnel.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-waterfall-dataLabels--borderColor","fullname":"plotOptions.waterfall.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-waterfall--borderColor","fullname":"plotOptions.waterfall.borderColor","title":"borderColor","parent":"plotOptions-waterfall","isParent":false,"returnType":"Color","defaults":"#333333","since":"3.0","description":"The color of the border of each waterfall column.","deprecated":false},{"name":"plotOptions-heatmap--borderColor","fullname":"plotOptions.heatmap.borderColor","title":"borderColor","parent":"plotOptions-heatmap","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-areasplinerange-dataLabels--borderColor","fullname":"plotOptions.areasplinerange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-arearange-dataLabels--borderColor","fullname":"plotOptions.arearange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"legend--borderColor","fullname":"legend.borderColor","title":"borderColor","parent":"legend","isParent":false,"returnType":"Color","defaults":"#909090","description":"The color of the drawn border around the legend.","demo":"Brown border"},{"name":"plotOptions-bar--borderColor","fullname":"plotOptions.bar.borderColor","title":"borderColor","parent":"plotOptions-bar","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-gauge-dataLabels--borderColor","fullname":"plotOptions.gauge.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color for the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--borderColor","fullname":"plotOptions.bar.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-levels--borderColor","fullname":"series.levels.borderColor","title":"borderColor","parent":"series-levels","isParent":false,"returnType":"Color","since":"4.1.0","description":"Can set borderColor on all points which lies on the same level.","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--borderColor","fullname":"plotOptions.areaspline.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#E0E0E0","description":"The color of the border surrounding each tree map item.","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#333333","since":"3.0","description":"The color of the border of each waterfall column.","deprecated":false},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"plotOptions-gauge-dial--borderColor","fullname":"plotOptions.gauge.dial.borderColor","title":"borderColor","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"Color","defaults":"silver","since":"2.3.0","description":"The border color or stroke of the gauge's dial. By default, the borderWidth is 0, so this must be set in addition to a custom border color.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--borderColor","fullname":"plotOptions.pyramid.borderColor","title":"borderColor","parent":"plotOptions-pyramid","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-line-dataLabels--borderColor","fullname":"plotOptions.line.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-pie--borderColor","fullname":"plotOptions.pie.borderColor","title":"borderColor","parent":"plotOptions-pie","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each slice. When null, the border takes the same color as the slice fill. This can be used together with a borderWidth to fill drawing gaps created by antialiazing artefacts in borderless pies.","demo":"Black border","deprecated":false},{"name":"plotOptions-columnrange--borderColor","fullname":"plotOptions.columnrange.borderColor","title":"borderColor","parent":"plotOptions-columnrange","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"xAxis-plotBands--borderColor","fullname":"xAxis.plotBands.borderColor","title":"borderColor","parent":"xAxis-plotBands","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"","description":"Border color for the plot band. Also requires borderWidth to be set.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--borderColor","fullname":"plotOptions.bubble.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series--borderColor","fullname":"series.borderColor","title":"borderColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the border surrounding each column or bar.","demo":"Dark gray border","deprecated":false},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-dataLabels--borderColor","fullname":"series.dataLabels.borderColor","title":"borderColor","parent":"series-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-spline-dataLabels--borderColor","fullname":"plotOptions.spline.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-scatter-dataLabels--borderColor","fullname":"plotOptions.scatter.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"plotOptions-pie-dataLabels--borderColor","fullname":"plotOptions.pie.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Color","since":"2.2.1","description":"The border color for the data label. Defaults to undefined.","demo":"Data labels box options"},{"name":"series-levels--borderDashStyle","fullname":"series.levels.borderDashStyle","title":"borderDashStyle","parent":"series-levels","isParent":false,"returnType":"String","since":"4.1.0","description":"Set the dash style of the border of all the point which lies on the level.\r\nSee plotOptions.scatter.dashStyle for possible options.","deprecated":false},{"name":"plotOptions-treemap-levels--borderDashStyle","fullname":"plotOptions.treemap.levels.borderDashStyle","title":"borderDashStyle","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"String","since":"4.1.0","description":"Set the dash style of the border of all the point which lies on the level.\r\nSee plotOptions.scatter.dashStyle for possible options.","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-series-dataLabels--borderRadius","fullname":"plotOptions.series.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--borderRadius","fullname":"plotOptions.waterfall.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-line-dataLabels--borderRadius","fullname":"plotOptions.line.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--borderRadius","fullname":"plotOptions.areaspline.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The border radius in pixels for the gauge's data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--borderRadius","fullname":"plotOptions.funnel.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderRadius","fullname":"series.borderRadius","title":"borderRadius","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-bar-dataLabels--borderRadius","fullname":"plotOptions.bar.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"legend--borderRadius","fullname":"legend.borderRadius","title":"borderRadius","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","description":"The border corner radius of the legend.","demo":"Square by default,\r\n\t\t\t5px rounded","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-arearange-dataLabels--borderRadius","fullname":"plotOptions.arearange.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"chart--borderRadius","fullname":"chart.borderRadius","title":"borderRadius","parent":"chart","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the outer chart border.","demo":"20px radius","deprecated":false},{"name":"plotOptions-spline-dataLabels--borderRadius","fullname":"plotOptions.spline.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-column-dataLabels--borderRadius","fullname":"plotOptions.column.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-columnrange--borderRadius","fullname":"plotOptions.columnrange.borderRadius","title":"borderRadius","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"plotOptions-scatter-dataLabels--borderRadius","fullname":"plotOptions.scatter.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pie-dataLabels--borderRadius","fullname":"plotOptions.pie.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"tooltip--borderRadius","fullname":"tooltip.borderRadius","title":"borderRadius","parent":"tooltip","isParent":false,"returnType":"Number","defaults":"3","description":"The radius of the rounded border corners.","demo":"5px by default,\r\n\t\t\tsquare borders","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderRadius","fullname":"series.borderRadius","title":"borderRadius","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--borderRadius","fullname":"plotOptions.columnrange.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--borderRadius","fullname":"plotOptions.heatmap.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-gauge-dataLabels--borderRadius","fullname":"plotOptions.gauge.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The border radius in pixels for the gauge's data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series--borderRadius","fullname":"series.borderRadius","title":"borderRadius","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--borderRadius","fullname":"plotOptions.solidgauge.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The border radius in pixels for the gauge's data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-area-dataLabels--borderRadius","fullname":"plotOptions.area.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-polygon-dataLabels--borderRadius","fullname":"plotOptions.polygon.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"3","since":"2.3.0","description":"The border radius in pixels for the gauge's data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--borderRadius","fullname":"plotOptions.bar.borderRadius","title":"borderRadius","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"plotOptions-column--borderRadius","fullname":"plotOptions.column.borderRadius","title":"borderRadius","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"plotOptions-bubble-dataLabels--borderRadius","fullname":"plotOptions.bubble.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--borderRadius","fullname":"plotOptions.pyramid.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderRadius","fullname":"series.borderRadius","title":"borderRadius","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-heatmap--borderRadius","fullname":"plotOptions.heatmap.borderRadius","title":"borderRadius","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderRadius","fullname":"series.borderRadius","title":"borderRadius","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"series-dataLabels--borderRadius","fullname":"series.dataLabels.borderRadius","title":"borderRadius","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-treemap-dataLabels--borderRadius","fullname":"plotOptions.treemap.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-waterfall--borderRadius","fullname":"plotOptions.waterfall.borderRadius","title":"borderRadius","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","demo":"Rounded columns","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--borderRadius","fullname":"plotOptions.areasplinerange.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border radius in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dial--borderWidth","fullname":"series.dial.borderWidth","title":"borderWidth","parent":"series-dial","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"The width of the gauge dial border in pixels.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The border width in pixels for the gauge data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--borderWidth","fullname":"plotOptions.columnrange.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--borderWidth","fullname":"plotOptions.solidgauge.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The border width in pixels for the gauge data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--borderWidth","fullname":"plotOptions.heatmap.borderWidth","title":"borderWidth","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series-levels--borderWidth","fullname":"series.levels.borderWidth","title":"borderWidth","parent":"series-levels","isParent":false,"returnType":"Number","since":"4.1.0","description":"Can set the borderWidth on all points which lies on the same level.","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--borderWidth","fullname":"plotOptions.pyramid.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-column--borderWidth","fullname":"plotOptions.column.borderWidth","title":"borderWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--borderWidth","fullname":"plotOptions.areaspline.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pie--borderWidth","fullname":"plotOptions.pie.borderWidth","title":"borderWidth","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"chart--borderWidth","fullname":"chart.borderWidth","title":"borderWidth","parent":"chart","isParent":false,"returnType":"Number","defaults":"0","description":"The pixel width of the outer chart border.","demo":"5px border","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-gauge-dataLabels--borderWidth","fullname":"plotOptions.gauge.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The border width in pixels for the gauge data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--borderWidth","fullname":"plotOptions.bubble.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-pivot--borderWidth","fullname":"series.pivot.borderWidth","title":"borderWidth","parent":"series-pivot","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"The border or stroke width of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"plotOptions-waterfall--borderWidth","fullname":"plotOptions.waterfall.borderWidth","title":"borderWidth","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-funnel-dataLabels--borderWidth","fullname":"plotOptions.funnel.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"plotOptions-bar-dataLabels--borderWidth","fullname":"plotOptions.bar.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--borderWidth","fullname":"plotOptions.waterfall.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"legend--borderWidth","fullname":"legend.borderWidth","title":"borderWidth","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the drawn border around the legend.","demo":"2px border width","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"xAxis-plotBands--borderWidth","fullname":"xAxis.plotBands.borderWidth","title":"borderWidth","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","defaults":"0","description":"Border width for the plot band. Also requires borderColor to be set.","deprecated":false},{"name":"plotOptions-polygon-dataLabels--borderWidth","fullname":"plotOptions.polygon.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-series-dataLabels--borderWidth","fullname":"plotOptions.series.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-spline-dataLabels--borderWidth","fullname":"plotOptions.spline.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-scatter-dataLabels--borderWidth","fullname":"plotOptions.scatter.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-gauge-dial--borderWidth","fullname":"plotOptions.gauge.dial.borderWidth","title":"borderWidth","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"The width of the gauge dial border in pixels.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-levels--borderWidth","fullname":"plotOptions.treemap.levels.borderWidth","title":"borderWidth","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"Number","since":"4.1.0","description":"Can set the borderWidth on all points which lies on the same level.","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--borderWidth","fullname":"plotOptions.heatmap.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-line-dataLabels--borderWidth","fullname":"plotOptions.line.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-bar--borderWidth","fullname":"plotOptions.bar.borderWidth","title":"borderWidth","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-gauge-pivot--borderWidth","fullname":"plotOptions.gauge.pivot.borderWidth","title":"borderWidth","parent":"plotOptions-gauge-pivot","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"The border or stroke width of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-columnrange--borderWidth","fullname":"plotOptions.columnrange.borderWidth","title":"borderWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"plotOptions-column-dataLabels--borderWidth","fullname":"plotOptions.column.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-area-dataLabels--borderWidth","fullname":"plotOptions.area.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-funnel--borderWidth","fullname":"plotOptions.funnel.borderWidth","title":"borderWidth","parent":"plotOptions-funnel","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"plotOptions-arearange-dataLabels--borderWidth","fullname":"plotOptions.arearange.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"tooltip--borderWidth","fullname":"tooltip.borderWidth","title":"borderWidth","parent":"tooltip","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the tooltip border.","demo":"2px by default,,\r\n\t\t\tno border (shadow only)","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-treemap--borderWidth","fullname":"plotOptions.treemap.borderWidth","title":"borderWidth","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The border width in pixels for the gauge data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pie-dataLabels--borderWidth","fullname":"plotOptions.pie.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pyramid--borderWidth","fullname":"plotOptions.pyramid.borderWidth","title":"borderWidth","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number","defaults":"1","description":"

The width of the border surrounding each slice.

\r\n\r\n

When setting the border width to 0, there may be small gaps between the slices due to SVG antialiasing artefacts. To work around this, keep the border width at 0.5 or 1, but set the borderColor to null instead.

","demo":"3px border","deprecated":false},{"name":"series--borderWidth","fullname":"series.borderWidth","title":"borderWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","demo":"2px black border","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-treemap-dataLabels--borderWidth","fullname":"plotOptions.treemap.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--borderWidth","fullname":"plotOptions.areasplinerange.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--borderWidth","fullname":"series.dataLabels.borderWidth","title":"borderWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.1","description":"The border width in pixels for the data label.","demo":"Data labels box options","deprecated":false},{"name":"yAxis-plotBands--borderWidth","fullname":"yAxis.plotBands.borderWidth","title":"borderWidth","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","defaults":"0","description":"Border width for the plot band. Also requires borderColor to be set.","deprecated":false},{"name":"chart-options3d-frame-bottom","fullname":"chart.options3d.frame.bottom","title":"bottom","parent":"chart-options3d-frame","isParent":true,"returnType":"","defaults":"","values":"","since":"4.0","description":"The bottom of the frame around a 3D chart.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot","fullname":"plotOptions.boxplot","title":"boxplot","parent":"plotOptions","isParent":true,"returnType":"Object","since":"3.0","description":"A box plot is a convenient way of depicting groups of data through their five-number summaries: the smallest observation (sample minimum), lower quartile (Q1), median (Q2), upper quartile (Q3), and largest observation (sample maximum). ","deprecated":false},{"name":"yAxis-breaks--breakSize","fullname":"yAxis.breaks.breakSize","title":"breakSize","parent":"yAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.0","description":"A number indicating how much space should be left between the start and the end of the break. The break size is given in axis units, so for instance on a datetime axis, a break size of 3600000 would indicate the equivalent of an hour.","deprecated":false},{"name":"xAxis-breaks--breakSize","fullname":"xAxis.breaks.breakSize","title":"breakSize","parent":"xAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.0","description":"A number indicating how much space should be left between the start and the end of the break. The break size is given in axis units, so for instance on a datetime axis, a break size of 3600000 would indicate the equivalent of an hour.","deprecated":false},{"name":"yAxis-breaks","fullname":"yAxis.breaks","title":"breaks","parent":"yAxis","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining breaks in the axis, the sections defined will be left out and all the points shifted closer to each other. Requires that the broken-axis.js module is loaded.","demo":"Simple break, advanced with callback","deprecated":false},{"name":"xAxis-breaks","fullname":"xAxis.breaks","title":"breaks","parent":"xAxis","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining breaks in the axis, the sections defined will be left out and all the points shifted closer to each other. Requires that the broken-axis.js module is loaded.","demo":"Simple break, advanced with callback","deprecated":false},{"name":"plotOptions-bubble","fullname":"plotOptions.bubble","title":"bubble","parent":"plotOptions","isParent":true,"returnType":"Object","defaults":"","values":"","since":"3.0","description":"A bubble series is a three dimensional series type where each point renders an X, Y and Z value. Each points is drawn as a bubble where the position along the X and Y axes mark the X and Y values, and the size of the bubble relates to the Z value.","demo":"","seeAlso":"","deprecated":false},{"name":"navigation-buttonOptions","fullname":"navigation.buttonOptions","title":"buttonOptions","parent":"navigation","isParent":true,"description":"A collection of options for buttons appearing in the exporting module."},{"name":"exporting-buttons","fullname":"exporting.buttons","title":"buttons","parent":"exporting","isParent":true,"description":"Options for the export related buttons, print and export. In addition to the default buttons listed here, custom buttons can be added. See navigation.buttonOptions for general options.","deprecated":false},{"name":"global--canvasToolsURL","fullname":"global.canvasToolsURL","title":"canvasToolsURL","parent":"global","isParent":false,"returnType":"String","defaults":"http://code.highcharts.com/{version}/modules/canvas-tools.js","description":"The URL to the additional file to lazy load for Android 2.x devices. These devices don't \r\n support SVG, so we download a helper file that contains canvg,\r\n its dependency rbcolor, and our own CanVG Renderer class. To avoid hotlinking to our site,\r\n you can install canvas-tools.js on your own server and change this option accordingly.","deprecated":false},{"name":"yAxis--categories","fullname":"yAxis.categories","title":"categories","parent":"yAxis","isParent":false,"returnType":"Array","description":"

If categories are present for the xAxis, names are used instead of numbers for that axis. Since Highcharts 3.0, categories can also be extracted by giving each point a name and setting axis type to category. However, if you have multiple series, best practice remains defining the categories array.

\r\n\r\n

Example:\r\n

categories: ['Apples', 'Bananas', 'Oranges']
\r\n\t\t Defaults to null\r\n

","demo":"With and\r\n\t\t\twithout categories","deprecated":false},{"name":"xAxis--categories","fullname":"xAxis.categories","title":"categories","parent":"xAxis","isParent":false,"returnType":"Array","description":"

If categories are present for the xAxis, names are used instead of numbers for that axis. Since Highcharts 3.0, categories can also be extracted by giving each point a name and setting axis type to category. However, if you have multiple series, best practice remains defining the categories array.

\r\n\r\n

Example:\r\n

categories: ['Apples', 'Bananas', 'Oranges']
\r\n\t\t Defaults to null\r\n

","demo":"With and\r\n\t\t\twithout categories","deprecated":false},{"name":"yAxis--ceiling","fullname":"yAxis.ceiling","title":"ceiling","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"","values":"","since":"4.0","description":"The highest allowed value for automatically computed axis extremes.","demo":" Floor and ceiling","seeAlso":"floor","deprecated":false},{"name":"xAxis--ceiling","fullname":"xAxis.ceiling","title":"ceiling","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"","values":"","since":"4.0","description":"The highest allowed value for automatically computed axis extremes.","demo":" Floor and ceiling","seeAlso":"floor","deprecated":false},{"name":"plotOptions-pyramid--center","fullname":"plotOptions.pyramid.center","title":"center","parent":"plotOptions-pyramid","isParent":false,"returnType":"Array","defaults":"[\"50%\", \"50%\"]","since":"3.0","description":"The center of the series. By default, it is centered in the middle of the plot area, so it fills the plot area height.","deprecated":false},{"name":"plotOptions-funnel--center","fullname":"plotOptions.funnel.center","title":"center","parent":"plotOptions-funnel","isParent":false,"returnType":"Array","defaults":"[\"50%\", \"50%\"]","since":"3.0","description":"The center of the series. By default, it is centered in the middle of the plot area, so it fills the plot area height.","deprecated":false},{"name":"series--center","fullname":"series.center","title":"center","parent":"series","isParent":false,"returnType":"Array","defaults":"[\"50%\", \"50%\"]","since":"3.0","description":"The center of the series. By default, it is centered in the middle of the plot area, so it fills the plot area height.","deprecated":false},{"name":"series--center","fullname":"series.center","title":"center","parent":"series","isParent":false,"returnType":"Array","defaults":"[\"50%\", \"50%\"]","since":"3.0","description":"The center of the series. By default, it is centered in the middle of the plot area, so it fills the plot area height.","deprecated":false},{"name":"series--center","fullname":"series.center","title":"center","parent":"series","isParent":false,"returnType":"Array","defaults":"[null, null]","description":"The center of the pie chart relative to the plot area. Can be percentages or pixel values. The default behaviour (as of 3.0) is to center the pie so that all slices and data labels are within the plot area. As a consequence, the pie may actually jump around in a chart with dynamic values, as the data labels move. In that case, the center should be explicitly set, for example to [\"50%\", \"50%\"].\r\n\t\t ","demo":"Centered at 100, 100","deprecated":false},{"name":"pane--center","fullname":"pane.center","title":"center","parent":"pane","isParent":false,"returnType":"Array","defaults":"[\"50%\", \"50%\"]","since":"2.3.0","description":"The center of a polar chart or angular gauge, given as an array of [x, y] positions. Positions can be given as integers that transform to pixels, or as percentages of the plot area size.","demo":"Two gauges with different center","deprecated":false},{"name":"plotOptions-pie--center","fullname":"plotOptions.pie.center","title":"center","parent":"plotOptions-pie","isParent":false,"returnType":"Array","defaults":"[null, null]","description":"The center of the pie chart relative to the plot area. Can be percentages or pixel values. The default behaviour (as of 3.0) is to center the pie so that all slices and data labels are within the plot area. As a consequence, the pie may actually jump around in a chart with dynamic values, as the data labels move. In that case, the center should be explicitly set, for example to [\"50%\", \"50%\"].\r\n\t\t ","demo":"Centered at 100, 100","deprecated":false},{"name":"chart","fullname":"chart","title":"chart","isParent":true,"description":"Options regarding the chart area and plot area as well as general chart options."},{"name":"exporting--chartOptions","fullname":"exporting.chartOptions","title":"chartOptions","parent":"exporting","isParent":false,"returnType":"Object","defaults":"null","description":"Additional chart options to be merged into an exported chart. For example, a common use case is to add data labels to improve readaility of the exported chart, or to add a printer-friendly color scheme.","demo":"Added data labels.","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-areasplinerange-events--checkboxClick","fullname":"plotOptions.areasplinerange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-solidgauge-events--checkboxClick","fullname":"plotOptions.solidgauge.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-heatmap-events--checkboxClick","fullname":"plotOptions.heatmap.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-bubble-events--checkboxClick","fullname":"plotOptions.bubble.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-treemap-events--checkboxClick","fullname":"plotOptions.treemap.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-pie-events--checkboxClick","fullname":"plotOptions.pie.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"plotOptions-line-events--checkboxClick","fullname":"plotOptions.line.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-series-events--checkboxClick","fullname":"plotOptions.series.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-waterfall-events--checkboxClick","fullname":"plotOptions.waterfall.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-column-events--checkboxClick","fullname":"plotOptions.column.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-scatter-events--checkboxClick","fullname":"plotOptions.scatter.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-pyramid-events--checkboxClick","fullname":"plotOptions.pyramid.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-gauge-events--checkboxClick","fullname":"plotOptions.gauge.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-bar-events--checkboxClick","fullname":"plotOptions.bar.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-columnrange-events--checkboxClick","fullname":"plotOptions.columnrange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-spline-events--checkboxClick","fullname":"plotOptions.spline.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-boxplot-events--checkboxClick","fullname":"plotOptions.boxplot.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-errorbar-events--checkboxClick","fullname":"plotOptions.errorbar.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-events--checkboxClick","fullname":"plotOptions.areaspline.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-polygon-events--checkboxClick","fullname":"plotOptions.polygon.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-arearange-events--checkboxClick","fullname":"plotOptions.arearange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-area-events--checkboxClick","fullname":"plotOptions.area.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"plotOptions-funnel-events--checkboxClick","fullname":"plotOptions.funnel.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"1.2.0","description":"Fires when the checkbox next to the point name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","seeAlso":"","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"series-events--checkboxClick","fullname":"series.events.checkboxClick","title":"checkboxClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, event, is passed to the function. The state of the checkbox is found by event.checked. The checked item is found by event.item. Return false to prevent the default action which is to toggle the select state of the series.","demo":"Alert checkbox status","deprecated":false},{"name":"chart--className","fullname":"chart.className","title":"className","parent":"chart","isParent":false,"returnType":"String","description":"A CSS class name to apply to the charts container div, allowing unique CSS styling for each chart."},{"name":"plotOptions-bar-point-events--click","fullname":"plotOptions.bar.point.events.click","title":"click","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-errorbar-point-events--click","fullname":"plotOptions.errorbar.point.events.click","title":"click","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-pyramid-point-events--click","fullname":"plotOptions.pyramid.point.events.click","title":"click","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-polygon-events--click","fullname":"plotOptions.polygon.events.click","title":"click","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-treemap-events--click","fullname":"plotOptions.treemap.events.click","title":"click","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-gauge-events--click","fullname":"plotOptions.gauge.events.click","title":"click","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-boxplot-events--click","fullname":"plotOptions.boxplot.events.click","title":"click","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-columnrange-point-events--click","fullname":"plotOptions.columnrange.point.events.click","title":"click","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-scatter-point-events--click","fullname":"plotOptions.scatter.point.events.click","title":"click","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-treemap-point-events--click","fullname":"plotOptions.treemap.point.events.click","title":"click","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-series-point-events--click","fullname":"plotOptions.series.point.events.click","title":"click","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-areasplinerange-events--click","fullname":"plotOptions.areasplinerange.events.click","title":"click","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-bar-events--click","fullname":"plotOptions.bar.events.click","title":"click","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-boxplot-point-events--click","fullname":"plotOptions.boxplot.point.events.click","title":"click","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-bubble-point-events--click","fullname":"plotOptions.bubble.point.events.click","title":"click","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--click","fullname":"plotOptions.areasplinerange.point.events.click","title":"click","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-errorbar-events--click","fullname":"plotOptions.errorbar.events.click","title":"click","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-scatter-events--click","fullname":"plotOptions.scatter.events.click","title":"click","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-funnel-point-events--click","fullname":"plotOptions.funnel.point.events.click","title":"click","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-arearange-point-events--click","fullname":"plotOptions.arearange.point.events.click","title":"click","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-columnrange-events--click","fullname":"plotOptions.columnrange.events.click","title":"click","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-column-events--click","fullname":"plotOptions.column.events.click","title":"click","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-solidgauge-point-events--click","fullname":"plotOptions.solidgauge.point.events.click","title":"click","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-polygon-point-events--click","fullname":"plotOptions.polygon.point.events.click","title":"click","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-arearange-events--click","fullname":"plotOptions.arearange.events.click","title":"click","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-solidgauge-events--click","fullname":"plotOptions.solidgauge.events.click","title":"click","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"chart-events--click","fullname":"chart.events.click","title":"click","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"1.2.0","description":"

Fires when clicking on the plot background. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

Information on the clicked spot can be found through event.xAxis and event.yAxis, which are arrays containing the axes of each dimension and each axis' value at the clicked spot. The primary axes are event.xAxis[0] and event.yAxis[0]. Remember the unit of a datetime axis is milliseconds since 1970-01-01 00:00:00.

\r\n
click: function(e) {\r\n\tconsole.log(\r\n\t\tHighcharts.dateFormat('%Y-%m-%d %H:%M:%S', e.xAxis[0].value), \r\n\t\te.yAxis[0].value\r\n\t)\r\n}
","demo":"Alert coordinates on click. Alternatively, attach event to container","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-area-events--click","fullname":"plotOptions.area.events.click","title":"click","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-heatmap-point-events--click","fullname":"plotOptions.heatmap.point.events.click","title":"click","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-series-events--click","fullname":"plotOptions.series.events.click","title":"click","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-pyramid-events--click","fullname":"plotOptions.pyramid.events.click","title":"click","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-spline-point-events--click","fullname":"plotOptions.spline.point.events.click","title":"click","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-line-point-events--click","fullname":"plotOptions.line.point.events.click","title":"click","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-line-events--click","fullname":"plotOptions.line.events.click","title":"click","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-waterfall-events--click","fullname":"plotOptions.waterfall.events.click","title":"click","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-pie-events--click","fullname":"plotOptions.pie.events.click","title":"click","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-gauge-point-events--click","fullname":"plotOptions.gauge.point.events.click","title":"click","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-area-point-events--click","fullname":"plotOptions.area.point.events.click","title":"click","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-funnel-events--click","fullname":"plotOptions.funnel.events.click","title":"click","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-spline-events--click","fullname":"plotOptions.spline.events.click","title":"click","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-events--click","fullname":"series.events.click","title":"click","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-pie-point-events--click","fullname":"plotOptions.pie.point.events.click","title":"click","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-areaspline-events--click","fullname":"plotOptions.areaspline.events.click","title":"click","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-column-point-events--click","fullname":"plotOptions.column.point.events.click","title":"click","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-bubble-events--click","fullname":"plotOptions.bubble.events.click","title":"click","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-heatmap-events--click","fullname":"plotOptions.heatmap.events.click","title":"click","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. Additionally, event.point holds a pointer to the nearest point on the graph.","demo":"Alert click info","deprecated":false},{"name":"plotOptions-areaspline-point-events--click","fullname":"plotOptions.areaspline.point.events.click","title":"click","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-point-events--click","fullname":"series.point.events.click","title":"click","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-waterfall-point-events--click","fullname":"plotOptions.waterfall.point.events.click","title":"click","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"series-data-events--click","fullname":"series.data.events.click","title":"click","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"

Fires when a point is clicked. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

If the series.allowPointSelect option is true, the default action for the point's click event is to toggle the point's select state. Returning false cancels this action.

","demo":"Click marker to alert values,\r\n\t\t\tclick column, \r\n\t\t\tgo to URL","deprecated":false},{"name":"plotOptions-gauge-dataLabels--color","fullname":"plotOptions.gauge.dataLabels.color","title":"color","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-area--color","fullname":"plotOptions.area.color","title":"color","parent":"plotOptions-area","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-bubble-dataLabels--color","fullname":"plotOptions.bubble.dataLabels.color","title":"color","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-column--color","fullname":"plotOptions.column.color","title":"color","parent":"plotOptions-column","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"yAxis-plotLines--color","fullname":"yAxis.plotLines.color","title":"color","parent":"yAxis-plotLines","isParent":false,"returnType":"Color","description":"The color of the line.","demo":"A red line from X axis"},{"name":"xAxis-plotLines--color","fullname":"xAxis.plotLines.color","title":"color","parent":"xAxis-plotLines","isParent":false,"returnType":"Color","description":"The color of the line.","demo":"A red line from X axis"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-polygon-dataLabels--color","fullname":"plotOptions.polygon.dataLabels.color","title":"color","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-spline-dataLabels--color","fullname":"plotOptions.spline.dataLabels.color","title":"color","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-funnel-zones--color","fullname":"plotOptions.funnel.zones.color","title":"color","parent":"plotOptions-funnel-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-arearange-dataLabels--color","fullname":"plotOptions.arearange.dataLabels.color","title":"color","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-columnrange-zones--color","fullname":"plotOptions.columnrange.zones.color","title":"color","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-waterfall-zones--color","fullname":"plotOptions.waterfall.zones.color","title":"color","parent":"plotOptions-waterfall-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-polygon-zones--color","fullname":"plotOptions.polygon.zones.color","title":"color","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-treemap--color","fullname":"plotOptions.treemap.color","title":"color","parent":"plotOptions-treemap","isParent":false,"returnType":"Color","defaults":"null","since":"4.0","description":"The main color of the series. In heat maps this color is rarely used, as we mostly use the color to denote the value of each point. Unless options are set in the colorAxis, the default value is pulled from the options.colors array.","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--color","fullname":"plotOptions.columnrange.dataLabels.color","title":"color","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-pie-zones--color","fullname":"plotOptions.pie.zones.color","title":"color","parent":"plotOptions-pie-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-gauge--color","fullname":"plotOptions.gauge.color","title":"color","parent":"plotOptions-gauge","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-series--color","fullname":"plotOptions.series.color","title":"color","parent":"plotOptions-series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"chart-options3d-frame-side--color","fullname":"chart.options3d.frame.side.color","title":"color","parent":"chart-options3d-frame-side","isParent":false,"returnType":"Color","defaults":"transparent","values":"","since":"4.0","description":"The color of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-options3d-frame-bottom--color","fullname":"chart.options3d.frame.bottom.color","title":"color","parent":"chart-options3d-frame-bottom","isParent":false,"returnType":"Color","defaults":"transparent","values":"","since":"4.0","description":"The color of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-zones--color","fullname":"plotOptions.areaspline.zones.color","title":"color","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","description":"The color of the point. In heat maps the point color is rarely set explicitly, as we use the color to denote the value. Options for this are set in the colorAxis configuration."},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-column-dataLabels--color","fullname":"plotOptions.column.dataLabels.color","title":"color","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-waterfall-dataLabels--color","fullname":"plotOptions.waterfall.dataLabels.color","title":"color","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-columnrange--color","fullname":"plotOptions.columnrange.color","title":"color","parent":"plotOptions-columnrange","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-pyramid-zones--color","fullname":"plotOptions.pyramid.zones.color","title":"color","parent":"plotOptions-pyramid-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-treemap-levels--color","fullname":"plotOptions.treemap.levels.color","title":"color","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"Color","since":"4.1.0","description":"Can set a color on all points which lies on the same level.","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-heatmap-zones--color","fullname":"plotOptions.heatmap.zones.color","title":"color","parent":"plotOptions-heatmap-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-levels--color","fullname":"series.levels.color","title":"color","parent":"series-levels","isParent":false,"returnType":"Color","since":"4.1.0","description":"Can set a color on all points which lies on the same level.","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-errorbar-zones--color","fullname":"plotOptions.errorbar.zones.color","title":"color","parent":"plotOptions-errorbar-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-series-zones--color","fullname":"plotOptions.series.zones.color","title":"color","parent":"plotOptions-series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-arearange--color","fullname":"plotOptions.arearange.color","title":"color","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-heatmap-dataLabels--color","fullname":"plotOptions.heatmap.dataLabels.color","title":"color","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","description":"The color of the point. In heat maps the point color is rarely set explicitly, as we use the color to denote the value. Options for this are set in the colorAxis configuration."},{"name":"plotOptions-area-zones--color","fullname":"plotOptions.area.zones.color","title":"color","parent":"plotOptions-area-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-boxplot-zones--color","fullname":"plotOptions.boxplot.zones.color","title":"color","parent":"plotOptions-boxplot-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-heatmap--color","fullname":"plotOptions.heatmap.color","title":"color","parent":"plotOptions-heatmap","isParent":false,"returnType":"Color","defaults":"null","since":"4.0","description":"The main color of the series. In heat maps this color is rarely used, as we mostly use the color to denote the value of each point. Unless options are set in the colorAxis, the default value is pulled from the options.colors array.","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-bar-zones--color","fullname":"plotOptions.bar.zones.color","title":"color","parent":"plotOptions-bar-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-bar--color","fullname":"plotOptions.bar.color","title":"color","parent":"plotOptions-bar","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"chart-options3d-frame-back--color","fullname":"chart.options3d.frame.back.color","title":"color","parent":"chart-options3d-frame-back","isParent":false,"returnType":"Color","defaults":"transparent","values":"","since":"4.0","description":"The color of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-gauge-zones--color","fullname":"plotOptions.gauge.zones.color","title":"color","parent":"plotOptions-gauge-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-boxplot--color","fullname":"plotOptions.boxplot.color","title":"color","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-scatter--color","fullname":"plotOptions.scatter.color","title":"color","parent":"plotOptions-scatter","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-areasplinerange--color","fullname":"plotOptions.areasplinerange.color","title":"color","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","defaults":"null","since":"4.0","description":"The main color of the series. In heat maps this color is rarely used, as we mostly use the color to denote the value of each point. Unless options are set in the colorAxis, the default value is pulled from the options.colors array.","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-area-dataLabels--color","fullname":"plotOptions.area.dataLabels.color","title":"color","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-polygon--color","fullname":"plotOptions.polygon.color","title":"color","parent":"plotOptions-polygon","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-areaspline-dataLabels--color","fullname":"plotOptions.areaspline.dataLabels.color","title":"color","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-bar-dataLabels--color","fullname":"plotOptions.bar.dataLabels.color","title":"color","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-scatter-dataLabels--color","fullname":"plotOptions.scatter.dataLabels.color","title":"color","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"xAxis-plotBands--color","fullname":"xAxis.plotBands.color","title":"color","parent":"xAxis-plotBands","isParent":false,"returnType":"Color","description":"The color of the plot band.","demo":"Color band"},{"name":"plotOptions-bubble-zones--color","fullname":"plotOptions.bubble.zones.color","title":"color","parent":"plotOptions-bubble-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-errorbar--color","fullname":"plotOptions.errorbar.color","title":"color","parent":"plotOptions-errorbar","isParent":false,"returnType":"Color","defaults":"#000000","values":"","since":"3.0","description":"The main color of the bars. This can be overridden by stemColor and whiskerColor individually. ","demo":"Error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-zones--color","fullname":"plotOptions.arearange.zones.color","title":"color","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-solidgauge-zones--color","fullname":"plotOptions.solidgauge.zones.color","title":"color","parent":"plotOptions-solidgauge-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","defaults":"null","since":"4.0","description":"The main color of the series. In heat maps this color is rarely used, as we mostly use the color to denote the value of each point. Unless options are set in the colorAxis, the default value is pulled from the options.colors array.","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-treemap-zones--color","fullname":"plotOptions.treemap.zones.color","title":"color","parent":"plotOptions-treemap-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","defaults":"#000000","values":"","since":"3.0","description":"The main color of the bars. This can be overridden by stemColor and whiskerColor individually. ","demo":"Error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--color","fullname":"plotOptions.bubble.color","title":"color","parent":"plotOptions-bubble","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"yAxis-plotBands--color","fullname":"yAxis.plotBands.color","title":"color","parent":"yAxis-plotBands","isParent":false,"returnType":"Color","description":"The color of the plot band.","demo":"Color band"},{"name":"series--color","fullname":"series.color","title":"color","parent":"series","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--color","fullname":"plotOptions.pyramid.dataLabels.color","title":"color","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-line-dataLabels--color","fullname":"plotOptions.line.dataLabels.color","title":"color","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"yAxis-crosshair--color","fullname":"yAxis.crosshair.color","title":"color","parent":"yAxis-crosshair","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1","description":"The color of the crosshair. Defaults to #C0C0C0 for numeric and datetime axes, and rgba(155,200,255,0.2) for category axes, where the crosshair by default highlights the whole category.","demo":"Customized crosshairs.","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-zones--color","fullname":"plotOptions.areasplinerange.zones.color","title":"color","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-treemap-dataLabels--color","fullname":"plotOptions.treemap.dataLabels.color","title":"color","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-spline-zones--color","fullname":"plotOptions.spline.zones.color","title":"color","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-areasplinerange-dataLabels--color","fullname":"plotOptions.areasplinerange.dataLabels.color","title":"color","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-line-zones--color","fullname":"plotOptions.line.zones.color","title":"color","parent":"plotOptions-line-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--color","fullname":"plotOptions.solidgauge.dataLabels.color","title":"color","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-areaspline--color","fullname":"plotOptions.areaspline.color","title":"color","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-data--color","fullname":"series.data.color","title":"color","parent":"series-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point. By default the color is pulled from the global colors array.","demo":"Mark the highest point","deprecated":false},{"name":"plotOptions-scatter-zones--color","fullname":"plotOptions.scatter.zones.color","title":"color","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-column-zones--color","fullname":"plotOptions.column.zones.color","title":"color","parent":"plotOptions-column-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-series-dataLabels--color","fullname":"plotOptions.series.dataLabels.color","title":"color","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-pie-dataLabels--color","fullname":"plotOptions.pie.dataLabels.color","title":"color","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"xAxis-crosshair--color","fullname":"xAxis.crosshair.color","title":"color","parent":"xAxis-crosshair","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1","description":"The color of the crosshair. Defaults to #C0C0C0 for numeric and datetime axes, and rgba(155,200,255,0.2) for category axes, where the crosshair by default highlights the whole category.","demo":"Customized crosshairs.","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--color","fullname":"plotOptions.waterfall.color","title":"color","parent":"plotOptions-waterfall","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"plotOptions-spline--color","fullname":"plotOptions.spline.color","title":"color","parent":"plotOptions-spline","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series-zones--color","fullname":"series.zones.color","title":"color","parent":"series-zones","isParent":false,"returnType":"Color","since":"4.1.0","description":"Defines the color of the series.","seeAlso":"series color","deprecated":false},{"name":"plotOptions-funnel-dataLabels--color","fullname":"plotOptions.funnel.dataLabels.color","title":"color","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"plotOptions-line--color","fullname":"plotOptions.line.color","title":"color","parent":"plotOptions-line","isParent":false,"returnType":"Color","description":"The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.","demo":"General plot option, \n\t\t\tone specific series,\n\t\t\tarea color"},{"name":"series-dataLabels--color","fullname":"series.dataLabels.color","title":"color","parent":"series-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to null.","demo":"Red data labels"},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-treemap--colorByPoint","fullname":"plotOptions.treemap.colorByPoint","title":"colorByPoint","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-columnrange--colorByPoint","fullname":"plotOptions.columnrange.colorByPoint","title":"colorByPoint","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-errorbar--colorByPoint","fullname":"plotOptions.errorbar.colorByPoint","title":"colorByPoint","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-bar--colorByPoint","fullname":"plotOptions.bar.colorByPoint","title":"colorByPoint","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-boxplot--colorByPoint","fullname":"plotOptions.boxplot.colorByPoint","title":"colorByPoint","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-column--colorByPoint","fullname":"plotOptions.column.colorByPoint","title":"colorByPoint","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-heatmap--colorByPoint","fullname":"plotOptions.heatmap.colorByPoint","title":"colorByPoint","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"plotOptions-waterfall--colorByPoint","fullname":"plotOptions.waterfall.colorByPoint","title":"colorByPoint","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series--colorByPoint","fullname":"series.colorByPoint","title":"colorByPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.0","description":"When using automatic point colors pulled from the options.colors\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","demo":"False by default,\r\n\t\t\ttrue","seeAlso":"series colors","deprecated":false},{"name":"series-data--colorValue","fullname":"series.data.colorValue","title":"colorValue","parent":"series-data","isParent":false,"returnType":"Number","defaults":"undefined","since":"4.1.0","description":"Serves a purpose only if a colorAxis object is defined in the chart options. This value will decide which color the point gets from the scale of the colorAxis.","demo":"Treemap with a colorAxis","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--colors","fullname":"plotOptions.pyramid.colors","title":"colors","parent":"plotOptions-pyramid","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"plotOptions-heatmap--colors","fullname":"plotOptions.heatmap.colors","title":"colors","parent":"plotOptions-heatmap","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"plotOptions-bar--colors","fullname":"plotOptions.bar.colors","title":"colors","parent":"plotOptions-bar","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--colors","fullname":"plotOptions.treemap.colors","title":"colors","parent":"plotOptions-treemap","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--colors","fullname":"plotOptions.errorbar.colors","title":"colors","parent":"plotOptions-errorbar","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--colors","fullname":"plotOptions.waterfall.colors","title":"colors","parent":"plotOptions-waterfall","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--colors","fullname":"plotOptions.columnrange.colors","title":"colors","parent":"plotOptions-columnrange","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"colors","fullname":"colors","title":"colors","isParent":false,"returnType":"Array","defaults":"[ \"#7cb5ec\" , \"#434348\" , \"#90ed7d\" , \"#f7a35c\" , \"#8085e9\" , \"#f15c80\" , \"#e4d354\" , \"#2b908f\" , \"#f45b5b\" , \"#91e8e1\"]","description":"

An array containing the default colors for the chart's series. When all colors are used, new colors are pulled from the start again. Defaults to:\r\n

colors: ['#7cb5ec', '#434348', '#90ed7d', '#f7a35c', '#8085e9', \r\n   '#f15c80', '#e4d354', '#2b908f', '#f45b5b', '#91e8e1']
\r\n\r\nDefault colors can also be set on a series or series.type basis, see column.colors, pie.colors.\r\n

\r\n\r\n

Legacy

\r\n

In Highcharts 3.x, the default colors were:\r\n

colors: ['#2f7ed8', '#0d233a', '#8bbc21', '#910000', '#1aadce', \r\n   '#492970', '#f28f43', '#77a1e5', '#c42525', '#a6c96a']
\r\n

\r\n\r\n

In Highcharts 2.x, the default colors were:\r\n

colors: ['#4572A7', '#AA4643', '#89A54E', '#80699B', '#3D96AE', \r\n   '#DB843D', '#92A8CD', '#A47D7C', '#B5CA92']

","demo":"Assign a global color theme","deprecated":false},{"name":"plotOptions-funnel--colors","fullname":"plotOptions.funnel.colors","title":"colors","parent":"plotOptions-funnel","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--colors","fullname":"plotOptions.column.colors","title":"colors","parent":"plotOptions-column","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"series--colors","fullname":"series.colors","title":"colors","parent":"series","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--colors","fullname":"plotOptions.boxplot.colors","title":"colors","parent":"plotOptions-boxplot","isParent":false,"returnType":"Array","defaults":"","values":"","since":"3.0","description":"A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--colors","fullname":"plotOptions.pie.colors","title":"colors","parent":"plotOptions-pie","isParent":false,"returnType":"Array","since":"3.0","description":"A series specific or series type specific color set to use instead of the global colors.","demo":"Set default colors for all pies","deprecated":false},{"name":"series--colsize","fullname":"series.colsize","title":"colsize","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The column size - how many X axis units each column in the heatmap should span.","demo":"One day","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--colsize","fullname":"plotOptions.heatmap.colsize","title":"colsize","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The column size - how many X axis units each column in the heatmap should span.","demo":"One day","seeAlso":"","deprecated":false},{"name":"plotOptions-column","fullname":"plotOptions.column","title":"column","parent":"plotOptions","isParent":true,"deprecated":false},{"name":"plotOptions-columnrange","fullname":"plotOptions.columnrange","title":"columnrange","parent":"plotOptions","isParent":true,"returnType":"Object","since":"2.3.0","description":"The column range is a cartesian series type with higher and lower Y values along an X axis. Requires highcharts-more.js. To display horizontal bars, set chart.inverted to true.","demo":"Inverted column range","deprecated":false},{"name":"data--columns","fullname":"data.columns","title":"columns","parent":"data","isParent":false,"returnType":"Array>","defaults":"","values":"","since":"4.0","description":"A two-dimensional array representing the input data on tabular form. This input can be used when the data is already parsed, for example from a grid view component. Each cell can be a string or number. If not switchRowsAndColumns is set, the columns are interpreted as series.","demo":"Columns","seeAlso":"data.rows","deprecated":false},{"name":"data--complete","fullname":"data.complete","title":"complete","parent":"data","isParent":false,"returnType":"Function","defaults":"","values":"","since":"4.0","description":"The callback that is evaluated when the data is finished loading, optionally from an external source, and parsed. The first argument passed is a finished chart options object, containing the series. These options can be extended with additional options and passed directly to the chart constructor.","demo":"Modify data on complete","seeAlso":"data.parsed","deprecated":false},{"name":"plotOptions-areaspline--connectEnds","fullname":"plotOptions.areaspline.connectEnds","title":"connectEnds","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"plotOptions-series--connectEnds","fullname":"plotOptions.series.connectEnds","title":"connectEnds","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"series--connectEnds","fullname":"series.connectEnds","title":"connectEnds","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--connectEnds","fullname":"plotOptions.spline.connectEnds","title":"connectEnds","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"plotOptions-line--connectEnds","fullname":"plotOptions.line.connectEnds","title":"connectEnds","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"series--connectEnds","fullname":"series.connectEnds","title":"connectEnds","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"series--connectEnds","fullname":"series.connectEnds","title":"connectEnds","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"series--connectEnds","fullname":"series.connectEnds","title":"connectEnds","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"plotOptions-area--connectEnds","fullname":"plotOptions.area.connectEnds","title":"connectEnds","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Polar charts only. Whether to connect the ends of a line series plot across the extremes.","demo":"Do not connect","seeAlso":"","deprecated":false},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-areasplinerange--connectNulls","fullname":"plotOptions.areasplinerange.connectNulls","title":"connectNulls","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-arearange--connectNulls","fullname":"plotOptions.arearange.connectNulls","title":"connectNulls","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-series--connectNulls","fullname":"plotOptions.series.connectNulls","title":"connectNulls","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-area--connectNulls","fullname":"plotOptions.area.connectNulls","title":"connectNulls","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-areaspline--connectNulls","fullname":"plotOptions.areaspline.connectNulls","title":"connectNulls","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-line--connectNulls","fullname":"plotOptions.line.connectNulls","title":"connectNulls","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series--connectNulls","fullname":"series.connectNulls","title":"connectNulls","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"plotOptions-spline--connectNulls","fullname":"plotOptions.spline.connectNulls","title":"connectNulls","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to connect a graph line across null points.","demo":"False by default, \n\t\t\ttrue"},{"name":"series-dataLabels--connectorColor","fullname":"series.dataLabels.connectorColor","title":"connectorColor","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"series-dataLabels--connectorColor","fullname":"series.dataLabels.connectorColor","title":"connectorColor","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"plotOptions-funnel-dataLabels--connectorColor","fullname":"plotOptions.funnel.dataLabels.connectorColor","title":"connectorColor","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"plotOptions-pyramid-dataLabels--connectorColor","fullname":"plotOptions.pyramid.dataLabels.connectorColor","title":"connectorColor","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"series-dataLabels--connectorColor","fullname":"series.dataLabels.connectorColor","title":"connectorColor","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"plotOptions-pie-dataLabels--connectorColor","fullname":"plotOptions.pie.dataLabels.connectorColor","title":"connectorColor","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"String","defaults":"{point.color}","since":"2.1","description":"The color of the line connecting the data label to the pie slice. The default color is the same as the point's color.","demo":"Blue connectors"},{"name":"plotOptions-pyramid-dataLabels--connectorPadding","fullname":"plotOptions.pyramid.dataLabels.connectorPadding","title":"connectorPadding","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"plotOptions-pie-dataLabels--connectorPadding","fullname":"plotOptions.pie.dataLabels.connectorPadding","title":"connectorPadding","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"series-dataLabels--connectorPadding","fullname":"series.dataLabels.connectorPadding","title":"connectorPadding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"plotOptions-funnel-dataLabels--connectorPadding","fullname":"plotOptions.funnel.dataLabels.connectorPadding","title":"connectorPadding","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"series-dataLabels--connectorPadding","fullname":"series.dataLabels.connectorPadding","title":"connectorPadding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"series-dataLabels--connectorPadding","fullname":"series.dataLabels.connectorPadding","title":"connectorPadding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.1","description":"The distance from the data label to the connector.","demo":"No padding"},{"name":"series-dataLabels--connectorWidth","fullname":"series.dataLabels.connectorWidth","title":"connectorWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"series-dataLabels--connectorWidth","fullname":"series.dataLabels.connectorWidth","title":"connectorWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"plotOptions-pie-dataLabels--connectorWidth","fullname":"plotOptions.pie.dataLabels.connectorWidth","title":"connectorWidth","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"plotOptions-funnel-dataLabels--connectorWidth","fullname":"plotOptions.funnel.dataLabels.connectorWidth","title":"connectorWidth","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"plotOptions-pyramid-dataLabels--connectorWidth","fullname":"plotOptions.pyramid.dataLabels.connectorWidth","title":"connectorWidth","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"series-dataLabels--connectorWidth","fullname":"series.dataLabels.connectorWidth","title":"connectorWidth","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The width of the line connecting the data label to the pie slice.","demo":"Disable the connector"},{"name":"exporting-buttons-contextButton","fullname":"exporting.buttons.contextButton","title":"contextButton","parent":"exporting-buttons","isParent":true,"description":"Options for the export button."},{"name":"lang--contextButtonTitle","fullname":"lang.contextButtonTitle","title":"contextButtonTitle","parent":"lang","isParent":false,"returnType":"String","defaults":"Chart context menu","values":"","since":"3.0","description":"Exporting module menu. The tooltip title for the context menu holding print and export menu items.","demo":"","seeAlso":"","deprecated":false},{"name":"credits","fullname":"credits","title":"credits","isParent":true,"description":"Highchart by default puts a credits label in the lower right corner of the chart.\n\t\tThis can be changed using these options."},{"name":"plotOptions-line-dataLabels--crop","fullname":"plotOptions.line.dataLabels.crop","title":"crop","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--crop","fullname":"plotOptions.series.dataLabels.crop","title":"crop","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--crop","fullname":"plotOptions.columnrange.dataLabels.crop","title":"crop","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--crop","fullname":"plotOptions.area.dataLabels.crop","title":"crop","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--crop","fullname":"plotOptions.spline.dataLabels.crop","title":"crop","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--crop","fullname":"plotOptions.areaspline.dataLabels.crop","title":"crop","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--crop","fullname":"plotOptions.heatmap.dataLabels.crop","title":"crop","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--crop","fullname":"plotOptions.polygon.dataLabels.crop","title":"crop","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--crop","fullname":"plotOptions.areasplinerange.dataLabels.crop","title":"crop","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--crop","fullname":"plotOptions.waterfall.dataLabels.crop","title":"crop","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--crop","fullname":"plotOptions.pyramid.dataLabels.crop","title":"crop","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--crop","fullname":"plotOptions.pie.dataLabels.crop","title":"crop","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--crop","fullname":"plotOptions.bubble.dataLabels.crop","title":"crop","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--crop","fullname":"plotOptions.treemap.dataLabels.crop","title":"crop","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--crop","fullname":"plotOptions.arearange.dataLabels.crop","title":"crop","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--crop","fullname":"plotOptions.solidgauge.dataLabels.crop","title":"crop","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--crop","fullname":"plotOptions.scatter.dataLabels.crop","title":"crop","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--crop","fullname":"plotOptions.gauge.dataLabels.crop","title":"crop","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--crop","fullname":"plotOptions.column.dataLabels.crop","title":"crop","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--crop","fullname":"plotOptions.funnel.dataLabels.crop","title":"crop","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--crop","fullname":"plotOptions.bar.dataLabels.crop","title":"crop","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--crop","fullname":"series.dataLabels.crop","title":"crop","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.3","description":"Whether to hide data labels that are outside the plot area. By default, the data label is moved inside the plot area according to the overflow option.","demo":"","seeAlso":"","deprecated":false},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-areasplinerange--cropThreshold","fullname":"plotOptions.areasplinerange.cropThreshold","title":"cropThreshold","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-line--cropThreshold","fullname":"plotOptions.line.cropThreshold","title":"cropThreshold","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-polygon--cropThreshold","fullname":"plotOptions.polygon.cropThreshold","title":"cropThreshold","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-heatmap--cropThreshold","fullname":"plotOptions.heatmap.cropThreshold","title":"cropThreshold","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-scatter--cropThreshold","fullname":"plotOptions.scatter.cropThreshold","title":"cropThreshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-bar--cropThreshold","fullname":"plotOptions.bar.cropThreshold","title":"cropThreshold","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-arearange--cropThreshold","fullname":"plotOptions.arearange.cropThreshold","title":"cropThreshold","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-columnrange--cropThreshold","fullname":"plotOptions.columnrange.cropThreshold","title":"cropThreshold","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-area--cropThreshold","fullname":"plotOptions.area.cropThreshold","title":"cropThreshold","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-series--cropThreshold","fullname":"plotOptions.series.cropThreshold","title":"cropThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-bubble--cropThreshold","fullname":"plotOptions.bubble.cropThreshold","title":"cropThreshold","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"300","values":"","since":"4.1.0","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--cropThreshold","fullname":"plotOptions.spline.cropThreshold","title":"cropThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-areaspline--cropThreshold","fullname":"plotOptions.areaspline.cropThreshold","title":"cropThreshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-treemap--cropThreshold","fullname":"plotOptions.treemap.cropThreshold","title":"cropThreshold","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","context":"","defaults":"300","values":"","since":"4.1.0","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"plotOptions-column--cropThreshold","fullname":"plotOptions.column.cropThreshold","title":"cropThreshold","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"50","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"series--cropThreshold","fullname":"series.cropThreshold","title":"cropThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"300","since":"2.2","description":"When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. ."},{"name":"yAxis-crosshair","fullname":"yAxis.crosshair","title":"crosshair","parent":"yAxis","isParent":true,"returnType":"Boolean|Object","context":"","defaults":"false","values":"","since":"4.1","description":"Configure a crosshair that follows either the mouse pointer or the hovered point.","demo":"Crosshair on both axes","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair","fullname":"xAxis.crosshair","title":"crosshair","parent":"xAxis","isParent":true,"returnType":"Boolean|Object","context":"","defaults":"false","values":"","since":"4.1","description":"Configure a crosshair that follows either the mouse pointer or the hovered point.","demo":"Crosshair on both axes","seeAlso":"","deprecated":false},{"name":"tooltip--crosshairs","fullname":"tooltip.crosshairs","title":"crosshairs","parent":"tooltip","isParent":false,"returnType":"Mixed","description":"Since 4.1, the crosshair definitions are moved to the Axis object in order for a better separation from the tooltip. See xAxis.crosshair.","demo":"Enable a crosshair for the x value.","deprecated":false},{"name":"data--csv","fullname":"data.csv","title":"csv","parent":"data","isParent":false,"returnType":"String","defaults":"","values":"","since":"4.0","description":"A comma delimited string to be parsed. Related options are startRow, endRow, startColumn and endColumn to delimit what part of the table is used. The lineDelimiter and itemDelimiter options define the CSV delimiter formats.","demo":"Data from CSV","seeAlso":"","deprecated":false},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-boxplot--cursor","fullname":"plotOptions.boxplot.cursor","title":"cursor","parent":"plotOptions-boxplot","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-polygon--cursor","fullname":"plotOptions.polygon.cursor","title":"cursor","parent":"plotOptions-polygon","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-pyramid--cursor","fullname":"plotOptions.pyramid.cursor","title":"cursor","parent":"plotOptions-pyramid","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-series--cursor","fullname":"plotOptions.series.cursor","title":"cursor","parent":"plotOptions-series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-areaspline--cursor","fullname":"plotOptions.areaspline.cursor","title":"cursor","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-line--cursor","fullname":"plotOptions.line.cursor","title":"cursor","parent":"plotOptions-line","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-area--cursor","fullname":"plotOptions.area.cursor","title":"cursor","parent":"plotOptions-area","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-heatmap--cursor","fullname":"plotOptions.heatmap.cursor","title":"cursor","parent":"plotOptions-heatmap","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-pie--cursor","fullname":"plotOptions.pie.cursor","title":"cursor","parent":"plotOptions-pie","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-columnrange--cursor","fullname":"plotOptions.columnrange.cursor","title":"cursor","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-treemap--cursor","fullname":"plotOptions.treemap.cursor","title":"cursor","parent":"plotOptions-treemap","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-waterfall--cursor","fullname":"plotOptions.waterfall.cursor","title":"cursor","parent":"plotOptions-waterfall","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-bar--cursor","fullname":"plotOptions.bar.cursor","title":"cursor","parent":"plotOptions-bar","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-scatter--cursor","fullname":"plotOptions.scatter.cursor","title":"cursor","parent":"plotOptions-scatter","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-gauge--cursor","fullname":"plotOptions.gauge.cursor","title":"cursor","parent":"plotOptions-gauge","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-column--cursor","fullname":"plotOptions.column.cursor","title":"cursor","parent":"plotOptions-column","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-bubble--cursor","fullname":"plotOptions.bubble.cursor","title":"cursor","parent":"plotOptions-bubble","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-spline--cursor","fullname":"plotOptions.spline.cursor","title":"cursor","parent":"plotOptions-spline","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-errorbar--cursor","fullname":"plotOptions.errorbar.cursor","title":"cursor","parent":"plotOptions-errorbar","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-solidgauge--cursor","fullname":"plotOptions.solidgauge.cursor","title":"cursor","parent":"plotOptions-solidgauge","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-areasplinerange--cursor","fullname":"plotOptions.areasplinerange.cursor","title":"cursor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-arearange--cursor","fullname":"plotOptions.arearange.cursor","title":"cursor","parent":"plotOptions-arearange","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"plotOptions-funnel--cursor","fullname":"plotOptions.funnel.cursor","title":"cursor","parent":"plotOptions-funnel","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"series--cursor","fullname":"series.cursor","title":"cursor","parent":"series","isParent":false,"returnType":"String","values":"[null, \"default\", \"none\", \"help\", \"pointer\", \"crosshair\"]","description":"You can set the cursor to \"pointer\" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.","demo":"Pointer cursor on line graph,\n\t\t\ton columns,\n\t\t\ton scatter markers"},{"name":"xAxis-plotLines--dashStyle","fullname":"xAxis.plotLines.dashStyle","title":"dashStyle","parent":"xAxis-plotLines","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dashing or dot style for the plot line. For possible values see this overview.","demo":"Dash and dot pattern","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-scatter-zones--dashStyle","fullname":"plotOptions.scatter.zones.dashStyle","title":"dashStyle","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-solidgauge-zones--dashStyle","fullname":"plotOptions.solidgauge.zones.dashStyle","title":"dashStyle","parent":"plotOptions-solidgauge-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"plotOptions-series-zones--dashStyle","fullname":"plotOptions.series.zones.dashStyle","title":"dashStyle","parent":"plotOptions-series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-spline--dashStyle","fullname":"plotOptions.spline.dashStyle","title":"dashStyle","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"plotOptions-spline-zones--dashStyle","fullname":"plotOptions.spline.zones.dashStyle","title":"dashStyle","parent":"plotOptions-spline-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-areasplinerange--dashStyle","fullname":"plotOptions.areasplinerange.dashStyle","title":"dashStyle","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-bubble-zones--dashStyle","fullname":"plotOptions.bubble.zones.dashStyle","title":"dashStyle","parent":"plotOptions-bubble-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-waterfall-zones--dashStyle","fullname":"plotOptions.waterfall.zones.dashStyle","title":"dashStyle","parent":"plotOptions-waterfall-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-gauge-zones--dashStyle","fullname":"plotOptions.gauge.zones.dashStyle","title":"dashStyle","parent":"plotOptions-gauge-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-arearange--dashStyle","fullname":"plotOptions.arearange.dashStyle","title":"dashStyle","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"plotOptions-column-zones--dashStyle","fullname":"plotOptions.column.zones.dashStyle","title":"dashStyle","parent":"plotOptions-column-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-polygon--dashStyle","fullname":"plotOptions.polygon.dashStyle","title":"dashStyle","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Dot","values":"","since":"3.0","description":"A name for the dash style to use for the line connecting the columns of the waterfall series. Possible values:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-zones--dashStyle","fullname":"plotOptions.line.zones.dashStyle","title":"dashStyle","parent":"plotOptions-line-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-areasplinerange-zones--dashStyle","fullname":"plotOptions.areasplinerange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-bar-zones--dashStyle","fullname":"plotOptions.bar.zones.dashStyle","title":"dashStyle","parent":"plotOptions-bar-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-bubble--dashStyle","fullname":"plotOptions.bubble.dashStyle","title":"dashStyle","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"plotOptions-errorbar-zones--dashStyle","fullname":"plotOptions.errorbar.zones.dashStyle","title":"dashStyle","parent":"plotOptions-errorbar-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-heatmap-zones--dashStyle","fullname":"plotOptions.heatmap.zones.dashStyle","title":"dashStyle","parent":"plotOptions-heatmap-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"xAxis-crosshair--dashStyle","fullname":"xAxis.crosshair.dashStyle","title":"dashStyle","parent":"xAxis-crosshair","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"4.1","description":"The dash style for the crosshair. See series.dashStyle for possible values.","demo":"Dotted crosshair","deprecated":false},{"name":"yAxis-crosshair--dashStyle","fullname":"yAxis.crosshair.dashStyle","title":"dashStyle","parent":"yAxis-crosshair","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"4.1","description":"The dash style for the crosshair. See series.dashStyle for possible values.","demo":"Dotted crosshair","deprecated":false},{"name":"plotOptions-funnel-zones--dashStyle","fullname":"plotOptions.funnel.zones.dashStyle","title":"dashStyle","parent":"plotOptions-funnel-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"yAxis-plotLines--dashStyle","fullname":"yAxis.plotLines.dashStyle","title":"dashStyle","parent":"yAxis-plotLines","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dashing or dot style for the plot line. For possible values see this overview.","demo":"Dash and dot pattern","deprecated":false},{"name":"plotOptions-columnrange-zones--dashStyle","fullname":"plotOptions.columnrange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-waterfall--dashStyle","fullname":"plotOptions.waterfall.dashStyle","title":"dashStyle","parent":"plotOptions-waterfall","isParent":false,"returnType":"String","defaults":"Dot","values":"","since":"3.0","description":"A name for the dash style to use for the line connecting the columns of the waterfall series. Possible values:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-zones--dashStyle","fullname":"plotOptions.polygon.zones.dashStyle","title":"dashStyle","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-pie-zones--dashStyle","fullname":"plotOptions.pie.zones.dashStyle","title":"dashStyle","parent":"plotOptions-pie-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-arearange-zones--dashStyle","fullname":"plotOptions.arearange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-scatter--dashStyle","fullname":"plotOptions.scatter.dashStyle","title":"dashStyle","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-pyramid-zones--dashStyle","fullname":"plotOptions.pyramid.zones.dashStyle","title":"dashStyle","parent":"plotOptions-pyramid-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-area--dashStyle","fullname":"plotOptions.area.dashStyle","title":"dashStyle","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"plotOptions-series--dashStyle","fullname":"plotOptions.series.dashStyle","title":"dashStyle","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-area-zones--dashStyle","fullname":"plotOptions.area.zones.dashStyle","title":"dashStyle","parent":"plotOptions-area-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-boxplot-zones--dashStyle","fullname":"plotOptions.boxplot.zones.dashStyle","title":"dashStyle","parent":"plotOptions-boxplot-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-areaspline--dashStyle","fullname":"plotOptions.areaspline.dashStyle","title":"dashStyle","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-areaspline-zones--dashStyle","fullname":"plotOptions.areaspline.zones.dashStyle","title":"dashStyle","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-treemap-zones--dashStyle","fullname":"plotOptions.treemap.zones.dashStyle","title":"dashStyle","parent":"plotOptions-treemap-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"plotOptions-line--dashStyle","fullname":"plotOptions.line.dashStyle","title":"dashStyle","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-zones--dashStyle","fullname":"series.zones.dashStyle","title":"dashStyle","parent":"series-zones","isParent":false,"returnType":"String","since":"4.1.0","description":"A name for the dash style to use for the graph.","demo":"Dashed line indicates prognosis","seeAlso":"series.dashStyle","deprecated":false},{"name":"series--dashStyle","fullname":"series.dashStyle","title":"dashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"2.1","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like line, spline, area and scatter in case it has a lineWidth. The value for the dashStyle include:\r\n\t\t
    \r\n\t\t \t
  • Solid
  • \r\n\t\t \t
  • ShortDash
  • \r\n\t\t \t
  • ShortDot
  • \r\n\t\t \t
  • ShortDashDot
  • \r\n\t\t \t
  • ShortDashDotDot
  • \r\n\t\t \t
  • Dot
  • \r\n\t\t \t
  • Dash
  • \r\n\t\t \t
  • LongDash
  • \r\n\t\t \t
  • DashDot
  • \r\n\t\t \t
  • LongDashDot
  • \r\n\t\t \t
  • LongDashDotDot
  • \r\n\t\t
","demo":"Possible values demonstrated,\r\n\t\t\tchart suitable for printing in black and white","deprecated":false},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the gauge series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    y: 6,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    y: 8,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n

The typical gauge only contains a single data value.

","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the pyramid series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    y: 6,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    y: 7,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the columnrange series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,low,high. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 4, 2], \n    [1, 2, 1], \n    [2, 9, 10]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    low: 0,\n    high: 4,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 5,\n    high: 3,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the spline series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 9], \n    [1, 2], \n    [2, 8]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 9,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 0,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the waterfall series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 7], \n    [1, 8], \n    [2, 3]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 8,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 8,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the area series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 9], \n    [1, 7], \n    [2, 6]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 9,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 6,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the funnel series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    y: 3,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    y: 1,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the treemap series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as value options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    value: 7,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    value: 2,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the pie series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    y: 1,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    y: 7,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the areasplinerange series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,low,high. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 0, 5], \n    [1, 9, 1], \n    [2, 5, 2]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    low: 5,\n    high: 0,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 4,\n    high: 1,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the errorbar series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,low,high. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 10, 2], \n    [1, 1, 8], \n    [2, 4, 5]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    low: 0,\n    high: 0,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 5,\n    high: 5,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the areaspline series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 10], \n    [1, 9], \n    [2, 3]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 4,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 4,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the scatter series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 0], \n    [1, 8], \n    [2, 9]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 2,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 4,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the boxplot series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 6 or 5 values. In this case, the values correspond to x,low,q1,median,q3,high. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 5. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 3, 0, 10, 3, 5], \n    [1, 7, 8, 7, 2, 9], \n    [2, 6, 9, 5, 1, 3]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    low: 4,\n    q1: 9,\n    median: 9,\n    q3: 1,\n    high: 10,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 5,\n    q1: 7,\n    median: 3,\n    q3: 6,\n    high: 2,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the solidgauge series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    y: 5,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    y: 7,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n

The typical gauge only contains a single data value.

","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the bar series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 5], \n    [1, 10], \n    [2, 3]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 1,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 10,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the bubble series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,y,z. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 1, 2], \n    [1, 5, 5], \n    [2, 0, 2]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 1,\n    z: 1,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 5,\n    z: 4,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the line series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 1], \n    [1, 2], \n    [2, 8]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 10,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 6,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"","deprecated":false},{"name":"data","fullname":"data","title":"data","isParent":true,"since":"4.0","description":"

The Data module provides a simplified interface for adding data to a chart from sources like CVS, HTML tables or grid views. See also the tutorial article on the Data module.

\r\n\r\n

It requires the modules/data.js file to be loaded.

\r\n\r\n

Please note that the default way of adding data in Highcharts, without the need of a module, is through the series.data option.

","demo":"Data from a HTML table, CSV.","deprecated":false},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. The points can be given in three ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y values, and x values will be automatically calculated,\r\n \teither starting at 0 and incrementing by 1, or from pointStart \r\n \tand pointInterval given in the plotOptions. If the axis is\r\n \thas categories, these will be used. This option is not available for range series. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with two values. In this case, the first value is the\r\n \tx value and the second is the y value. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is incremented following\r\n \tthe above rules.

    \r\n

    For range series, the arrays will be interpreted as [x, low, high]. In this cases, the X value can be skipped altogether to make use of pointStart and pointRange.

    \r\n\r\n Example:\r\n
    data: [[5, 2], [6, 3], [8, 2]]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. In this case the objects are\r\n \tpoint configuration objects as seen below.

    \r\n\r\n

    Range series values are given by low and high.

    \r\n\r\nExample:\r\n
    data: [{\r\n\tname: 'Point 1',\r\n\tcolor: '#00FF00',\r\n\ty: 0\r\n}, {\r\n\tname: 'Point 2',\r\n\tcolor: '#FF00FF',\r\n\ty: 5\r\n}]
  6. \r\n
\r\n\r\n

Note that line series and derived types like spline and area, require data to be sorted by X because it interpolates mouse coordinates for the tooltip. Column and scatter series, where each point has its own mouse event, does not require sorting.

","demo":"","deprecated":false},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the heatmap series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,y,value. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 9, 7], \n    [1, 10, 4], \n    [2, 6, 3]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 3,\n    value: 10,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 7,\n    value: 10,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the arearange series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of arrays with 3 or 2 values. In this case, the values correspond to x,low,high. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred. The x value can also be omitted, in which case the inner arrays should be of length 2. Then the x value is automatically calculated, either starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options.

    \r\n
    data: [\n    [0, 8, 3], \n    [1, 1, 1], \n    [2, 6, 8]\n]
  2. \r\n\r\n\r\n
  3. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    low: 9,\n    high: 0,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 3,\n    high: 4,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  4. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the column series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 6], \n    [1, 2], \n    [2, 6]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 5,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 9,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array","description":"An array of data points for the series. For the polygon series type, points can be given in the following ways:\r\n
    \r\n \t
  1. An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as y options. The x values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from pointStart \r\n \tand pointInterval given in the series options. If the axis\r\n \thas categories, these will be used. Example:\r\n
    data: [0, 5, 3, 5]
    \r\n \t
  2. \r\n \t
  3. An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is\r\n \tapplied as the name of the point, and the x value is inferred.

    data: [\n    [0, 10], \n    [1, 3], \n    [2, 1]\n]
  4. \r\n\r\n\r\n
  5. An array of objects with named values. The objects are\r\n \tpoint configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    \r\n\r\n
    data: [{\n    x: 1,\n    y: 1,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 8,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]
  6. \r\n
","demo":"

The demos use a line series, but the principle is the same for all types.

\n"},{"name":"plotOptions-column-dataLabels","fullname":"plotOptions.column.dataLabels","title":"dataLabels","parent":"plotOptions-column","isParent":true,"deprecated":false},{"name":"plotOptions-gauge-dataLabels","fullname":"plotOptions.gauge.dataLabels","title":"dataLabels","parent":"plotOptions-gauge","isParent":true,"returnType":"Object","since":"2.3.0","description":"Data labels for the gauge. For gauges, the data labels are enabled by default and shown in a bordered box below the point.","demo":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-spline-dataLabels","fullname":"plotOptions.spline.dataLabels","title":"dataLabels","parent":"plotOptions-spline","isParent":true,"deprecated":false},{"name":"plotOptions-area-dataLabels","fullname":"plotOptions.area.dataLabels","title":"dataLabels","parent":"plotOptions-area","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-columnrange-dataLabels","fullname":"plotOptions.columnrange.dataLabels","title":"dataLabels","parent":"plotOptions-columnrange","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-funnel-dataLabels","fullname":"plotOptions.funnel.dataLabels","title":"dataLabels","parent":"plotOptions-funnel","isParent":true,"deprecated":false},{"name":"plotOptions-bubble-dataLabels","fullname":"plotOptions.bubble.dataLabels","title":"dataLabels","parent":"plotOptions-bubble","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-treemap-dataLabels","fullname":"plotOptions.treemap.dataLabels","title":"dataLabels","parent":"plotOptions-treemap","isParent":true,"returnType":"","context":"","defaults":"","values":"","since":"4.1.0","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels","fullname":"plotOptions.pyramid.dataLabels","title":"dataLabels","parent":"plotOptions-pyramid","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"","context":"","defaults":"","values":"","since":"4.1.0","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"Object","since":"2.3.0","description":"Data labels for the gauge. For gauges, the data labels are enabled by default and shown in a bordered box below the point.","demo":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"plotOptions-bar-dataLabels","fullname":"plotOptions.bar.dataLabels","title":"dataLabels","parent":"plotOptions-bar","isParent":true},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels","fullname":"plotOptions.solidgauge.dataLabels","title":"dataLabels","parent":"plotOptions-solidgauge","isParent":true,"returnType":"Object","since":"2.3.0","description":"Data labels for the gauge. For gauges, the data labels are enabled by default and shown in a bordered box below the point.","demo":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"plotOptions-treemap-levels--dataLabels","fullname":"plotOptions.treemap.levels.dataLabels","title":"dataLabels","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"Object","defaults":"undefined","values":"","since":"4.1.0","description":"Can set the options of dataLabels on each point which lies on the level.\r\nplotOptions.treemap.dataLabels for possible values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels","fullname":"plotOptions.waterfall.dataLabels","title":"dataLabels","parent":"plotOptions-waterfall","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"plotOptions-series-dataLabels","fullname":"plotOptions.series.dataLabels","title":"dataLabels","parent":"plotOptions-series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels","fullname":"plotOptions.areasplinerange.dataLabels","title":"dataLabels","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-heatmap-dataLabels","fullname":"plotOptions.heatmap.dataLabels","title":"dataLabels","parent":"plotOptions-heatmap","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"Object","since":"2.3.0","description":"Data labels for the gauge. For gauges, the data labels are enabled by default and shown in a bordered box below the point.","demo":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels","fullname":"plotOptions.polygon.dataLabels","title":"dataLabels","parent":"plotOptions-polygon","isParent":true,"deprecated":false},{"name":"plotOptions-line-dataLabels","fullname":"plotOptions.line.dataLabels","title":"dataLabels","parent":"plotOptions-line","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-arearange-dataLabels","fullname":"plotOptions.arearange.dataLabels","title":"dataLabels","parent":"plotOptions-arearange","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels","fullname":"series.dataLabels","title":"dataLabels","parent":"series","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Extended data labels for range series types. Range series data labels have no x and y options. Instead, they have xLow, xHigh, yLow and yHigh options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-areaspline-dataLabels","fullname":"plotOptions.areaspline.dataLabels","title":"dataLabels","parent":"plotOptions-areaspline","isParent":true,"deprecated":false},{"name":"series-data--dataLabels","fullname":"series.data.dataLabels","title":"dataLabels","parent":"series-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for plotOptions.series.dataLabels","demo":"Show a label for the last value","deprecated":false},{"name":"plotOptions-scatter-dataLabels","fullname":"plotOptions.scatter.dataLabels","title":"dataLabels","parent":"plotOptions-scatter","isParent":true,"deprecated":false},{"name":"plotOptions-pie-dataLabels","fullname":"plotOptions.pie.dataLabels","title":"dataLabels","parent":"plotOptions-pie","isParent":true,"deprecated":false},{"name":"series-levels--dataLabels","fullname":"series.levels.dataLabels","title":"dataLabels","parent":"series-levels","isParent":false,"returnType":"Object","defaults":"undefined","values":"","since":"4.1.0","description":"Can set the options of dataLabels on each point which lies on the level.\r\nplotOptions.treemap.dataLabels for possible values.","demo":"","seeAlso":"","deprecated":false},{"name":"series--dataParser","fullname":"series.dataParser","title":"dataParser","parent":"series","isParent":false,"returnType":"Function","since":"","description":"This method is deprecated as of version 2.0. Instead, use options preprocessing as described in the docs.","demo":"","seeAlso":"","deprecated":true},{"name":"series--dataURL","fullname":"series.dataURL","title":"dataURL","parent":"series","isParent":false,"returnType":"String","since":"","description":"This method is deprecated as of version 2.0. Instead, load the data using jQuery.ajax and use options preprocessing as described in the docs.","demo":"","seeAlso":"","deprecated":true},{"name":"data--dateFormat","fullname":"data.dateFormat","title":"dateFormat","parent":"data","isParent":false,"returnType":"String","since":"4.0","description":"

Which of the predefined date formats in Date.prototype.dateFormats to use to parse date values. Defaults to a best guess based on what format gives valid and ordered dates.

\r\n\r\n

Valid options include:\r\n

    \r\n
  • YYYY-mm-dd
  • \r\n
  • dd/mm/YYYY
  • \r\n
  • mm/dd/YYYY
  • \r\n
  • dd/mm/YY
  • \r\n
  • mm/dd/YY
  • \r\n
\r\n

","demo":"Best guess date format","seeAlso":"data.parseDate","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-gauge-tooltip--dateTimeLabelFormats","fullname":"plotOptions.gauge.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-column-tooltip--dateTimeLabelFormats","fullname":"plotOptions.column.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-scatter-tooltip--dateTimeLabelFormats","fullname":"plotOptions.scatter.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-spline-tooltip--dateTimeLabelFormats","fullname":"plotOptions.spline.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"yAxis--dateTimeLabelFormats","fullname":"yAxis.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"yAxis","isParent":false,"returnType":"Object","description":"For a datetime axis, the scale will automatically adjust to the appropriate unit. This member gives the default string representations used for each unit. For intermediate values, different units may be used, for example the day unit can be used on midnight and hour unit be used for intermediate values on the same axis. For an overview of the replacement codes, see dateFormat.\r\n\r\nDefaults to:\r\n
{\r\n\tmillisecond: '%H:%M:%S.%L',\r\n\tsecond: '%H:%M:%S',\r\n\tminute: '%H:%M',\r\n\thour: '%H:%M',\r\n\tday: '%e. %b',\r\n\tweek: '%e. %b',\r\n\tmonth: '%b \\'%y',\r\n\tyear: '%Y'\r\n}
","demo":"Different day format on X axis","deprecated":false},{"name":"plotOptions-areaspline-tooltip--dateTimeLabelFormats","fullname":"plotOptions.areaspline.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-errorbar-tooltip--dateTimeLabelFormats","fullname":"plotOptions.errorbar.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-polygon-tooltip--dateTimeLabelFormats","fullname":"plotOptions.polygon.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-waterfall-tooltip--dateTimeLabelFormats","fullname":"plotOptions.waterfall.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"xAxis--dateTimeLabelFormats","fullname":"xAxis.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"xAxis","isParent":false,"returnType":"Object","description":"For a datetime axis, the scale will automatically adjust to the appropriate unit. This member gives the default string representations used for each unit. For intermediate values, different units may be used, for example the day unit can be used on midnight and hour unit be used for intermediate values on the same axis. For an overview of the replacement codes, see dateFormat.\r\n\r\nDefaults to:\r\n
{\r\n\tmillisecond: '%H:%M:%S.%L',\r\n\tsecond: '%H:%M:%S',\r\n\tminute: '%H:%M',\r\n\thour: '%H:%M',\r\n\tday: '%e. %b',\r\n\tweek: '%e. %b',\r\n\tmonth: '%b \\'%y',\r\n\tyear: '%Y'\r\n}
","demo":"Different day format on X axis","deprecated":false},{"name":"plotOptions-funnel-tooltip--dateTimeLabelFormats","fullname":"plotOptions.funnel.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-series-tooltip--dateTimeLabelFormats","fullname":"plotOptions.series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-boxplot-tooltip--dateTimeLabelFormats","fullname":"plotOptions.boxplot.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-columnrange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.columnrange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-area-tooltip--dateTimeLabelFormats","fullname":"plotOptions.area.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.areasplinerange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-treemap-tooltip--dateTimeLabelFormats","fullname":"plotOptions.treemap.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-line-tooltip--dateTimeLabelFormats","fullname":"plotOptions.line.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-pyramid-tooltip--dateTimeLabelFormats","fullname":"plotOptions.pyramid.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-arearange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.arearange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-bar-tooltip--dateTimeLabelFormats","fullname":"plotOptions.bar.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-heatmap-tooltip--dateTimeLabelFormats","fullname":"plotOptions.heatmap.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-bubble-tooltip--dateTimeLabelFormats","fullname":"plotOptions.bubble.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-pie-tooltip--dateTimeLabelFormats","fullname":"plotOptions.pie.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--dateTimeLabelFormats","fullname":"plotOptions.solidgauge.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"series-tooltip--dateTimeLabelFormats","fullname":"series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series-tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"tooltip--date","fullname":"tooltip.date","title":"dateTimeLabelFormats","parent":"tooltip","isParent":false,"returnType":"Object","defaults":"","values":"","since":"","description":"

For series on a datetime axes, the date format in the tooltip's header will by default be guessed based on the closest data points. This member gives the default string representations used for each unit. For an overview of the replacement codes, see dateFormat.

\r\n\r\n

Defaults to:\r\n

{\r\n    millisecond:\"%A, %b %e, %H:%M:%S.%L\",\r\n    second:\"%A, %b %e, %H:%M:%S\",\r\n    minute:\"%A, %b %e, %H:%M\",\r\n    hour:\"%A, %b %e, %H:%M\",\r\n    day:\"%A, %b %e, %Y\",\r\n    week:\"Week from %A, %b %e, %Y\",\r\n    month:\"%B %Y\",\r\n    year:\"%Y\"\r\n}
\r\n

","demo":"","seeAlso":"xAxis.dateTimeLabelFormats","deprecated":false},{"name":"lang--decimalPoint","fullname":"lang.decimalPoint","title":"decimalPoint","parent":"lang","isParent":false,"returnType":"String","defaults":".","since":"1.2.2","description":"The default decimal point used in the Highcharts.numberFormat method unless otherwise specified in the function arguments."},{"name":"data--decimalPoint","fullname":"data.decimalPoint","title":"decimalPoint","parent":"data","isParent":false,"returnType":"String","defaults":".","values":"","since":"4.1.0","description":"The decimal point used for parsing numbers in the CSV.","demo":"Comma as decimal point","seeAlso":"","deprecated":false},{"name":"chart--defaultSeriesType","fullname":"chart.defaultSeriesType","title":"defaultSeriesType","parent":"chart","isParent":false,"returnType":"String","defaults":"line","values":"[\"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\"]","description":"Alias of type.","demo":"Bar","deprecated":true},{"name":"plotOptions-gauge-dataLabels--defer","fullname":"plotOptions.gauge.dataLabels.defer","title":"defer","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--defer","fullname":"plotOptions.spline.dataLabels.defer","title":"defer","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--defer","fullname":"plotOptions.area.dataLabels.defer","title":"defer","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--defer","fullname":"plotOptions.funnel.dataLabels.defer","title":"defer","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--defer","fullname":"plotOptions.areasplinerange.dataLabels.defer","title":"defer","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--defer","fullname":"plotOptions.scatter.dataLabels.defer","title":"defer","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--defer","fullname":"plotOptions.areaspline.dataLabels.defer","title":"defer","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--defer","fullname":"plotOptions.heatmap.dataLabels.defer","title":"defer","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--defer","fullname":"plotOptions.treemap.dataLabels.defer","title":"defer","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--defer","fullname":"plotOptions.columnrange.dataLabels.defer","title":"defer","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--defer","fullname":"plotOptions.polygon.dataLabels.defer","title":"defer","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--defer","fullname":"plotOptions.waterfall.dataLabels.defer","title":"defer","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--defer","fullname":"plotOptions.pie.dataLabels.defer","title":"defer","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--defer","fullname":"plotOptions.arearange.dataLabels.defer","title":"defer","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--defer","fullname":"plotOptions.bar.dataLabels.defer","title":"defer","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--defer","fullname":"plotOptions.bubble.dataLabels.defer","title":"defer","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--defer","fullname":"plotOptions.pyramid.dataLabels.defer","title":"defer","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--defer","fullname":"plotOptions.line.dataLabels.defer","title":"defer","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--defer","fullname":"plotOptions.column.dataLabels.defer","title":"defer","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--defer","fullname":"plotOptions.series.dataLabels.defer","title":"defer","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--defer","fullname":"plotOptions.solidgauge.dataLabels.defer","title":"defer","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--defer","fullname":"series.dataLabels.defer","title":"defer","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"4.0","description":"Whether to defer displaying the data labels until the initial series animation has finished.","demo":"","seeAlso":"","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"chart-options3d--depth","fullname":"chart.options3d.depth","title":"depth","parent":"chart-options3d","isParent":false,"returnType":"Number","defaults":"100","values":"","since":"4.0","description":"The total depth of the chart.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--depth","fullname":"plotOptions.funnel.depth","title":"depth","parent":"plotOptions-funnel","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"plotOptions-columnrange--depth","fullname":"plotOptions.columnrange.depth","title":"depth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-boxplot--depth","fullname":"plotOptions.boxplot.depth","title":"depth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-column--depth","fullname":"plotOptions.column.depth","title":"depth","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-pyramid--depth","fullname":"plotOptions.pyramid.depth","title":"depth","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"plotOptions-bar--depth","fullname":"plotOptions.bar.depth","title":"depth","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-pie--depth","fullname":"plotOptions.pie.depth","title":"depth","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-waterfall--depth","fullname":"plotOptions.waterfall.depth","title":"depth","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"plotOptions-errorbar--depth","fullname":"plotOptions.errorbar.depth","title":"depth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"25","since":"4.0","description":"Depth of the columns in a 3D column chart. Requires highcharts-3d.js.","demo":"Basic 3D column chart","deprecated":false},{"name":"series--depth","fullname":"series.depth","title":"depth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"4.0","description":"The thickness of a 3D pie. Requires highcharts-3d.js","demo":"Basic 3D pie chart","deprecated":false},{"name":"plotOptions-gauge-dial","fullname":"plotOptions.gauge.dial","title":"dial","parent":"plotOptions-gauge","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Options for the dial or arrow pointer of the gauge.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dial","fullname":"series.dial","title":"dial","parent":"series","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Options for the dial or arrow pointer of the gauge.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--displayNegative","fullname":"plotOptions.bubble.displayNegative","title":"displayNegative","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"3.0","description":"Whether to display negative sized bubbles. The threshold is given by the zThreshold option, and negative bubbles can be visualized by setting negativeColor.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"series--displayNegative","fullname":"series.displayNegative","title":"displayNegative","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"3.0","description":"Whether to display negative sized bubbles. The threshold is given by the zThreshold option, and negative bubbles can be visualized by setting negativeColor.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"series-dataLabels--distance","fullname":"series.dataLabels.distance","title":"distance","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"series-dataLabels--distance","fullname":"series.dataLabels.distance","title":"distance","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"plotOptions-funnel-dataLabels--distance","fullname":"plotOptions.funnel.dataLabels.distance","title":"distance","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"xAxis-labels--distance","fullname":"xAxis.labels.distance","title":"distance","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"15","values":"","since":"","description":"Polar charts only. The label's pixel distance from the perimeter of the plot area.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-labels--distance","fullname":"yAxis.labels.distance","title":"distance","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"15","values":"","since":"","description":"Angular gauges and solid gauges only. The label's pixel distance from the perimeter of the plot area.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--distance","fullname":"series.dataLabels.distance","title":"distance","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"plotOptions-pyramid-dataLabels--distance","fullname":"plotOptions.pyramid.dataLabels.distance","title":"distance","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"plotOptions-pie-dataLabels--distance","fullname":"plotOptions.pie.dataLabels.distance","title":"distance","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"30","since":"2.1","description":"The distance of the data label from the pie's edge. Negative numbers put the data label on top of the pie slices. Connectors are only shown for data labels outside the pie.","demo":"Data labels on top of the pie"},{"name":"lang--downloadJPEG","fullname":"lang.downloadJPEG","title":"downloadJPEG","parent":"lang","isParent":false,"returnType":"String","defaults":"Download JPEG image","since":"2.0","description":"Exporting module only. The text for the JPEG download menu item."},{"name":"lang--downloadPDF","fullname":"lang.downloadPDF","title":"downloadPDF","parent":"lang","isParent":false,"returnType":"String","defaults":"Download PDF document","since":"2.0","description":"Exporting module only. The text for the PDF download menu item."},{"name":"lang--downloadPNG","fullname":"lang.downloadPNG","title":"downloadPNG","parent":"lang","isParent":false,"returnType":"String","defaults":"Download PNG image","since":"2.0","description":"Exporting module only. The text for the PNG download menu item."},{"name":"lang--downloadSVG","fullname":"lang.downloadSVG","title":"downloadSVG","parent":"lang","isParent":false,"returnType":"String","defaults":"Download SVG vector image","since":"2.0","description":"Exporting module only. The text for the SVG download menu item."},{"name":"drilldown-drillUpButton","fullname":"drilldown.drillUpButton","title":"drillUpButton","parent":"drilldown","isParent":true,"returnType":"Object","since":"3.0.8","description":"Options for the drill up button that appears when drilling down on a series. The text for the button is defined in lang.drillUpText.","demo":"Drill up button","deprecated":false},{"name":"lang--drillUpText","fullname":"lang.drillUpText","title":"drillUpText","parent":"lang","isParent":false,"returnType":"String","defaults":"Back to {series.name}","since":"3.0.8","description":"The text for the button that appears when drilling down, linking back to the parent series. The parent series' name is inserted for {series.name}.","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"drilldown","fullname":"drilldown","title":"drilldown","isParent":true,"since":"3.0.8","description":"

Options for drill down, the concept of inspecting increasingly high resolution data through clicking on chart items like columns or pie slices.

\r\n\r\n

The drilldown feature requires the drilldown.js file to be loaded, found in the modules directory of the download package, or online at code.highcharts.com/modules/drilldown.js.

\r\n\r\n","demo":"Basic drilldown, multi series drilldown, generated column drilldown, pie drilldown, drilldown across series types.","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"chart-events--drilldown","fullname":"chart.events.drilldown","title":"drilldown","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"3.0.8","description":"

Fires when a drilldown point is clicked, before the new series is added. Event arguments:

\r\n\r\n
\r\n\r\n
category
\r\n
If a category label was clicked, which index.
\r\n\r\n
point
\r\n
The originating point.
\r\n\r\n
originalEvent
\r\n
The original browser event (usually click) that triggered the drilldown.
\r\n\r\n
points
\r\n
If a category label was clicked, this array holds all points corresponing to the category.
\r\n\r\n
seriesOptions
\r\n
Options for the new series
\r\n\r\n
\r\n

This event is also utilized for async drilldown, where the seriesOptions are not added by option, but rather loaded async.

","demo":"Async drilldown","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"series-data--drilldown","fullname":"series.data.drilldown","title":"drilldown","parent":"series-data","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0.8","description":"The id of a series in the drilldown.series array to use for a drilldown for this point.","demo":"Basic drilldown","seeAlso":"","deprecated":false},{"name":"chart-events--drillup","fullname":"chart.events.drillup","title":"drillup","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"3.0.8","description":"Fires when drilling up from a drilldown series.","deprecated":false},{"name":"plotOptions-bar--edgeColor","fullname":"plotOptions.bar.edgeColor","title":"edgeColor","parent":"plotOptions-bar","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--edgeColor","fullname":"plotOptions.boxplot.edgeColor","title":"edgeColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--edgeColor","fullname":"plotOptions.waterfall.edgeColor","title":"edgeColor","parent":"plotOptions-waterfall","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--edgeColor","fullname":"plotOptions.column.edgeColor","title":"edgeColor","parent":"plotOptions-column","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--edgeColor","fullname":"plotOptions.errorbar.edgeColor","title":"edgeColor","parent":"plotOptions-errorbar","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--edgeColor","fullname":"plotOptions.columnrange.edgeColor","title":"edgeColor","parent":"plotOptions-columnrange","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeColor","fullname":"series.edgeColor","title":"edgeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--edgeWidth","fullname":"plotOptions.bar.edgeWidth","title":"edgeWidth","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--edgeWidth","fullname":"plotOptions.column.edgeWidth","title":"edgeWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--edgeWidth","fullname":"plotOptions.columnrange.edgeWidth","title":"edgeWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--edgeWidth","fullname":"plotOptions.boxplot.edgeWidth","title":"edgeWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--edgeWidth","fullname":"plotOptions.waterfall.edgeWidth","title":"edgeWidth","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--edgeWidth","fullname":"series.edgeWidth","title":"edgeWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--edgeWidth","fullname":"plotOptions.errorbar.edgeWidth","title":"edgeWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"","description":"3D columns only. The width of the colored edges.","demo":"","seeAlso":"","deprecated":false},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-solidgauge--enableMouseTracking","fullname":"plotOptions.solidgauge.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-treemap--enableMouseTracking","fullname":"plotOptions.treemap.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-funnel--enableMouseTracking","fullname":"plotOptions.funnel.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-line--enableMouseTracking","fullname":"plotOptions.line.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-gauge--enableMouseTracking","fullname":"plotOptions.gauge.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-scatter--enableMouseTracking","fullname":"plotOptions.scatter.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-areasplinerange--enableMouseTracking","fullname":"plotOptions.areasplinerange.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-heatmap--enableMouseTracking","fullname":"plotOptions.heatmap.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-spline--enableMouseTracking","fullname":"plotOptions.spline.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-areaspline--enableMouseTracking","fullname":"plotOptions.areaspline.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-columnrange--enableMouseTracking","fullname":"plotOptions.columnrange.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-boxplot--enableMouseTracking","fullname":"plotOptions.boxplot.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-column--enableMouseTracking","fullname":"plotOptions.column.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-area--enableMouseTracking","fullname":"plotOptions.area.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-bubble--enableMouseTracking","fullname":"plotOptions.bubble.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-errorbar--enableMouseTracking","fullname":"plotOptions.errorbar.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-pyramid--enableMouseTracking","fullname":"plotOptions.pyramid.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-bar--enableMouseTracking","fullname":"plotOptions.bar.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-pie--enableMouseTracking","fullname":"plotOptions.pie.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-polygon--enableMouseTracking","fullname":"plotOptions.polygon.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-waterfall--enableMouseTracking","fullname":"plotOptions.waterfall.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-arearange--enableMouseTracking","fullname":"plotOptions.arearange.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"plotOptions-series--enableMouseTracking","fullname":"plotOptions.series.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series--enableMouseTracking","fullname":"series.enableMouseTracking","title":"enableMouseTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.","demo":"No mouse tracking"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-line-states-hover-marker--enabled","fullname":"plotOptions.line.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--enabled","fullname":"plotOptions.scatter.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"yAxis-labels--enabled","fullname":"yAxis.labels.enabled","title":"enabled","parent":"yAxis-labels","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the axis labels.","demo":"X axis labels disabled"},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-spline-marker-states-hover--enabled","fullname":"plotOptions.spline.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-pie-states-hover-marker--enabled","fullname":"plotOptions.pie.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-line-marker-states-select--enabled","fullname":"plotOptions.line.marker.states.select.enabled","title":"enabled","parent":"plotOptions-line-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-spline-marker--enabled","fullname":"plotOptions.spline.marker.enabled","title":"enabled","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"chart-options3d--enabled","fullname":"chart.options3d.enabled","title":"enabled","parent":"chart-options3d","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.0","description":"Wether to render the chart using the 3D functionality.","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--enabled","fullname":"plotOptions.pyramid.dataLabels.enabled","title":"enabled","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"plotOptions-bar-states-hover--enabled","fullname":"plotOptions.bar.states.hover.enabled","title":"enabled","parent":"plotOptions-bar-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-spline-states-hover--enabled","fullname":"plotOptions.spline.states.hover.enabled","title":"enabled","parent":"plotOptions-spline-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-line-dataLabels--enabled","fullname":"plotOptions.line.dataLabels.enabled","title":"enabled","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-areaspline-marker--enabled","fullname":"plotOptions.areaspline.marker.enabled","title":"enabled","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-series-marker--enabled","fullname":"plotOptions.series.marker.enabled","title":"enabled","parent":"plotOptions-series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-area-marker-states-hover--enabled","fullname":"plotOptions.area.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-gauge-states-hover-marker--enabled","fullname":"plotOptions.gauge.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--enabled","fullname":"plotOptions.columnrange.dataLabels.enabled","title":"enabled","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-area-marker--enabled","fullname":"plotOptions.area.marker.enabled","title":"enabled","parent":"plotOptions-area-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-spline-dataLabels--enabled","fullname":"plotOptions.spline.dataLabels.enabled","title":"enabled","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-funnel-dataLabels--enabled","fullname":"plotOptions.funnel.dataLabels.enabled","title":"enabled","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-spline-marker-states-select--enabled","fullname":"plotOptions.spline.marker.states.select.enabled","title":"enabled","parent":"plotOptions-spline-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-polygon-marker-states-hover--enabled","fullname":"plotOptions.polygon.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-boxplot-states-hover-marker--enabled","fullname":"plotOptions.boxplot.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-areasplinerange-states-hover-marker--enabled","fullname":"plotOptions.areasplinerange.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-scatter-states-hover--enabled","fullname":"plotOptions.scatter.states.hover.enabled","title":"enabled","parent":"plotOptions-scatter-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-areaspline-states-hover--enabled","fullname":"plotOptions.areaspline.states.hover.enabled","title":"enabled","parent":"plotOptions-areaspline-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-funnel-states-hover--enabled","fullname":"plotOptions.funnel.states.hover.enabled","title":"enabled","parent":"plotOptions-funnel-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-errorbar-states-hover--enabled","fullname":"plotOptions.errorbar.states.hover.enabled","title":"enabled","parent":"plotOptions-errorbar-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-polygon-states-hover--enabled","fullname":"plotOptions.polygon.states.hover.enabled","title":"enabled","parent":"plotOptions-polygon-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"credits--enabled","fullname":"credits.enabled","title":"enabled","parent":"credits","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the credits text.","demo":"Credits disabled"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--enabled","fullname":"plotOptions.areasplinerange.dataLabels.enabled","title":"enabled","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--enabled","fullname":"plotOptions.solidgauge.dataLabels.enabled","title":"enabled","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.3.0","description":"Enable or disable the data labels.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-stackLabels--enabled","fullname":"yAxis.stackLabels.enabled","title":"enabled","parent":"yAxis-stackLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.5","description":"Enable or disable the stack total labels.","demo":"Enabled stack total labels"},{"name":"navigation-buttonOptions--enabled","fullname":"navigation.buttonOptions.enabled","title":"enabled","parent":"navigation-buttonOptions","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Whether to enable buttons.","demo":"Exporting module loaded but buttons disabled"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-area-states-hover--enabled","fullname":"plotOptions.area.states.hover.enabled","title":"enabled","parent":"plotOptions-area-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-column-states-hover--enabled","fullname":"plotOptions.column.states.hover.enabled","title":"enabled","parent":"plotOptions-column-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-series-marker-states-select--enabled","fullname":"plotOptions.series.marker.states.select.enabled","title":"enabled","parent":"plotOptions-series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-area-dataLabels--enabled","fullname":"plotOptions.area.dataLabels.enabled","title":"enabled","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-heatmap-states-hover-marker--enabled","fullname":"plotOptions.heatmap.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-arearange-dataLabels--enabled","fullname":"plotOptions.arearange.dataLabels.enabled","title":"enabled","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-area-states-hover-marker--enabled","fullname":"plotOptions.area.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"yAxis-title--enabled","fullname":"yAxis.title.enabled","title":"enabled","parent":"yAxis-title","isParent":false,"returnType":"String","defaults":"middle","description":"Deprecated. Set the text to null to disable the title.","deprecated":true},{"name":"plotOptions-scatter-marker-states-hover--enabled","fullname":"plotOptions.scatter.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-gauge-dataLabels--enabled","fullname":"plotOptions.gauge.dataLabels.enabled","title":"enabled","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.3.0","description":"Enable or disable the data labels.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-polygon-states-hover-marker--enabled","fullname":"plotOptions.polygon.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-bubble-states-hover--enabled","fullname":"plotOptions.bubble.states.hover.enabled","title":"enabled","parent":"plotOptions-bubble-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-areaspline-dataLabels--enabled","fullname":"plotOptions.areaspline.dataLabels.enabled","title":"enabled","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-scatter-marker-states-select--enabled","fullname":"plotOptions.scatter.marker.states.select.enabled","title":"enabled","parent":"plotOptions-scatter-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-polygon-marker-states-select--enabled","fullname":"plotOptions.polygon.marker.states.select.enabled","title":"enabled","parent":"plotOptions-polygon-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-bubble-marker-states-hover--enabled","fullname":"plotOptions.bubble.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"legend--enabled","fullname":"legend.enabled","title":"enabled","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the legend.","demo":"Legend disabled"},{"name":"plotOptions-waterfall-states-hover-marker--enabled","fullname":"plotOptions.waterfall.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-line-marker--enabled","fullname":"plotOptions.line.marker.enabled","title":"enabled","parent":"plotOptions-line-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"tooltip--enabled","fullname":"tooltip.enabled","title":"enabled","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the tooltip.","demo":"Disabled,\n\t\t\tdisable tooltip and show values on chart instead."},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"plotOptions-spline-states-hover-marker--enabled","fullname":"plotOptions.spline.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-polygon-dataLabels--enabled","fullname":"plotOptions.polygon.dataLabels.enabled","title":"enabled","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-waterfall-states-hover--enabled","fullname":"plotOptions.waterfall.states.hover.enabled","title":"enabled","parent":"plotOptions-waterfall-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-bar-dataLabels--enabled","fullname":"plotOptions.bar.dataLabels.enabled","title":"enabled","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-scatter-marker--enabled","fullname":"plotOptions.scatter.marker.enabled","title":"enabled","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-scatter-dataLabels--enabled","fullname":"plotOptions.scatter.dataLabels.enabled","title":"enabled","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-pie-states-hover--enabled","fullname":"plotOptions.pie.states.hover.enabled","title":"enabled","parent":"plotOptions-pie-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-funnel-states-hover-marker--enabled","fullname":"plotOptions.funnel.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"xAxis-title--enabled","fullname":"xAxis.title.enabled","title":"enabled","parent":"xAxis-title","isParent":false,"returnType":"String","defaults":"middle","description":"Deprecated. Set the text to null to disable the title.","deprecated":true},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"legend-navigation--enabled","fullname":"legend.navigation.enabled","title":"enabled","parent":"legend-navigation","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.2.4","description":"Whether to enable the legend navigation. In most cases, disabling the navigation results in an unwanted overflow.","deprecated":false},{"name":"plotOptions-arearange-states-hover--enabled","fullname":"plotOptions.arearange.states.hover.enabled","title":"enabled","parent":"plotOptions-arearange-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-columnrange-states-hover-marker--enabled","fullname":"plotOptions.columnrange.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-marker--enabled","fullname":"plotOptions.solidgauge.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-bubble-states-hover-marker--enabled","fullname":"plotOptions.bubble.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"exporting-buttons-contextButton--enabled","fullname":"exporting.buttons.contextButton.enabled","title":"enabled","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Whether to enable buttons.","demo":"Exporting module loaded but buttons disabled"},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-pie-dataLabels--enabled","fullname":"plotOptions.pie.dataLabels.enabled","title":"enabled","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"plotOptions-areasplinerange-states-hover--enabled","fullname":"plotOptions.areasplinerange.states.hover.enabled","title":"enabled","parent":"plotOptions-areasplinerange-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-series-states-hover-marker--enabled","fullname":"plotOptions.series.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-gauge-states-hover--enabled","fullname":"plotOptions.gauge.states.hover.enabled","title":"enabled","parent":"plotOptions-gauge-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-area-marker-states-select--enabled","fullname":"plotOptions.area.marker.states.select.enabled","title":"enabled","parent":"plotOptions-area-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-pyramid-states-hover-marker--enabled","fullname":"plotOptions.pyramid.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.3.0","description":"Enable or disable the data labels.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-series-states-hover--enabled","fullname":"plotOptions.series.states.hover.enabled","title":"enabled","parent":"plotOptions-series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.3.0","description":"Enable or disable the data labels.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-polygon-marker--enabled","fullname":"plotOptions.polygon.marker.enabled","title":"enabled","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-column-dataLabels--enabled","fullname":"plotOptions.column.dataLabels.enabled","title":"enabled","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-treemap-states-hover--enabled","fullname":"plotOptions.treemap.states.hover.enabled","title":"enabled","parent":"plotOptions-treemap-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-bar-states-hover-marker--enabled","fullname":"plotOptions.bar.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-arearange-states-hover-marker--enabled","fullname":"plotOptions.arearange.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-pyramid-states-hover--enabled","fullname":"plotOptions.pyramid.states.hover.enabled","title":"enabled","parent":"plotOptions-pyramid-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"xAxis-labels--enabled","fullname":"xAxis.labels.enabled","title":"enabled","parent":"xAxis-labels","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the axis labels.","demo":"X axis labels disabled"},{"name":"plotOptions-areaspline-states-hover-marker--enabled","fullname":"plotOptions.areaspline.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker-states-hover--enabled","fullname":"series.data.marker.states.hover.enabled","title":"enabled","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.0","description":"Enable or disable the data labels.","demo":"Data labels enabled","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-line-states-hover--enabled","fullname":"plotOptions.line.states.hover.enabled","title":"enabled","parent":"plotOptions-line-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"plotOptions-boxplot-states-hover--enabled","fullname":"plotOptions.boxplot.states.hover.enabled","title":"enabled","parent":"plotOptions-boxplot-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-columnrange-states-hover--enabled","fullname":"plotOptions.columnrange.states.hover.enabled","title":"enabled","parent":"plotOptions-columnrange-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-heatmap-dataLabels--enabled","fullname":"plotOptions.heatmap.dataLabels.enabled","title":"enabled","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-treemap-states-hover-marker--enabled","fullname":"plotOptions.treemap.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--enabled","fullname":"plotOptions.waterfall.dataLabels.enabled","title":"enabled","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-series-marker-states-hover--enabled","fullname":"plotOptions.series.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-areaspline-marker-states-hover--enabled","fullname":"plotOptions.areaspline.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-heatmap-states-hover--enabled","fullname":"plotOptions.heatmap.states.hover.enabled","title":"enabled","parent":"plotOptions-heatmap-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker--enabled","fullname":"series.marker.enabled","title":"enabled","parent":"series-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"series-dataLabels--enabled","fullname":"series.dataLabels.enabled","title":"enabled","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Enable or disable the data labels."},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-series-dataLabels--enabled","fullname":"plotOptions.series.dataLabels.enabled","title":"enabled","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-marker-states-hover--enabled","fullname":"series.marker.states.hover.enabled","title":"enabled","parent":"series-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-line-marker-states-hover--enabled","fullname":"plotOptions.line.marker.states.hover.enabled","title":"enabled","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker.","demo":"Disabled hover state"},{"name":"plotOptions-bubble-dataLabels--enabled","fullname":"plotOptions.bubble.dataLabels.enabled","title":"enabled","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","demo":"Data labels enabled","deprecated":false},{"name":"plotOptions-solidgauge-states-hover--enabled","fullname":"plotOptions.solidgauge.states.hover.enabled","title":"enabled","parent":"plotOptions-solidgauge-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"exporting--enabled","fullname":"exporting.enabled","title":"enabled","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Whether to enable the exporting module. Disabling the module will hide the context button, but API methods will still be available.","demo":"Exporting module is loaded but disabled","deprecated":false},{"name":"plotOptions-treemap-dataLabels--enabled","fullname":"plotOptions.treemap.dataLabels.enabled","title":"enabled","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.0","description":"Enable or disable the data labels.","demo":"Data labels enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover-marker--enabled","fullname":"plotOptions.column.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-errorbar-states-hover-marker--enabled","fullname":"plotOptions.errorbar.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-bubble-marker--enabled","fullname":"plotOptions.bubble.marker.enabled","title":"enabled","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"plotOptions-bubble-marker-states-select--enabled","fullname":"plotOptions.bubble.marker.states.select.enabled","title":"enabled","parent":"plotOptions-bubble-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-marker-states-select--enabled","fullname":"series.marker.states.select.enabled","title":"enabled","parent":"series-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"plotOptions-areaspline-marker-states-select--enabled","fullname":"plotOptions.areaspline.marker.states.select.enabled","title":"enabled","parent":"plotOptions-areaspline-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-data-marker-states-select--enabled","fullname":"series.data.marker.states.select.enabled","title":"enabled","parent":"series-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection.","demo":"Disabled select state"},{"name":"series-states-hover--enabled","fullname":"series.states.hover.enabled","title":"enabled","parent":"series-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend.\t\t\t.","demo":"Disable hover on line,\n\t\t\tcolumn,\n\t\t\tpie"},{"name":"series-states-hover-marker--enabled","fullname":"series.states.hover.marker.enabled","title":"enabled","parent":"series-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"series-data-marker--enabled","fullname":"series.data.marker.enabled","title":"enabled","parent":"series-data-marker","isParent":false,"returnType":"Boolean","defaults":"null","description":"Enable or disable the point marker. If null, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"Disabled markers,\r\n\t\t\tdisabled in normal state but enabled on hover","deprecated":false},{"name":"pane--endAngle","fullname":"pane.endAngle","title":"endAngle","parent":"pane","isParent":false,"returnType":"Number","since":"2.3.0","description":"The end angle of the polar X axis or gauge value axis, given in degrees where 0 is north. Defaults to startAngle + 360.","demo":"VU-meter with custom start and end angle.","deprecated":false},{"name":"series--endAngle","fullname":"series.endAngle","title":"endAngle","parent":"series","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"1.3.6","description":"The end angle of the pie in degrees where 0 is top and 90 is right. Defaults to startAngle plus 360.","demo":"Semi-circle donut","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--endAngle","fullname":"plotOptions.pie.endAngle","title":"endAngle","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"1.3.6","description":"The end angle of the pie in degrees where 0 is top and 90 is right. Defaults to startAngle plus 360.","demo":"Semi-circle donut","seeAlso":"","deprecated":false},{"name":"data--endColumn","fullname":"data.endColumn","title":"endColumn","parent":"data","isParent":false,"returnType":"Number","defaults":"","values":"","since":"4.0","description":"In tabular input data, the last column (indexed by 0) to use. Defaults to the last column containing data.","demo":"Limited data","seeAlso":"","deprecated":false},{"name":"xAxis--endOnTick","fullname":"xAxis.endOnTick","title":"endOnTick","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to force the axis to end on a tick. Use this option with the maxPadding option to control the axis end.","demo":"True by default and\n\t\t\tfalse for Y axis"},{"name":"yAxis--endOnTick","fullname":"yAxis.endOnTick","title":"endOnTick","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.0","description":"Whether to force the axis to end on a tick. Use this option with the maxPadding option to control the axis end.","demo":"True by default and\n\t\t\tfalse for Y axis,\n\t\t\tfalse for logarithmic Y axis"},{"name":"data--endRow","fullname":"data.endRow","title":"endRow","parent":"data","isParent":false,"returnType":"Number","defaults":"","values":"","since":"4.0.4","description":"In tabular input data, the last row (indexed by 0) to use. Defaults to the last row containing data.","demo":"Limited data","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar","fullname":"plotOptions.errorbar","title":"errorbar","parent":"plotOptions","isParent":true,"returnType":"Object","defaults":"","values":"","since":"3.0","description":"Error bars are a graphical representation of the variability of data and are used on graphs to indicate the error, or uncertainty in a reported measurement. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-areasplinerange-events","fullname":"plotOptions.areasplinerange.events","title":"events","parent":"plotOptions-areasplinerange","isParent":true},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-events","fullname":"plotOptions.areaspline.events","title":"events","parent":"plotOptions-areaspline","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-point-events","fullname":"plotOptions.scatter.point.events","title":"events","parent":"plotOptions-scatter-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-area-events","fullname":"plotOptions.area.events","title":"events","parent":"plotOptions-area","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"xAxis-plotLines--events","fullname":"xAxis.plotLines.events","title":"events","parent":"xAxis-plotLines","isParent":false,"returnType":"Object","context":"PlotLineOrBand","since":"1.2","description":"An object defining mouse events for the plot line. Supported properties are click, mouseover, mouseout, mousemove.","demo":"Mouse events demonstrated","deprecated":false},{"name":"plotOptions-columnrange-point-events","fullname":"plotOptions.columnrange.point.events","title":"events","parent":"plotOptions-columnrange-point","isParent":true,"description":"Events for each single point"},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-waterfall-events","fullname":"plotOptions.waterfall.events","title":"events","parent":"plotOptions-waterfall","isParent":true},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-gauge-events","fullname":"plotOptions.gauge.events","title":"events","parent":"plotOptions-gauge","isParent":true},{"name":"plotOptions-spline-point-events","fullname":"plotOptions.spline.point.events","title":"events","parent":"plotOptions-spline-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-areaspline-point-events","fullname":"plotOptions.areaspline.point.events","title":"events","parent":"plotOptions-areaspline-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-pie-point-events","fullname":"plotOptions.pie.point.events","title":"events","parent":"plotOptions-pie-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-point-events","fullname":"plotOptions.polygon.point.events","title":"events","parent":"plotOptions-polygon-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-events","fullname":"yAxis.events","title":"events","parent":"yAxis","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-bubble-events","fullname":"plotOptions.bubble.events","title":"events","parent":"plotOptions-bubble","isParent":true},{"name":"plotOptions-scatter-events","fullname":"plotOptions.scatter.events","title":"events","parent":"plotOptions-scatter","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-heatmap-point-events","fullname":"plotOptions.heatmap.point.events","title":"events","parent":"plotOptions-heatmap-point","isParent":true,"description":"Events for each single point"},{"name":"xAxis-plotBands--events","fullname":"xAxis.plotBands.events","title":"events","parent":"xAxis-plotBands","isParent":false,"returnType":"Object","context":"PlotLineOrBand","since":"1.2","description":"An object defining mouse events for the plot band. Supported properties are click, mouseover, mouseout, mousemove.","demo":"Mouse events demonstrated","deprecated":false},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--events","fullname":"yAxis.plotBands.events","title":"events","parent":"yAxis-plotBands","isParent":false,"returnType":"Object","context":"PlotLineOrBand","since":"1.2","description":"An object defining mouse events for the plot band. Supported properties are click, mouseover, mouseout, mousemove.","demo":"Mouse events demonstrated","deprecated":false},{"name":"plotOptions-bar-point-events","fullname":"plotOptions.bar.point.events","title":"events","parent":"plotOptions-bar-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"xAxis-events","fullname":"xAxis.events","title":"events","parent":"xAxis","isParent":true,"description":"Event handlers for the axis."},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-point-events","fullname":"plotOptions.bubble.point.events","title":"events","parent":"plotOptions-bubble-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-pyramid-events","fullname":"plotOptions.pyramid.events","title":"events","parent":"plotOptions-pyramid","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"yAxis-plotLines--events","fullname":"yAxis.plotLines.events","title":"events","parent":"yAxis-plotLines","isParent":false,"returnType":"Object","context":"PlotLineOrBand","since":"1.2","description":"An object defining mouse events for the plot line. Supported properties are click, mouseover, mouseout, mousemove.","demo":"Mouse events demonstrated","deprecated":false},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-arearange-events","fullname":"plotOptions.arearange.events","title":"events","parent":"plotOptions-arearange","isParent":true},{"name":"plotOptions-errorbar-point-events","fullname":"plotOptions.errorbar.point.events","title":"events","parent":"plotOptions-errorbar-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-boxplot-events","fullname":"plotOptions.boxplot.events","title":"events","parent":"plotOptions-boxplot","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-gauge-point-events","fullname":"plotOptions.gauge.point.events","title":"events","parent":"plotOptions-gauge-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-funnel-point-events","fullname":"plotOptions.funnel.point.events","title":"events","parent":"plotOptions-funnel-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-line-point-events","fullname":"plotOptions.line.point.events","title":"events","parent":"plotOptions-line-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-heatmap-events","fullname":"plotOptions.heatmap.events","title":"events","parent":"plotOptions-heatmap","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-errorbar-events","fullname":"plotOptions.errorbar.events","title":"events","parent":"plotOptions-errorbar","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-treemap-point-events","fullname":"plotOptions.treemap.point.events","title":"events","parent":"plotOptions-treemap-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-bar-events","fullname":"plotOptions.bar.events","title":"events","parent":"plotOptions-bar","isParent":true},{"name":"plotOptions-areasplinerange-point-events","fullname":"plotOptions.areasplinerange.point.events","title":"events","parent":"plotOptions-areasplinerange-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-funnel-events","fullname":"plotOptions.funnel.events","title":"events","parent":"plotOptions-funnel","isParent":true},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-point-events","fullname":"plotOptions.series.point.events","title":"events","parent":"plotOptions-series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-pyramid-point-events","fullname":"plotOptions.pyramid.point.events","title":"events","parent":"plotOptions-pyramid-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-point-events","fullname":"plotOptions.boxplot.point.events","title":"events","parent":"plotOptions-boxplot-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-events","fullname":"plotOptions.column.events","title":"events","parent":"plotOptions-column","isParent":true},{"name":"plotOptions-waterfall-point-events","fullname":"plotOptions.waterfall.point.events","title":"events","parent":"plotOptions-waterfall-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-columnrange-events","fullname":"plotOptions.columnrange.events","title":"events","parent":"plotOptions-columnrange","isParent":true},{"name":"plotOptions-pie-events","fullname":"plotOptions.pie.events","title":"events","parent":"plotOptions-pie","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-treemap-events","fullname":"plotOptions.treemap.events","title":"events","parent":"plotOptions-treemap","isParent":true},{"name":"plotOptions-solidgauge-point-events","fullname":"plotOptions.solidgauge.point.events","title":"events","parent":"plotOptions-solidgauge-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-arearange-point-events","fullname":"plotOptions.arearange.point.events","title":"events","parent":"plotOptions-arearange-point","isParent":true,"description":"Events for each single point"},{"name":"chart-events","fullname":"chart.events","title":"events","parent":"chart","isParent":true,"description":"Event listeners for the chart."},{"name":"plotOptions-solidgauge-events","fullname":"plotOptions.solidgauge.events","title":"events","parent":"plotOptions-solidgauge","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-spline-events","fullname":"plotOptions.spline.events","title":"events","parent":"plotOptions-spline","isParent":true},{"name":"plotOptions-column-point-events","fullname":"plotOptions.column.point.events","title":"events","parent":"plotOptions-column-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"plotOptions-polygon-events","fullname":"plotOptions.polygon.events","title":"events","parent":"plotOptions-polygon","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-line-events","fullname":"plotOptions.line.events","title":"events","parent":"plotOptions-line","isParent":true},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-area-point-events","fullname":"plotOptions.area.point.events","title":"events","parent":"plotOptions-area-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-series-events","fullname":"plotOptions.series.events","title":"events","parent":"plotOptions-series","isParent":true},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events","fullname":"series.point.events","title":"events","parent":"series-point","isParent":true,"description":"Events for each single point"},{"name":"series-data-events","fullname":"series.data.events","title":"events","parent":"series-data","isParent":true,"returnType":"","defaults":"","since":"","description":"Individual point events","demo":"","seeAlso":"","deprecated":false},{"name":"series-events","fullname":"series.events","title":"events","parent":"series","isParent":true},{"name":"exporting","fullname":"exporting","title":"exporting","isParent":true,"description":"Options for the exporting module. For an overview on the matter, see the docs.","deprecated":false},{"name":"exporting--fallbackToExportServer","fullname":"exporting.fallbackToExportServer","title":"fallbackToExportServer","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.8","description":"Whether or not to fall back to the export server if the offline-exporting module is unable to export the chart on the client side.","deprecated":false},{"name":"exporting--filename","fullname":"exporting.filename","title":"filename","parent":"exporting","isParent":false,"returnType":"String","defaults":"chart","since":"2.0","description":"The filename, without extension, to use for the exported chart.","demo":"Custom file name","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-zones--fillColor","fullname":"plotOptions.errorbar.zones.fillColor","title":"fillColor","parent":"plotOptions-errorbar-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-waterfall-states-hover-marker--fillColor","fullname":"plotOptions.waterfall.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-treemap-states-hover-marker--fillColor","fullname":"plotOptions.treemap.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series--fillColor","fullname":"series.fillColor","title":"fillColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#FFFFFF","values":"","since":"3.0","description":"The fill color of the box.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--fillColor","fullname":"plotOptions.spline.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-polygon-marker--fillColor","fullname":"plotOptions.polygon.marker.fillColor","title":"fillColor","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series--fillColor","fullname":"series.fillColor","title":"fillColor","parent":"series","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-column-states-hover-marker--fillColor","fullname":"plotOptions.column.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--fillColor","fullname":"plotOptions.columnrange.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-line-marker-states-hover--fillColor","fullname":"plotOptions.line.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-zones--fillColor","fullname":"plotOptions.scatter.zones.fillColor","title":"fillColor","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series--fillColor","fullname":"series.fillColor","title":"fillColor","parent":"series","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area-marker-states-hover--fillColor","fullname":"plotOptions.area.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-pyramid-zones--fillColor","fullname":"plotOptions.pyramid.zones.fillColor","title":"fillColor","parent":"plotOptions-pyramid-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series--fillColor","fullname":"series.fillColor","title":"fillColor","parent":"series","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"plotOptions-scatter-marker-states-hover--fillColor","fullname":"plotOptions.scatter.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-marker--fillColor","fullname":"plotOptions.solidgauge.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-boxplot-zones--fillColor","fullname":"plotOptions.boxplot.zones.fillColor","title":"fillColor","parent":"plotOptions-boxplot-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-series-marker--fillColor","fullname":"plotOptions.series.marker.fillColor","title":"fillColor","parent":"plotOptions-series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series--fillColor","fullname":"series.fillColor","title":"fillColor","parent":"series","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-solidgauge-zones--fillColor","fullname":"plotOptions.solidgauge.zones.fillColor","title":"fillColor","parent":"plotOptions-solidgauge-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-scatter-marker--fillColor","fullname":"plotOptions.scatter.marker.fillColor","title":"fillColor","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-series-states-hover-marker--fillColor","fullname":"plotOptions.series.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-areaspline-zones--fillColor","fullname":"plotOptions.areaspline.zones.fillColor","title":"fillColor","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-arearange--fillColor","fullname":"plotOptions.arearange.fillColor","title":"fillColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-marker--fillColor","fullname":"plotOptions.areasplinerange.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-polygon-marker-states-select--fillColor","fullname":"plotOptions.polygon.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-polygon-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-gauge-states-hover-marker--fillColor","fullname":"plotOptions.gauge.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-areasplinerange-zones--fillColor","fullname":"plotOptions.areasplinerange.zones.fillColor","title":"fillColor","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-zones--fillColor","fullname":"plotOptions.series.zones.fillColor","title":"fillColor","parent":"plotOptions-series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-heatmap-states-hover-marker--fillColor","fullname":"plotOptions.heatmap.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-line-zones--fillColor","fullname":"plotOptions.line.zones.fillColor","title":"fillColor","parent":"plotOptions-line-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-waterfall-zones--fillColor","fullname":"plotOptions.waterfall.zones.fillColor","title":"fillColor","parent":"plotOptions-waterfall-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-boxplot-states-hover-marker--fillColor","fullname":"plotOptions.boxplot.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-errorbar-states-hover-marker--fillColor","fullname":"plotOptions.errorbar.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-boxplot--fillColor","fullname":"plotOptions.boxplot.fillColor","title":"fillColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"#FFFFFF","values":"","since":"3.0","description":"The fill color of the box.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-zones--fillColor","fullname":"plotOptions.polygon.zones.fillColor","title":"fillColor","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-gauge-zones--fillColor","fullname":"plotOptions.gauge.zones.fillColor","title":"fillColor","parent":"plotOptions-gauge-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-column-zones--fillColor","fullname":"plotOptions.column.zones.fillColor","title":"fillColor","parent":"plotOptions-column-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-areaspline-marker-states-select--fillColor","fullname":"plotOptions.areaspline.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-areaspline-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-areaspline--fillColor","fullname":"plotOptions.areaspline.fillColor","title":"fillColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"plotOptions-line-states-hover-marker--fillColor","fullname":"plotOptions.line.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-pyramid-states-hover-marker--fillColor","fullname":"plotOptions.pyramid.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-zones--fillColor","fullname":"plotOptions.arearange.zones.fillColor","title":"fillColor","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--fillColor","fullname":"plotOptions.bar.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-line-marker--fillColor","fullname":"plotOptions.line.marker.fillColor","title":"fillColor","parent":"plotOptions-line-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-spline-marker-states-select--fillColor","fullname":"plotOptions.spline.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-spline-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-treemap-zones--fillColor","fullname":"plotOptions.treemap.zones.fillColor","title":"fillColor","parent":"plotOptions-treemap-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-bar-zones--fillColor","fullname":"plotOptions.bar.zones.fillColor","title":"fillColor","parent":"plotOptions-bar-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-scatter-marker-states-select--fillColor","fullname":"plotOptions.scatter.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-scatter-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-spline-marker--fillColor","fullname":"plotOptions.spline.marker.fillColor","title":"fillColor","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area--fillColor","fullname":"plotOptions.area.fillColor","title":"fillColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"plotOptions-funnel-states-hover-marker--fillColor","fullname":"plotOptions.funnel.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-funnel-zones--fillColor","fullname":"plotOptions.funnel.zones.fillColor","title":"fillColor","parent":"plotOptions-funnel-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-bubble-marker-states-select--fillColor","fullname":"plotOptions.bubble.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-bubble-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-areaspline-marker--fillColor","fullname":"plotOptions.areaspline.marker.fillColor","title":"fillColor","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-pie-states-hover-marker--fillColor","fullname":"plotOptions.pie.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-polygon-states-hover-marker--fillColor","fullname":"plotOptions.polygon.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-zones--fillColor","fullname":"plotOptions.heatmap.zones.fillColor","title":"fillColor","parent":"plotOptions-heatmap-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-bubble-marker--fillColor","fullname":"plotOptions.bubble.marker.fillColor","title":"fillColor","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-pie-zones--fillColor","fullname":"plotOptions.pie.zones.fillColor","title":"fillColor","parent":"plotOptions-pie-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-bubble-marker-states-hover--fillColor","fullname":"plotOptions.bubble.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-data-marker-states-select--fillColor","fullname":"series.data.marker.states.select.fillColor","title":"fillColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--fillColor","fullname":"plotOptions.scatter.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-series-marker-states-select--fillColor","fullname":"plotOptions.series.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-bubble-states-hover-marker--fillColor","fullname":"plotOptions.bubble.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area-marker--fillColor","fullname":"plotOptions.area.marker.fillColor","title":"fillColor","parent":"plotOptions-area-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-marker-states-select--fillColor","fullname":"series.marker.states.select.fillColor","title":"fillColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--fillColor","fullname":"series.marker.states.hover.fillColor","title":"fillColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-marker-states-select--fillColor","fullname":"plotOptions.area.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-area-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-series-marker-states-hover--fillColor","fullname":"plotOptions.series.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-polygon-marker-states-hover--fillColor","fullname":"plotOptions.polygon.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-zones--fillColor","fullname":"plotOptions.bubble.zones.fillColor","title":"fillColor","parent":"plotOptions-bubble-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker-states-hover--fillColor","fullname":"series.data.marker.states.hover.fillColor","title":"fillColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-zones--fillColor","fullname":"plotOptions.columnrange.zones.fillColor","title":"fillColor","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-areaspline-marker-states-hover--fillColor","fullname":"plotOptions.areaspline.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-zones--fillColor","fullname":"plotOptions.spline.zones.fillColor","title":"fillColor","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area-zones--fillColor","fullname":"plotOptions.area.zones.fillColor","title":"fillColor","parent":"plotOptions-area-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"series-states-hover-marker--fillColor","fullname":"series.states.hover.marker.fillColor","title":"fillColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-data-marker--fillColor","fullname":"series.data.marker.fillColor","title":"fillColor","parent":"series-data-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-areasplinerange--fillColor","fullname":"plotOptions.areasplinerange.fillColor","title":"fillColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","description":"Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity.","demo":"Null by default,\n\t\t\tgradient"},{"name":"series-marker--fillColor","fullname":"series.marker.fillColor","title":"fillColor","parent":"series-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area-states-hover-marker--fillColor","fullname":"plotOptions.area.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"series-zones--fillColor","fullname":"series.zones.fillColor","title":"fillColor","parent":"series-zones","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"4.1.0","description":"Defines the fill color for the series (in area type series)","demo":"","seeAlso":"fillColor","deprecated":false},{"name":"plotOptions-spline-marker-states-hover--fillColor","fullname":"plotOptions.spline.marker.states.hover.fillColor","title":"fillColor","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The fill color of the marker in hover state.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--fillColor","fullname":"plotOptions.areaspline.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-line-marker-states-select--fillColor","fullname":"plotOptions.line.marker.states.select.fillColor","title":"fillColor","parent":"plotOptions-line-marker-states-select","isParent":false,"returnType":"Color","description":"The fill color of the point marker.","demo":"Solid red discs for selected points","deprecated":false},{"name":"plotOptions-arearange-states-hover-marker--fillColor","fullname":"plotOptions.arearange.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Color","description":"The fill color of the point marker. When null, the series' or point's color is used.","demo":"White fill"},{"name":"plotOptions-area--fillOpacity","fullname":"plotOptions.area.fillOpacity","title":"fillOpacity","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"series--fillOpacity","fullname":"series.fillOpacity","title":"fillOpacity","parent":"series","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"plotOptions-areaspline--fillOpacity","fullname":"plotOptions.areaspline.fillOpacity","title":"fillOpacity","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"plotOptions-arearange--fillOpacity","fullname":"plotOptions.arearange.fillOpacity","title":"fillOpacity","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"series--fillOpacity","fullname":"series.fillOpacity","title":"fillOpacity","parent":"series","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"series--fillOpacity","fullname":"series.fillOpacity","title":"fillOpacity","parent":"series","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"series--fillOpacity","fullname":"series.fillOpacity","title":"fillOpacity","parent":"series","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"plotOptions-areasplinerange--fillOpacity","fullname":"plotOptions.areasplinerange.fillOpacity","title":"fillOpacity","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"0.75","description":"Fill opacity for the area. Note that when you set an explicit fillColor, the fillOpacity is not applied. Instead, you should define the opacity in the fillColor with an rgba color definition.","demo":"Automatic fill color and fill opacity of 0.1","deprecated":false},{"name":"data--firstRowAsNames","fullname":"data.firstRowAsNames","title":"firstRowAsNames","parent":"data","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.0","description":"Whether to use the first row in the data set as series names. ","demo":"Don't get series names from the CSV","seeAlso":"","deprecated":false},{"name":"chart-options3d--fitToPlot","fullname":"chart.options3d.fitToPlot","title":"fitToPlot","parent":"chart-options3d","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.2.4","description":"Whether the 3d box should automatically adjust to the chart plot area.","demo":"","seeAlso":"","deprecated":false},{"name":"legend--floating","fullname":"legend.floating","title":"floating","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1","description":"When the legend is floating, the plot area ignores it and is allowed to be placed below it.","demo":"False by default,\n\t\t\ttrue."},{"name":"title--floating","fullname":"title.floating","title":"floating","parent":"title","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1","description":"When the title is floating, the plot area will not move to make space for it.","demo":"False by default,\n\t\t\ttrue - title on top of the plot area."},{"name":"subtitle--floating","fullname":"subtitle.floating","title":"floating","parent":"subtitle","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1","description":"When the subtitle is floating, the plot area will not move to make space for it.","demo":"Floating title and subtitle."},{"name":"yAxis--floor","fullname":"yAxis.floor","title":"floor","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"null","since":"4.0","description":"The lowest allowed value for automatically computed axis extremes.","demo":"Floor and ceiling","seeAlso":"ceiling","deprecated":false},{"name":"xAxis--floor","fullname":"xAxis.floor","title":"floor","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"null","since":"4.0","description":"The lowest allowed value for automatically computed axis extremes.","demo":"Floor and ceiling","seeAlso":"ceiling","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-tooltip--followPointer","fullname":"plotOptions.boxplot.tooltip.followPointer","title":"followPointer","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-tooltip--followPointer","fullname":"plotOptions.treemap.tooltip.followPointer","title":"followPointer","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--followPointer","fullname":"tooltip.followPointer","title":"followPointer","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-tooltip--followPointer","fullname":"plotOptions.gauge.tooltip.followPointer","title":"followPointer","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-tooltip--followPointer","fullname":"plotOptions.pie.tooltip.followPointer","title":"followPointer","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-tooltip--followPointer","fullname":"plotOptions.waterfall.tooltip.followPointer","title":"followPointer","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-tooltip--followPointer","fullname":"plotOptions.spline.tooltip.followPointer","title":"followPointer","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--followPointer","fullname":"plotOptions.solidgauge.tooltip.followPointer","title":"followPointer","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-tooltip--followPointer","fullname":"plotOptions.bubble.tooltip.followPointer","title":"followPointer","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-tooltip--followPointer","fullname":"plotOptions.bar.tooltip.followPointer","title":"followPointer","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-tooltip--followPointer","fullname":"plotOptions.areaspline.tooltip.followPointer","title":"followPointer","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip--followPointer","fullname":"plotOptions.column.tooltip.followPointer","title":"followPointer","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-tooltip--followPointer","fullname":"plotOptions.funnel.tooltip.followPointer","title":"followPointer","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-tooltip--followPointer","fullname":"plotOptions.columnrange.tooltip.followPointer","title":"followPointer","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-tooltip--followPointer","fullname":"plotOptions.heatmap.tooltip.followPointer","title":"followPointer","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-tooltip--followPointer","fullname":"plotOptions.line.tooltip.followPointer","title":"followPointer","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-tooltip--followPointer","fullname":"plotOptions.errorbar.tooltip.followPointer","title":"followPointer","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-tooltip--followPointer","fullname":"plotOptions.series.tooltip.followPointer","title":"followPointer","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-tooltip--followPointer","fullname":"plotOptions.polygon.tooltip.followPointer","title":"followPointer","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-tooltip--followPointer","fullname":"plotOptions.area.tooltip.followPointer","title":"followPointer","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip--followPointer","fullname":"plotOptions.arearange.tooltip.followPointer","title":"followPointer","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--followPointer","fullname":"plotOptions.areasplinerange.tooltip.followPointer","title":"followPointer","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-tooltip--followPointer","fullname":"plotOptions.pyramid.tooltip.followPointer","title":"followPointer","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followPointer","fullname":"series.tooltip.followPointer","title":"followPointer","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-tooltip--followPointer","fullname":"plotOptions.scatter.tooltip.followPointer","title":"followPointer","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"

Whether the tooltip should follow the mouse as it moves across columns, pie slices and other point types with an extent. By default it behaves this way for scatter, bubble and pie series by override in the plotOptions for those series types.

\r\n

For touch moves to behave the same way, followTouchMove must be true also.

","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-line-tooltip--followTouchMove","fullname":"plotOptions.line.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-scatter-tooltip--followTouchMove","fullname":"plotOptions.scatter.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-series-tooltip--followTouchMove","fullname":"plotOptions.series.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-areaspline-tooltip--followTouchMove","fullname":"plotOptions.areaspline.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-arearange-tooltip--followTouchMove","fullname":"plotOptions.arearange.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-bar-tooltip--followTouchMove","fullname":"plotOptions.bar.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-bubble-tooltip--followTouchMove","fullname":"plotOptions.bubble.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-funnel-tooltip--followTouchMove","fullname":"plotOptions.funnel.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-spline-tooltip--followTouchMove","fullname":"plotOptions.spline.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-boxplot-tooltip--followTouchMove","fullname":"plotOptions.boxplot.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-polygon-tooltip--followTouchMove","fullname":"plotOptions.polygon.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-errorbar-tooltip--followTouchMove","fullname":"plotOptions.errorbar.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-waterfall-tooltip--followTouchMove","fullname":"plotOptions.waterfall.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-pyramid-tooltip--followTouchMove","fullname":"plotOptions.pyramid.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-area-tooltip--followTouchMove","fullname":"plotOptions.area.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--followTouchMove","fullname":"plotOptions.areasplinerange.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-heatmap-tooltip--followTouchMove","fullname":"plotOptions.heatmap.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"tooltip--followTouchMove","fullname":"tooltip.followTouchMove","title":"followTouchMove","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-treemap-tooltip--followTouchMove","fullname":"plotOptions.treemap.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-columnrange-tooltip--followTouchMove","fullname":"plotOptions.columnrange.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-column-tooltip--followTouchMove","fullname":"plotOptions.column.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-gauge-tooltip--followTouchMove","fullname":"plotOptions.gauge.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--followTouchMove","fullname":"plotOptions.solidgauge.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"plotOptions-pie-tooltip--followTouchMove","fullname":"plotOptions.pie.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--followTouchMove","fullname":"series.tooltip.followTouchMove","title":"followTouchMove","parent":"series-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. If chart.zoomType is set, it will override followTouchMove.","deprecated":false},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-columnrange-tooltip--footerFormat","fullname":"plotOptions.columnrange.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-spline-tooltip--footerFormat","fullname":"plotOptions.spline.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-scatter-tooltip--footerFormat","fullname":"plotOptions.scatter.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-bar-tooltip--footerFormat","fullname":"plotOptions.bar.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-line-tooltip--footerFormat","fullname":"plotOptions.line.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-areaspline-tooltip--footerFormat","fullname":"plotOptions.areaspline.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"tooltip--footerFormat","fullname":"tooltip.footerFormat","title":"footerFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-series-tooltip--footerFormat","fullname":"plotOptions.series.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-pyramid-tooltip--footerFormat","fullname":"plotOptions.pyramid.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-gauge-tooltip--footerFormat","fullname":"plotOptions.gauge.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-treemap-tooltip--footerFormat","fullname":"plotOptions.treemap.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-polygon-tooltip--footerFormat","fullname":"plotOptions.polygon.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-area-tooltip--footerFormat","fullname":"plotOptions.area.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-boxplot-tooltip--footerFormat","fullname":"plotOptions.boxplot.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-errorbar-tooltip--footerFormat","fullname":"plotOptions.errorbar.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-solidgauge-tooltip--footerFormat","fullname":"plotOptions.solidgauge.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-funnel-tooltip--footerFormat","fullname":"plotOptions.funnel.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-pie-tooltip--footerFormat","fullname":"plotOptions.pie.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-areasplinerange-tooltip--footerFormat","fullname":"plotOptions.areasplinerange.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-waterfall-tooltip--footerFormat","fullname":"plotOptions.waterfall.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-arearange-tooltip--footerFormat","fullname":"plotOptions.arearange.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-heatmap-tooltip--footerFormat","fullname":"plotOptions.heatmap.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-bubble-tooltip--footerFormat","fullname":"plotOptions.bubble.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"plotOptions-column-tooltip--footerFormat","fullname":"plotOptions.column.tooltip.footerFormat","title":"footerFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"series-tooltip--footerFormat","fullname":"series.tooltip.footerFormat","title":"footerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"false","since":"2.2","description":"A string to append to the tooltip format.","demo":"A table for value alignment"},{"name":"exporting--formAttributes","fullname":"exporting.formAttributes","title":"formAttributes","parent":"exporting","isParent":false,"returnType":"Object","defaults":"","values":"","since":"3.0.8","description":"An object containing additional attributes for the POST form that sends the SVG to the export server. For example, a target can be set to make sure the generated image is received in another frame, or a custom enctype or encoding can be set.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-polygon-dataLabels--format","fullname":"plotOptions.polygon.dataLabels.format","title":"format","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-column-dataLabels--format","fullname":"plotOptions.column.dataLabels.format","title":"format","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-spline-dataLabels--format","fullname":"plotOptions.spline.dataLabels.format","title":"format","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--format","fullname":"plotOptions.pyramid.dataLabels.format","title":"format","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-bar-dataLabels--format","fullname":"plotOptions.bar.dataLabels.format","title":"format","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-series-dataLabels--format","fullname":"plotOptions.series.dataLabels.format","title":"format","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-gauge-dataLabels--format","fullname":"plotOptions.gauge.dataLabels.format","title":"format","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"yAxis-stackLabels--format","fullname":"yAxis.stackLabels.format","title":"format","parent":"yAxis-stackLabels","isParent":false,"returnType":"String","defaults":"{total}","values":"","since":"3.0.2","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels--format","fullname":"xAxis.labels.format","title":"format","parent":"xAxis-labels","isParent":false,"returnType":"String","defaults":"{value}","since":"3.0","description":"A format string for the axis label. ","demo":"Add units to Y axis label","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-arearange-dataLabels--format","fullname":"plotOptions.arearange.dataLabels.format","title":"format","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-treemap-dataLabels--format","fullname":"plotOptions.treemap.dataLabels.format","title":"format","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-funnel-dataLabels--format","fullname":"plotOptions.funnel.dataLabels.format","title":"format","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--format","fullname":"plotOptions.areasplinerange.dataLabels.format","title":"format","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-line-dataLabels--format","fullname":"plotOptions.line.dataLabels.format","title":"format","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--format","fullname":"plotOptions.solidgauge.dataLabels.format","title":"format","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-area-dataLabels--format","fullname":"plotOptions.area.dataLabels.format","title":"format","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-bubble-dataLabels--format","fullname":"plotOptions.bubble.dataLabels.format","title":"format","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--format","fullname":"plotOptions.waterfall.dataLabels.format","title":"format","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--format","fullname":"plotOptions.columnrange.dataLabels.format","title":"format","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"yAxis-labels--format","fullname":"yAxis.labels.format","title":"format","parent":"yAxis-labels","isParent":false,"returnType":"String","defaults":"{value}","since":"3.0","description":"A format string for the axis label. ","demo":"Add units to Y axis label","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--format","fullname":"plotOptions.areaspline.dataLabels.format","title":"format","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-scatter-dataLabels--format","fullname":"plotOptions.scatter.dataLabels.format","title":"format","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--format","fullname":"plotOptions.heatmap.dataLabels.format","title":"format","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"plotOptions-pie-dataLabels--format","fullname":"plotOptions.pie.dataLabels.format","title":"format","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--format","fullname":"series.dataLabels.format","title":"format","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"3.0","description":"A format string for the data label. Available variables are the same as for formatter.","demo":"Add a unit","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--formatter","fullname":"plotOptions.pyramid.dataLabels.formatter","title":"formatter","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-treemap-dataLabels--formatter","fullname":"plotOptions.treemap.dataLabels.formatter","title":"formatter","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-bubble-dataLabels--formatter","fullname":"plotOptions.bubble.dataLabels.formatter","title":"formatter","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-scatter-dataLabels--formatter","fullname":"plotOptions.scatter.dataLabels.formatter","title":"formatter","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"yAxis-stackLabels--formatter","fullname":"yAxis.stackLabels.formatter","title":"formatter","parent":"yAxis-stackLabels","isParent":false,"returnType":"Function","since":"2.1.5","description":"Callback JavaScript function to format the label. The value is given by this.total. Defaults to: \n
function() {\n\treturn this.total;\n}
","demo":"Added units to stack total value"},{"name":"plotOptions-arearange-dataLabels--formatter","fullname":"plotOptions.arearange.dataLabels.formatter","title":"formatter","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-funnel-dataLabels--formatter","fullname":"plotOptions.funnel.dataLabels.formatter","title":"formatter","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"tooltip--formatter","fullname":"tooltip.formatter","title":"formatter","parent":"tooltip","isParent":false,"returnType":"Function","description":"

Callback function to format the text of the tooltip. Return false to disable tooltip for a specific point on series.

A subset of HTML is supported. The HTML of the tooltip is parsed and converted to SVG, therefore this isn't a complete HTML renderer. The following tabs are supported: <b>, <strong>, <i>, <em>, <br/>, <span>. Spans can be styled with a style attribute, but only text-related CSS that is shared with SVG is handled.

Since version 2.1 the tooltip can be shared between multiple series through the shared option. The available data in the formatter differ a bit depending on whether the tooltip is shared or not. In a shared tooltip, all properties except x, which is common for all points, are kept in an array, this.points.

Available data are:

\t
this.percentage (not shared) / this.points[i].percentage (shared)
\t
Stacked series and pies only. The point's percentage of the total.
\t \t
this.point (not shared) / this.points[i].point (shared)
\t
The point object. The point name, if defined, is available through this.point.name.
\t \t
this.points
\t
In a shared tooltip, this is an array containing all other properties for each point.
\t \t
this.series (not shared) / this.points[i].series (shared)
\t
The series object. The series name is available through this.series.name.
\t
this.total (not shared) / this.points[i].total (shared)
\t
Stacked series only. The total value at this point's x value.
\t \t
this.x
\t
The x value. This property is the same regardless of the tooltip being shared or not.
\t \t
this.y (not shared) / this.points[i].y (shared)
\t
The y value.
","demo":"Simple string formatting,\t\t\t\n\t\t\tformatting with shared tooltip"},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-series-dataLabels--formatter","fullname":"plotOptions.series.dataLabels.formatter","title":"formatter","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--formatter","fullname":"plotOptions.areasplinerange.dataLabels.formatter","title":"formatter","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-pie-dataLabels--formatter","fullname":"plotOptions.pie.dataLabels.formatter","title":"formatter","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--formatter","fullname":"plotOptions.solidgauge.dataLabels.formatter","title":"formatter","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-gauge-dataLabels--formatter","fullname":"plotOptions.gauge.dataLabels.formatter","title":"formatter","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-polygon-dataLabels--formatter","fullname":"plotOptions.polygon.dataLabels.formatter","title":"formatter","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-area-dataLabels--formatter","fullname":"plotOptions.area.dataLabels.formatter","title":"formatter","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--formatter","fullname":"plotOptions.columnrange.dataLabels.formatter","title":"formatter","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-line-dataLabels--formatter","fullname":"plotOptions.line.dataLabels.formatter","title":"formatter","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--formatter","fullname":"plotOptions.areaspline.dataLabels.formatter","title":"formatter","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--formatter","fullname":"plotOptions.waterfall.dataLabels.formatter","title":"formatter","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-spline-dataLabels--formatter","fullname":"plotOptions.spline.dataLabels.formatter","title":"formatter","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-column-dataLabels--formatter","fullname":"plotOptions.column.dataLabels.formatter","title":"formatter","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"xAxis-labels--formatter","fullname":"xAxis.labels.formatter","title":"formatter","parent":"xAxis-labels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the label. The value is \r given by this.value. Additional properties for this are\r axis, chart, isFirst and isLast.\r Defaults to: \r\n
function() {\r\n\treturn this.value;\r\n}
","demo":"Linked category names","deprecated":false},{"name":"yAxis-labels--formatter","fullname":"yAxis.labels.formatter","title":"formatter","parent":"yAxis-labels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the label. The value is \r given by this.value. Additional properties for this are\r axis, chart, isFirst and isLast.\r Defaults to: \r\n
function() {\r\n\treturn this.value;\r\n}
","demo":"Linked category names","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-bar-dataLabels--formatter","fullname":"plotOptions.bar.dataLabels.formatter","title":"formatter","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"series-dataLabels--formatter","fullname":"series.dataLabels.formatter","title":"formatter","parent":"series-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--formatter","fullname":"plotOptions.heatmap.dataLabels.formatter","title":"formatter","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a format is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\t\t\t\t\r\n\r\n \r\n \r\n\r\n\r\n \r\n \r\n\r\n
this.percentageStacked series and pies only. The point's percentage of the total.
this.pointThe point object. The point name, if defined, is available \r\nthrough this.point.name.
this.series:The series object. The series name is available \r\nthrough this.series.name.
this.totalStacked series only. The total value at this point's x value.
this.x:The x value.
this.y:The y value.
","deprecated":false},{"name":"chart-options3d-frame","fullname":"chart.options3d.frame","title":"frame","parent":"chart-options3d","isParent":true,"since":"4.0","description":"Provides the option to draw a frame around the charts by defining a bottom, front and back panel. ","demo":"Framed column chart","deprecated":false},{"name":"yAxis-breaks--from","fullname":"yAxis.breaks.from","title":"from","parent":"yAxis-breaks","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.0","description":"The point where the break starts.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands--from","fullname":"xAxis.plotBands.from","title":"from","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","description":"The start position of the plot band in axis units.","demo":"Datetime axis,\n\t\t\tcategorized axis,"},{"name":"xAxis-breaks--from","fullname":"xAxis.breaks.from","title":"from","parent":"xAxis-breaks","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.0","description":"The point where the break starts.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--from","fullname":"yAxis.plotBands.from","title":"from","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","description":"The start position of the plot band in axis units.","demo":"Datetime axis,\n\t\t\tcategorized axis,"},{"name":"plotOptions-funnel","fullname":"plotOptions.funnel","title":"funnel","parent":"plotOptions","isParent":true,"returnType":"Object","since":"3.0","description":"Funnel charts are a type of chart often used to visualize stages in a sales project, where the top are the initial stages with the most clients. It requires that the modules/funnel.js file is loaded.","demo":"Funnel demo","deprecated":false},{"name":"plotOptions-gauge","fullname":"plotOptions.gauge","title":"gauge","parent":"plotOptions","isParent":true,"returnType":"Object","since":"2.3.0","description":"General plotting options for the gauge series type. Requires highcharts-more.js","deprecated":false},{"name":"plotOptions-bar--getExtremesFromAll","fullname":"plotOptions.bar.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--getExtremesFromAll","fullname":"plotOptions.areasplinerange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area--getExtremesFromAll","fullname":"plotOptions.area.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--getExtremesFromAll","fullname":"plotOptions.arearange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge--getExtremesFromAll","fullname":"plotOptions.solidgauge.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--getExtremesFromAll","fullname":"plotOptions.treemap.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--getExtremesFromAll","fullname":"plotOptions.gauge.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line--getExtremesFromAll","fullname":"plotOptions.line.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--getExtremesFromAll","fullname":"plotOptions.column.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--getExtremesFromAll","fullname":"plotOptions.polygon.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--getExtremesFromAll","fullname":"plotOptions.pie.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series--getExtremesFromAll","fullname":"plotOptions.series.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--getExtremesFromAll","fullname":"plotOptions.spline.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--getExtremesFromAll","fullname":"plotOptions.bubble.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--getExtremesFromAll","fullname":"plotOptions.heatmap.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--getExtremesFromAll","fullname":"plotOptions.waterfall.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--getExtremesFromAll","fullname":"plotOptions.scatter.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--getExtremesFromAll","fullname":"plotOptions.boxplot.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--getExtremesFromAll","fullname":"plotOptions.areaspline.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--getExtremesFromAll","fullname":"plotOptions.funnel.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--getExtremesFromAll","fullname":"plotOptions.pyramid.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--getExtremesFromAll","fullname":"plotOptions.columnrange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--getExtremesFromAll","fullname":"plotOptions.errorbar.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"series--getExtremesFromAll","fullname":"series.getExtremesFromAll","title":"getExtremesFromAll","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.6","description":"Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.","demo":"","seeAlso":"","deprecated":false},{"name":"global--getTimezoneOffset","fullname":"global.getTimezoneOffset","title":"getTimezoneOffset","parent":"global","isParent":false,"returnType":"Function","context":"","defaults":"","values":"","since":"4.1.0","description":"A callback to return the time zone offset for a given datetime. It takes the timestamp in terms of milliseconds since January 1 1970, and returns the timezone offset in minutes. This provides a hook for drawing time based charts in specific time zones using their local DST crossover dates, with the help of external libraries. ","demo":" Use moment.js to draw Oslo time regardless of browser locale","seeAlso":"global.timezoneOffset","deprecated":false},{"name":"global","fullname":"global","title":"global","isParent":true,"description":"Global options that don't apply to each chart. These options, like the lang\n\t\toptions, must be set using the Highcharts.setOptions method.\n
Highcharts.setOptions({\n\tglobal: {\n\t\tuseUTC: false\n\t}\n});
"},{"name":"data--googleSpreadsheetKey","fullname":"data.googleSpreadsheetKey","title":"googleSpreadsheetKey","parent":"data","isParent":false,"returnType":"String","defaults":"","values":"","since":"4.0","description":"The key for a Google Spreadsheet to load. See general information on GS.","demo":"Load a Google Spreadsheet","seeAlso":"","deprecated":false},{"name":"data--googleSpreadsheetWorksheet","fullname":"data.googleSpreadsheetWorksheet","title":"googleSpreadsheetWorksheet","parent":"data","isParent":false,"returnType":"String","since":"4.0","description":"The Google Spreadsheet worksheet to use in combination with googleSpreadsheetKey. The available id's from your sheet can be read from https://spreadsheets.google.com/feeds/worksheets/{key}/public/basic","demo":"Load a Google Spreadsheet","deprecated":false},{"name":"yAxis--gridLineColor","fullname":"yAxis.gridLineColor","title":"gridLineColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#D8D8D8","description":"Color of the grid lines extending the ticks across the plot area.","demo":"Green lines","deprecated":false},{"name":"xAxis--gridLineColor","fullname":"xAxis.gridLineColor","title":"gridLineColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#D8D8D8","description":"Color of the grid lines extending the ticks across the plot area.","demo":"Green lines","deprecated":false},{"name":"xAxis--gridLineDashStyle","fullname":"xAxis.gridLineDashStyle","title":"gridLineDashStyle","parent":"xAxis","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dash or dot style of the grid lines. For possible values, see this demonstration.","demo":"Long dashes","deprecated":false},{"name":"yAxis--gridLineDashStyle","fullname":"yAxis.gridLineDashStyle","title":"gridLineDashStyle","parent":"yAxis","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dash or dot style of the grid lines. For possible values, see this demonstration.","demo":"Long dashes","deprecated":false},{"name":"yAxis--gridLineInterpolation","fullname":"yAxis.gridLineInterpolation","title":"gridLineInterpolation","parent":"yAxis","isParent":false,"returnType":"String","defaults":"null","values":"[\"circle\", \"polygon\"]","description":"Polar charts only. Whether the grid lines should draw as a polygon with straight lines between categories, or as circles. Can be either circle or polygon.","demo":"Polygon grid lines, circle and polygon","deprecated":false},{"name":"xAxis--gridLineWidth","fullname":"xAxis.gridLineWidth","title":"gridLineWidth","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the grid lines extending the ticks across the plot area.","demo":"2px lines"},{"name":"yAxis--gridLineWidth","fullname":"yAxis.gridLineWidth","title":"gridLineWidth","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the grid lines extending the ticks across the plot area.","demo":"2px lines"},{"name":"yAxis--gridZIndex","fullname":"yAxis.gridZIndex","title":"gridZIndex","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"1","description":"The Z index of the grid lines.","demo":"A Z index of 4 renders the grid above the graph","deprecated":false},{"name":"xAxis--gridZIndex","fullname":"xAxis.gridZIndex","title":"gridZIndex","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","description":"The Z index of the grid lines.","demo":"A Z index of 4 renders the grid above the graph","deprecated":false},{"name":"plotOptions-waterfall--groupPadding","fullname":"plotOptions.waterfall.groupPadding","title":"groupPadding","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"plotOptions-boxplot--groupPadding","fullname":"plotOptions.boxplot.groupPadding","title":"groupPadding","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupPadding","fullname":"series.groupPadding","title":"groupPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"plotOptions-bar--groupPadding","fullname":"plotOptions.bar.groupPadding","title":"groupPadding","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"plotOptions-column--groupPadding","fullname":"plotOptions.column.groupPadding","title":"groupPadding","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupPadding","fullname":"series.groupPadding","title":"groupPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupPadding","fullname":"series.groupPadding","title":"groupPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupPadding","fullname":"series.groupPadding","title":"groupPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupPadding","fullname":"series.groupPadding","title":"groupPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"plotOptions-columnrange--groupPadding","fullname":"plotOptions.columnrange.groupPadding","title":"groupPadding","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units.","demo":"0.2 by default, \n\t\t\tno group padding - all \n\t\t\tcolumns are evenly spaced"},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--groupZPadding","fullname":"plotOptions.column.groupZPadding","title":"groupZPadding","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--groupZPadding","fullname":"plotOptions.waterfall.groupZPadding","title":"groupZPadding","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--groupZPadding","fullname":"plotOptions.errorbar.groupZPadding","title":"groupZPadding","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--groupZPadding","fullname":"plotOptions.boxplot.groupZPadding","title":"groupZPadding","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--groupZPadding","fullname":"plotOptions.columnrange.groupZPadding","title":"groupZPadding","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--groupZPadding","fullname":"plotOptions.bar.groupZPadding","title":"groupZPadding","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"series--groupZPadding","fullname":"series.groupZPadding","title":"groupZPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--grouping","fullname":"plotOptions.boxplot.grouping","title":"grouping","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--grouping","fullname":"plotOptions.columnrange.grouping","title":"grouping","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series--grouping","fullname":"series.grouping","title":"grouping","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series--grouping","fullname":"series.grouping","title":"grouping","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--grouping","fullname":"plotOptions.waterfall.grouping","title":"grouping","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--grouping","fullname":"plotOptions.bar.grouping","title":"grouping","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series--grouping","fullname":"series.grouping","title":"grouping","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"plotOptions-column--grouping","fullname":"plotOptions.column.grouping","title":"grouping","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series--grouping","fullname":"series.grouping","title":"grouping","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series--grouping","fullname":"series.grouping","title":"grouping","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.","demo":"Grouping disabled","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-polygon-states-hover-halo","fullname":"plotOptions.polygon.states.hover.halo","title":"halo","parent":"plotOptions-polygon-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-gauge-states-hover-halo","fullname":"plotOptions.gauge.states.hover.halo","title":"halo","parent":"plotOptions-gauge-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-bubble-states-hover-halo","fullname":"plotOptions.bubble.states.hover.halo","title":"halo","parent":"plotOptions-bubble-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-areaspline-states-hover-halo","fullname":"plotOptions.areaspline.states.hover.halo","title":"halo","parent":"plotOptions-areaspline-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-column-states-hover-halo","fullname":"plotOptions.column.states.hover.halo","title":"halo","parent":"plotOptions-column-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-funnel-states-hover-halo","fullname":"plotOptions.funnel.states.hover.halo","title":"halo","parent":"plotOptions-funnel-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-spline-states-hover-halo","fullname":"plotOptions.spline.states.hover.halo","title":"halo","parent":"plotOptions-spline-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-line-states-hover-halo","fullname":"plotOptions.line.states.hover.halo","title":"halo","parent":"plotOptions-line-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-treemap-states-hover-halo","fullname":"plotOptions.treemap.states.hover.halo","title":"halo","parent":"plotOptions-treemap-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-arearange-states-hover-halo","fullname":"plotOptions.arearange.states.hover.halo","title":"halo","parent":"plotOptions-arearange-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-series-states-hover-halo","fullname":"plotOptions.series.states.hover.halo","title":"halo","parent":"plotOptions-series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-errorbar-states-hover-halo","fullname":"plotOptions.errorbar.states.hover.halo","title":"halo","parent":"plotOptions-errorbar-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-boxplot-states-hover-halo","fullname":"plotOptions.boxplot.states.hover.halo","title":"halo","parent":"plotOptions-boxplot-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-scatter-states-hover-halo","fullname":"plotOptions.scatter.states.hover.halo","title":"halo","parent":"plotOptions-scatter-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-bar-states-hover-halo","fullname":"plotOptions.bar.states.hover.halo","title":"halo","parent":"plotOptions-bar-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-halo","fullname":"plotOptions.solidgauge.states.hover.halo","title":"halo","parent":"plotOptions-solidgauge-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-waterfall-states-hover-halo","fullname":"plotOptions.waterfall.states.hover.halo","title":"halo","parent":"plotOptions-waterfall-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-columnrange-states-hover-halo","fullname":"plotOptions.columnrange.states.hover.halo","title":"halo","parent":"plotOptions-columnrange-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-pyramid-states-hover-halo","fullname":"plotOptions.pyramid.states.hover.halo","title":"halo","parent":"plotOptions-pyramid-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-area-states-hover-halo","fullname":"plotOptions.area.states.hover.halo","title":"halo","parent":"plotOptions-area-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-heatmap-states-hover-halo","fullname":"plotOptions.heatmap.states.hover.halo","title":"halo","parent":"plotOptions-heatmap-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-halo","fullname":"plotOptions.areasplinerange.states.hover.halo","title":"halo","parent":"plotOptions-areasplinerange-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-pie-states-hover-halo","fullname":"plotOptions.pie.states.hover.halo","title":"halo","parent":"plotOptions-pie-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"series-states-hover-halo","fullname":"series.states.hover.halo","title":"halo","parent":"series-states-hover","isParent":true,"returnType":"Object","since":"4.0","description":"Options for the halo appearing around the hovered point in line-type series as well as outside the hovered slice in pie charts. By default the halo is filled by the current point or series color with an opacity of 0.25. The halo can be disabled by setting the halo option to false.","demo":"Halo options","deprecated":false},{"name":"plotOptions-area-tooltip--headerFormat","fullname":"plotOptions.area.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-tooltip--headerFormat","fullname":"plotOptions.areaspline.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-tooltip--headerFormat","fullname":"plotOptions.scatter.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-tooltip--headerFormat","fullname":"plotOptions.bar.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-tooltip--headerFormat","fullname":"plotOptions.errorbar.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-tooltip--headerFormat","fullname":"plotOptions.columnrange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-tooltip--headerFormat","fullname":"plotOptions.pie.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-tooltip--headerFormat","fullname":"plotOptions.treemap.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","context":"","defaults":"\"\"","values":"","since":"4.1.0","description":"The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-tooltip--headerFormat","fullname":"plotOptions.gauge.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-tooltip--headerFormat","fullname":"plotOptions.heatmap.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--headerFormat","fullname":"plotOptions.areasplinerange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-tooltip--headerFormat","fullname":"plotOptions.polygon.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip--headerFormat","fullname":"plotOptions.column.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-tooltip--headerFormat","fullname":"plotOptions.waterfall.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-tooltip--headerFormat","fullname":"plotOptions.bubble.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-series-tooltip--headerFormat","fullname":"plotOptions.series.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--headerFormat","fullname":"plotOptions.solidgauge.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","context":"","defaults":"\"\"","values":"","since":"4.1.0","description":"The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-tooltip--headerFormat","fullname":"plotOptions.spline.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-tooltip--headerFormat","fullname":"plotOptions.pyramid.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-tooltip--headerFormat","fullname":"plotOptions.funnel.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-tooltip--headerFormat","fullname":"plotOptions.boxplot.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-line-tooltip--headerFormat","fullname":"plotOptions.line.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"series-tooltip--headerFormat","fullname":"series.tooltip.headerFormat","title":"headerFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip--headerFormat","fullname":"plotOptions.arearange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"tooltip--headerFormat","fullname":"tooltip.headerFormat","title":"headerFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"

The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare point.key, series.name, series.color and other members from the point and series objects. The point.key variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the point.key date format can be set using tooltip.xDateFormat.

\r \r\n

Defaults to <span style=\"font-size: 10px\">{point.key}</span><br/>

","demo":"A HTML table in the tooltip","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap","fullname":"plotOptions.heatmap","title":"heatmap","parent":"plotOptions","isParent":true,"returnType":"Object","since":"4.0","description":"

The heatmap series type. This series type is available both in Highcharts and Highmaps.

\r\n\r\n

The colors of each heat map point is usually determined by its value and controlled by settings on the colorAxis.

","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--height","fullname":"plotOptions.spline.states.hover.marker.height","title":"height","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"exporting-buttons-contextButton--height","fullname":"exporting.buttons.contextButton.height","title":"height","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"20","since":"2.0","description":"Pixel height of the buttons.","demo":"Bigger buttons"},{"name":"plotOptions-funnel--height","fullname":"plotOptions.funnel.height","title":"height","parent":"plotOptions-funnel","isParent":false,"returnType":"Number|String","since":"3.0","description":"The height of the funnel or pyramid. If it is a number it defines the pixel height, if it is a percentage string it is the percentage of the plot area height.","demo":"Funnel demo","deprecated":false},{"name":"plotOptions-area-states-hover-marker--height","fullname":"plotOptions.area.states.hover.marker.height","title":"height","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-states-hover-marker--height","fullname":"plotOptions.waterfall.states.hover.marker.height","title":"height","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-states-hover-marker--height","fullname":"plotOptions.bubble.states.hover.marker.height","title":"height","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series--height","fullname":"series.height","title":"height","parent":"series","isParent":false,"returnType":"Number|String","since":"3.0","description":"The height of the funnel or pyramid. If it is a number it defines the pixel height, if it is a percentage string it is the percentage of the plot area height.","demo":"Funnel demo","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--height","fullname":"plotOptions.areaspline.states.hover.marker.height","title":"height","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-states-hover-marker--height","fullname":"plotOptions.treemap.states.hover.marker.height","title":"height","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-marker--height","fullname":"plotOptions.solidgauge.states.hover.marker.height","title":"height","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-area-marker--height","fullname":"plotOptions.area.marker.height","title":"height","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--height","fullname":"plotOptions.pyramid.height","title":"height","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number|String","since":"3.0","description":"The height of the funnel or pyramid. If it is a number it defines the pixel height, if it is a percentage string it is the percentage of the plot area height.","demo":"Funnel demo","deprecated":false},{"name":"navigation-buttonOptions--height","fullname":"navigation.buttonOptions.height","title":"height","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"20","since":"2.0","description":"Pixel height of the buttons.","demo":"Bigger buttons"},{"name":"plotOptions-pie-states-hover-marker--height","fullname":"plotOptions.pie.states.hover.marker.height","title":"height","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-marker--height","fullname":"plotOptions.spline.marker.height","title":"height","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-states-hover-marker--height","fullname":"plotOptions.errorbar.states.hover.marker.height","title":"height","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-states-hover-marker--height","fullname":"plotOptions.pyramid.states.hover.marker.height","title":"height","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--height","fullname":"plotOptions.bar.states.hover.marker.height","title":"height","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-marker--height","fullname":"plotOptions.polygon.marker.height","title":"height","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series--height","fullname":"series.height","title":"height","parent":"series","isParent":false,"returnType":"Number|String","since":"3.0","description":"The height of the funnel or pyramid. If it is a number it defines the pixel height, if it is a percentage string it is the percentage of the plot area height.","demo":"Funnel demo","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-marker--height","fullname":"plotOptions.bubble.marker.height","title":"height","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover-marker--height","fullname":"plotOptions.column.states.hover.marker.height","title":"height","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-series-marker--height","fullname":"plotOptions.series.marker.height","title":"height","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-marker--height","fullname":"plotOptions.scatter.marker.height","title":"height","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"chart--height","fullname":"chart.height","title":"height","parent":"chart","isParent":false,"returnType":"Number","description":"An explicit height for the chart. By default the height is calculated from the offset height of the containing element, or 400 pixels if the containing element's height is 0.","demo":"500px height","deprecated":false},{"name":"plotOptions-heatmap-states-hover-marker--height","fullname":"plotOptions.heatmap.states.hover.marker.height","title":"height","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-states-hover-marker--height","fullname":"plotOptions.funnel.states.hover.marker.height","title":"height","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-states-hover-marker--height","fullname":"plotOptions.polygon.states.hover.marker.height","title":"height","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-line-states-hover-marker--height","fullname":"plotOptions.line.states.hover.marker.height","title":"height","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-marker--height","fullname":"plotOptions.areasplinerange.states.hover.marker.height","title":"height","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-series-states-hover-marker--height","fullname":"plotOptions.series.states.hover.marker.height","title":"height","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--height","fullname":"series.marker.height","title":"height","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--height","fullname":"series.data.marker.height","title":"height","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-line-marker--height","fullname":"plotOptions.line.marker.height","title":"height","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-states-hover-marker--height","fullname":"plotOptions.boxplot.states.hover.marker.height","title":"height","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-marker--height","fullname":"plotOptions.areaspline.marker.height","title":"height","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--height","fullname":"plotOptions.columnrange.states.hover.marker.height","title":"height","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--height","fullname":"series.states.hover.marker.height","title":"height","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--height","fullname":"plotOptions.scatter.states.hover.marker.height","title":"height","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-states-hover-marker--height","fullname":"plotOptions.arearange.states.hover.marker.height","title":"height","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-states-hover-marker--height","fullname":"plotOptions.gauge.states.hover.marker.height","title":"height","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a width must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-pyramid-events--hide","fullname":"plotOptions.pyramid.events.hide","title":"hide","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-column-events--hide","fullname":"plotOptions.column.events.hide","title":"hide","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-treemap-events--hide","fullname":"plotOptions.treemap.events.hide","title":"hide","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-columnrange-events--hide","fullname":"plotOptions.columnrange.events.hide","title":"hide","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-boxplot-events--hide","fullname":"plotOptions.boxplot.events.hide","title":"hide","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-areaspline-events--hide","fullname":"plotOptions.areaspline.events.hide","title":"hide","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-bubble-events--hide","fullname":"plotOptions.bubble.events.hide","title":"hide","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-series-events--hide","fullname":"plotOptions.series.events.hide","title":"hide","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-arearange-events--hide","fullname":"plotOptions.arearange.events.hide","title":"hide","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-pie-events--hide","fullname":"plotOptions.pie.events.hide","title":"hide","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-line-events--hide","fullname":"plotOptions.line.events.hide","title":"hide","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-errorbar-events--hide","fullname":"plotOptions.errorbar.events.hide","title":"hide","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-areasplinerange-events--hide","fullname":"plotOptions.areasplinerange.events.hide","title":"hide","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-bar-events--hide","fullname":"plotOptions.bar.events.hide","title":"hide","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-heatmap-events--hide","fullname":"plotOptions.heatmap.events.hide","title":"hide","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-solidgauge-events--hide","fullname":"plotOptions.solidgauge.events.hide","title":"hide","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-gauge-events--hide","fullname":"plotOptions.gauge.events.hide","title":"hide","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-polygon-events--hide","fullname":"plotOptions.polygon.events.hide","title":"hide","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-scatter-events--hide","fullname":"plotOptions.scatter.events.hide","title":"hide","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-funnel-events--hide","fullname":"plotOptions.funnel.events.hide","title":"hide","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-area-events--hide","fullname":"plotOptions.area.events.hide","title":"hide","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-spline-events--hide","fullname":"plotOptions.spline.events.hide","title":"hide","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-waterfall-events--hide","fullname":"plotOptions.waterfall.events.hide","title":"hide","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"series-events--hide","fullname":"series.events.hide","title":"hide","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling .hide().","demo":"Alert when the series is hidden by clicking \r\n\t\t\tthe legend item","deprecated":false},{"name":"plotOptions-series-tooltip--hideDelay","fullname":"plotOptions.series.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-tooltip--hideDelay","fullname":"plotOptions.columnrange.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--hideDelay","fullname":"tooltip.hideDelay","title":"hideDelay","parent":"tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--hideDelay","fullname":"plotOptions.areasplinerange.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-tooltip--hideDelay","fullname":"plotOptions.areaspline.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-tooltip--hideDelay","fullname":"plotOptions.line.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-tooltip--hideDelay","fullname":"plotOptions.treemap.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip--hideDelay","fullname":"plotOptions.arearange.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-tooltip--hideDelay","fullname":"plotOptions.area.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-tooltip--hideDelay","fullname":"plotOptions.scatter.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-tooltip--hideDelay","fullname":"plotOptions.polygon.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-tooltip--hideDelay","fullname":"plotOptions.bar.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-tooltip--hideDelay","fullname":"plotOptions.waterfall.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-tooltip--hideDelay","fullname":"plotOptions.bubble.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-tooltip--hideDelay","fullname":"plotOptions.funnel.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-tooltip--hideDelay","fullname":"plotOptions.pyramid.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-tooltip--hideDelay","fullname":"plotOptions.pie.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-tooltip--hideDelay","fullname":"plotOptions.gauge.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-tooltip--hideDelay","fullname":"plotOptions.heatmap.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-tooltip--hideDelay","fullname":"plotOptions.spline.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--hideDelay","fullname":"plotOptions.solidgauge.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip--hideDelay","fullname":"plotOptions.column.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-tooltip--hideDelay","fullname":"plotOptions.boxplot.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--hideDelay","fullname":"series.tooltip.hideDelay","title":"hideDelay","parent":"series-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-tooltip--hideDelay","fullname":"plotOptions.errorbar.tooltip.hideDelay","title":"hideDelay","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Number","defaults":"500","values":"","since":"3.0","description":"The number of milliseconds to wait until the tooltip is hidden when mouse out from a point or chart. ","demo":"","seeAlso":"","deprecated":false},{"name":"loading--hideDuration","fullname":"loading.hideDuration","title":"hideDuration","parent":"loading","isParent":false,"returnType":"Number","defaults":"100","since":"1.2.0","description":"The duration in milliseconds of the fade out effect.","demo":"Fade in and out over a second"},{"name":"series-data--high","fullname":"series.data.high","title":"high","parent":"series-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series-data--high","fullname":"series.data.high","title":"high","parent":"series-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series-data--high","fullname":"series.data.high","title":"high","parent":"series-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series-data--high","fullname":"series.data.high","title":"high","parent":"series-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series-data--high","fullname":"series.data.high","title":"high","parent":"series-data","isParent":false,"returnType":"Number","description":"The high value for each data point, signifying the highest value in the sample set. The top whisker is drawn here."},{"name":"plotOptions-polygon-marker-states-hover","fullname":"plotOptions.polygon.marker.states.hover","title":"hover","parent":"plotOptions-polygon-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-areaspline-states-hover","fullname":"plotOptions.areaspline.states.hover","title":"hover","parent":"plotOptions-areaspline-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-areaspline-marker-states-hover","fullname":"plotOptions.areaspline.marker.states.hover","title":"hover","parent":"plotOptions-areaspline-marker-states","isParent":true},{"name":"plotOptions-line-marker-states-hover","fullname":"plotOptions.line.marker.states.hover","title":"hover","parent":"plotOptions-line-marker-states","isParent":true},{"name":"plotOptions-series-states-hover","fullname":"plotOptions.series.states.hover","title":"hover","parent":"plotOptions-series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-arearange-states-hover","fullname":"plotOptions.arearange.states.hover","title":"hover","parent":"plotOptions-arearange-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-spline-states-hover","fullname":"plotOptions.spline.states.hover","title":"hover","parent":"plotOptions-spline-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-errorbar-states-hover","fullname":"plotOptions.errorbar.states.hover","title":"hover","parent":"plotOptions-errorbar-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"plotOptions-series-marker-states-hover","fullname":"plotOptions.series.marker.states.hover","title":"hover","parent":"plotOptions-series-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-heatmap-states-hover","fullname":"plotOptions.heatmap.states.hover","title":"hover","parent":"plotOptions-heatmap-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-polygon-states-hover","fullname":"plotOptions.polygon.states.hover","title":"hover","parent":"plotOptions-polygon-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-column-states-hover","fullname":"plotOptions.column.states.hover","title":"hover","parent":"plotOptions-column-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-treemap-states-hover","fullname":"plotOptions.treemap.states.hover","title":"hover","parent":"plotOptions-treemap-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-line-states-hover","fullname":"plotOptions.line.states.hover","title":"hover","parent":"plotOptions-line-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover","fullname":"plotOptions.areasplinerange.states.hover","title":"hover","parent":"plotOptions-areasplinerange-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-bar-states-hover","fullname":"plotOptions.bar.states.hover","title":"hover","parent":"plotOptions-bar-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-waterfall-states-hover","fullname":"plotOptions.waterfall.states.hover","title":"hover","parent":"plotOptions-waterfall-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-bubble-states-hover","fullname":"plotOptions.bubble.states.hover","title":"hover","parent":"plotOptions-bubble-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-columnrange-states-hover","fullname":"plotOptions.columnrange.states.hover","title":"hover","parent":"plotOptions-columnrange-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-area-marker-states-hover","fullname":"plotOptions.area.marker.states.hover","title":"hover","parent":"plotOptions-area-marker-states","isParent":true},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"plotOptions-spline-marker-states-hover","fullname":"plotOptions.spline.marker.states.hover","title":"hover","parent":"plotOptions-spline-marker-states","isParent":true},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"plotOptions-scatter-states-hover","fullname":"plotOptions.scatter.states.hover","title":"hover","parent":"plotOptions-scatter-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-pyramid-states-hover","fullname":"plotOptions.pyramid.states.hover","title":"hover","parent":"plotOptions-pyramid-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-funnel-states-hover","fullname":"plotOptions.funnel.states.hover","title":"hover","parent":"plotOptions-funnel-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"plotOptions-gauge-states-hover","fullname":"plotOptions.gauge.states.hover","title":"hover","parent":"plotOptions-gauge-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-solidgauge-states-hover","fullname":"plotOptions.solidgauge.states.hover","title":"hover","parent":"plotOptions-solidgauge-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-boxplot-states-hover","fullname":"plotOptions.boxplot.states.hover","title":"hover","parent":"plotOptions-boxplot-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-bubble-marker-states-hover","fullname":"plotOptions.bubble.marker.states.hover","title":"hover","parent":"plotOptions-bubble-marker-states","isParent":true},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"plotOptions-scatter-marker-states-hover","fullname":"plotOptions.scatter.marker.states.hover","title":"hover","parent":"plotOptions-scatter-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"series-data-marker-states-hover","fullname":"series.data.marker.states.hover","title":"hover","parent":"series-data-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"series-states-hover","fullname":"series.states.hover","title":"hover","parent":"series-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-area-states-hover","fullname":"plotOptions.area.states.hover","title":"hover","parent":"plotOptions-area-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-pie-states-hover","fullname":"plotOptions.pie.states.hover","title":"hover","parent":"plotOptions-pie-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series-marker-states-hover","fullname":"series.marker.states.hover","title":"hover","parent":"series-marker-states","isParent":true},{"name":"credits--href","fullname":"credits.href","title":"href","parent":"credits","isParent":false,"returnType":"String","defaults":"http://www.highcharts.com","description":"The URL for the credits label.","demo":"Custom URL and text"},{"name":"labels-items--html","fullname":"labels.items.html","title":"html","parent":"labels-items","isParent":false,"returnType":"String","description":"Inner HTML or text for the label."},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"yAxis-plotLines--id","fullname":"yAxis.plotLines.id","title":"id","parent":"yAxis-plotLines","isParent":false,"returnType":"String","description":"An id used for identifying the plot line in Axis.removePlotLine.","demo":"Remove plot line by id"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--id","fullname":"yAxis.plotBands.id","title":"id","parent":"yAxis-plotBands","isParent":false,"returnType":"String","description":"An id used for identifying the plot band in Axis.removePlotBand.","demo":"Remove plot band by id"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"xAxis--id","fullname":"xAxis.id","title":"id","parent":"xAxis","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the axis. This can be used after render time to get a pointer to the axis object through chart.get().","demo":"Get the object"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"xAxis-plotLines--id","fullname":"xAxis.plotLines.id","title":"id","parent":"xAxis-plotLines","isParent":false,"returnType":"String","description":"An id used for identifying the plot line in Axis.removePlotLine.","demo":"Remove plot line by id"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"yAxis--id","fullname":"yAxis.id","title":"id","parent":"yAxis","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the axis. This can be used after render time to get a pointer to the axis object through chart.get().","demo":"Get the object"},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.2.0","description":"An id for the series. This can be used after render time to get a pointer to the series object through chart.get().","demo":"Get series by id","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands--id","fullname":"xAxis.plotBands.id","title":"id","parent":"xAxis-plotBands","isParent":false,"returnType":"String","description":"An id used for identifying the plot band in Axis.removePlotBand.","demo":"Remove plot band by id"},{"name":"series-data--id","fullname":"series.data.id","title":"id","parent":"series-data","isParent":false,"returnType":"String","since":"1.2.0","description":"An id for the point. This can be used after render time to get a pointer to the point object through chart.get().","demo":"Remove an id'd point"},{"name":"plotOptions-pie--ignoreHiddenPoint","fullname":"plotOptions.pie.ignoreHiddenPoint","title":"ignoreHiddenPoint","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"

Equivalent to chart.ignoreHiddenSeries, this option tells whether the series shall be redrawn as if the hidden point were null.

\r\n

The default value changed from false to true with Highcharts 3.0.

","demo":"True, the hiddden point is ignored","seeAlso":"","deprecated":false},{"name":"series--ignoreHiddenPoint","fullname":"series.ignoreHiddenPoint","title":"ignoreHiddenPoint","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"

Equivalent to chart.ignoreHiddenSeries, this option tells whether the series shall be redrawn as if the hidden point were null.

\r\n

The default value changed from false to true with Highcharts 3.0.

","demo":"True, the hiddden point is ignored","seeAlso":"","deprecated":false},{"name":"chart--ignoreHiddenSeries","fullname":"chart.ignoreHiddenSeries","title":"ignoreHiddenSeries","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.0","description":"If true, the axes will scale to the remaining visible series once one series is hidden. If false, hiding and showing a series will not affect the axes or the other series. For stacks, once one series within the stack is hidden, the rest of the stack will close in around it even if the axis is not affected.","demo":"True by default\n\t\t\tfalse,\n\t\t\ttrue with stack"},{"name":"legend-navigation--inactiveColor","fullname":"legend.navigation.inactiveColor","title":"inactiveColor","parent":"legend-navigation","isParent":false,"returnType":"Color","defaults":"#CCC","since":"2.2.4","description":"The color of the inactive up or down arrow in the legend page navigation. .","demo":"\n\t\t\t\tLegend page navigation demonstrated"},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--index","fullname":"series.index","title":"index","parent":"series","isParent":false,"returnType":"Number","since":"2.3.0","description":"The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--innerRadius","fullname":"series.data.innerRadius","title":"innerRadius","parent":"series-data","isParent":false,"returnType":"Number|String","context":"","defaults":"","values":"","since":"4.1.6","description":"The inner radius of an individual point in a solid gauge. Can be given as a number (pixels) or percentage string.","demo":"Individual radius and innerRadius","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--innerRadius","fullname":"yAxis.plotBands.innerRadius","title":"innerRadius","parent":"yAxis-plotBands","isParent":false,"returnType":"Number|String","defaults":"null","since":"2.3","description":"In a gauge chart, this option determines the inner radius of the plot band that stretches along the perimeter. It can be given as a percentage string, like \"100%\", or as a pixel number, like 100. By default, the inner radius is controlled by the thickness option.","demo":"Gauge plot band","deprecated":false},{"name":"series--innerSize","fullname":"series.innerSize","title":"innerSize","parent":"series","isParent":false,"returnType":"String|Number","defaults":"0","since":"2.0","description":"

The size of the inner diameter for the pie. A size greater than 0 renders a donut chart. Can be a percentage or pixel value. Percentages are relative to the pie size. Pixel values are given as integers.

\r\n\r\n

Note: in Highcharts < 4.1.2, the percentage was relative to the plot area, not the pie size.

","demo":"80px inner size,\r\n\t\t\t50% of the plot area,\r\n\t\t\t3D donut.","deprecated":false},{"name":"plotOptions-pie--innerSize","fullname":"plotOptions.pie.innerSize","title":"innerSize","parent":"plotOptions-pie","isParent":false,"returnType":"String|Number","defaults":"0","since":"2.0","description":"

The size of the inner diameter for the pie. A size greater than 0 renders a donut chart. Can be a percentage or pixel value. Percentages are relative to the pie size. Pixel values are given as integers.

\r\n\r\n

Note: in Highcharts < 4.1.2, the percentage was relative to the plot area, not the pie size.

","demo":"80px inner size,\r\n\t\t\t50% of the plot area,\r\n\t\t\t3D donut.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-spline-dataLabels--inside","fullname":"plotOptions.spline.dataLabels.inside","title":"inside","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-funnel-dataLabels--inside","fullname":"plotOptions.funnel.dataLabels.inside","title":"inside","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.0","description":"Whether to align the data label inside the box or to the actual value point. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--inside","fullname":"plotOptions.areaspline.dataLabels.inside","title":"inside","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-area-dataLabels--inside","fullname":"plotOptions.area.dataLabels.inside","title":"inside","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--inside","fullname":"plotOptions.heatmap.dataLabels.inside","title":"inside","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-polygon-dataLabels--inside","fullname":"plotOptions.polygon.dataLabels.inside","title":"inside","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-series-dataLabels--inside","fullname":"plotOptions.series.dataLabels.inside","title":"inside","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--inside","fullname":"plotOptions.solidgauge.dataLabels.inside","title":"inside","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--inside","fullname":"plotOptions.columnrange.dataLabels.inside","title":"inside","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-gauge-dataLabels--inside","fullname":"plotOptions.gauge.dataLabels.inside","title":"inside","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--inside","fullname":"plotOptions.areasplinerange.dataLabels.inside","title":"inside","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--inside","fullname":"plotOptions.waterfall.dataLabels.inside","title":"inside","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--inside","fullname":"plotOptions.pyramid.dataLabels.inside","title":"inside","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-line-dataLabels--inside","fullname":"plotOptions.line.dataLabels.inside","title":"inside","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-column-dataLabels--inside","fullname":"plotOptions.column.dataLabels.inside","title":"inside","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-scatter-dataLabels--inside","fullname":"plotOptions.scatter.dataLabels.inside","title":"inside","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-treemap-dataLabels--inside","fullname":"plotOptions.treemap.dataLabels.inside","title":"inside","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.0","description":"Whether to align the data label inside the box or to the actual value point. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-pie-dataLabels--inside","fullname":"plotOptions.pie.dataLabels.inside","title":"inside","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-bar-dataLabels--inside","fullname":"plotOptions.bar.dataLabels.inside","title":"inside","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-bubble-dataLabels--inside","fullname":"plotOptions.bubble.dataLabels.inside","title":"inside","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series-dataLabels--inside","fullname":"series.dataLabels.inside","title":"inside","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"plotOptions-arearange-dataLabels--inside","fullname":"plotOptions.arearange.dataLabels.inside","title":"inside","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","since":"3.0","description":"For points with an extent, like columns, whether to align the data label inside the box or to the actual value point. Defaults to false in most cases, true in stacked columns.","deprecated":false},{"name":"series--interactByLeaf","fullname":"series.interactByLeaf","title":"interactByLeaf","parent":"series","isParent":false,"returnType":"Boolean","values":"false, true","since":"4.1.2","description":"This option decides if the user can interact with the parent nodes or just the leaf nodes. When this option is undefined, it will be true by default. However when allowDrillToNode is true, then it will be false by default.","demo":"false, interactByLeaf and allowDrillToNode is true","deprecated":false},{"name":"plotOptions-treemap--interactByLeaf","fullname":"plotOptions.treemap.interactByLeaf","title":"interactByLeaf","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","values":"false, true","since":"4.1.2","description":"This option decides if the user can interact with the parent nodes or just the leaf nodes. When this option is undefined, it will be true by default. However when allowDrillToNode is true, then it will be false by default.","demo":"false, interactByLeaf and allowDrillToNode is true","deprecated":false},{"name":"lang--invalidDate","fullname":"lang.invalidDate","title":"invalidDate","parent":"lang","isParent":false,"returnType":"String","context":"","defaults":"","values":"","since":"4.1.8","description":"What to show in a date field for invalid dates. Defaults to an empty string.","demo":"","seeAlso":"","deprecated":false},{"name":"chart--inverted","fullname":"chart.inverted","title":"inverted","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"false","since":"","description":"Whether to invert the axes so that the x axis is vertical and y axis is horizontal.\r When true, the x axis is reversed by default. If a bar series is present in the chart,\r it will be inverted automatically.","demo":"Inverted line","seeAlso":"","deprecated":false},{"name":"series-data--isIntermediateSum","fullname":"series.data.isIntermediateSum","title":"isIntermediateSum","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"When this property is true, the points acts as a summary column for the values added or substracted since the last intermediate sum, or since the start of the series. The y value is ignored.","demo":" Waterfall","seeAlso":"","deprecated":false},{"name":"series-data--isSum","fullname":"series.data.isSum","title":"isSum","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"When this property is true, the point display the total sum across the entire series. The y value is ignored.","demo":"Waterfall","seeAlso":"","deprecated":false},{"name":"data--itemDelimiter","fullname":"data.itemDelimiter","title":"itemDelimiter","parent":"data","isParent":false,"returnType":"String","defaults":"","values":"","since":"4.0","description":"Item or cell delimiter for parsing CSV. Defaults to the tab character \\t if a tab character is found in the CSV string, if not it defaults to ,.","demo":"Delimiters","seeAlso":"","deprecated":false},{"name":"legend--itemDistance","fullname":"legend.itemDistance","title":"itemDistance","parent":"legend","isParent":false,"returnType":"Number","defaults":"20","since":"3.0.3","description":"In a legend with horizontal layout, the itemDistance defines the pixel distance between each item. ","demo":"50px item distance","deprecated":false},{"name":"legend--itemHiddenStyle","fullname":"legend.itemHiddenStyle","title":"itemHiddenStyle","parent":"legend","isParent":false,"returnType":"CSSObject","description":"CSS styles for each legend item when the corresponding series or point is hidden. Only a subset of CSS is supported, notably those options related to text. Properties are inherited from style unless overridden here. Defaults to:\r\n
itemHiddenStyle: {\r\n\tcolor: '#CCC'\r\n}
","demo":"Darker gray color","deprecated":false},{"name":"legend--itemHoverStyle","fullname":"legend.itemHoverStyle","title":"itemHoverStyle","parent":"legend","isParent":false,"returnType":"CSSObject","description":"CSS styles for each legend item in hover mode. Only a subset of CSS is supported, notably those options related to text. Properties are inherited from style unless overridden here. Defaults to:\r\n
itemHoverStyle: {\r\n\tcolor: '#000'\r\n}
","demo":"Red on hover","deprecated":false},{"name":"legend--itemMarginBottom","fullname":"legend.itemMarginBottom","title":"itemMarginBottom","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.0","description":"The pixel bottom margin for each legend item.","demo":"\r\n\t\t\t\tPadding and item margins demonstrated","deprecated":false},{"name":"legend--itemMarginTop","fullname":"legend.itemMarginTop","title":"itemMarginTop","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"2.2.0","description":"The pixel top margin for each legend item.","demo":"\r\n\t\t\t\tPadding and item margins demonstrated","deprecated":false},{"name":"legend--itemStyle","fullname":"legend.itemStyle","title":"itemStyle","parent":"legend","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#333333\", \"cursor\": \"pointer\", \"fontSize\": \"12px\", \"fontWeight\": \"bold\" }","description":"CSS styles for each legend item. Only a subset of CSS is supported, notably those options related to text.","demo":"Bold black text","deprecated":false},{"name":"legend--itemWidth","fullname":"legend.itemWidth","title":"itemWidth","parent":"legend","isParent":false,"returnType":"Number","since":"2.0","description":"The width for each legend item. This is useful in a horizontal layout with many items when you want the items to align vertically. .","demo":"Null by default,\n\t\t\t80 for aligned legend items"},{"name":"labels-items","fullname":"labels.items","title":"items","parent":"labels","isParent":true,"returnType":"Array","description":"A HTML label that can be positioned anywhere in the chart area.","deprecated":false},{"name":"plotOptions-polygon--keys","fullname":"plotOptions.polygon.keys","title":"keys","parent":"plotOptions-polygon","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-treemap--keys","fullname":"plotOptions.treemap.keys","title":"keys","parent":"plotOptions-treemap","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-columnrange--keys","fullname":"plotOptions.columnrange.keys","title":"keys","parent":"plotOptions-columnrange","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-errorbar--keys","fullname":"plotOptions.errorbar.keys","title":"keys","parent":"plotOptions-errorbar","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-bubble--keys","fullname":"plotOptions.bubble.keys","title":"keys","parent":"plotOptions-bubble","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-funnel--keys","fullname":"plotOptions.funnel.keys","title":"keys","parent":"plotOptions-funnel","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-solidgauge--keys","fullname":"plotOptions.solidgauge.keys","title":"keys","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-area--keys","fullname":"plotOptions.area.keys","title":"keys","parent":"plotOptions-area","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-pyramid--keys","fullname":"plotOptions.pyramid.keys","title":"keys","parent":"plotOptions-pyramid","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-boxplot--keys","fullname":"plotOptions.boxplot.keys","title":"keys","parent":"plotOptions-boxplot","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-pie--keys","fullname":"plotOptions.pie.keys","title":"keys","parent":"plotOptions-pie","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-line--keys","fullname":"plotOptions.line.keys","title":"keys","parent":"plotOptions-line","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-scatter--keys","fullname":"plotOptions.scatter.keys","title":"keys","parent":"plotOptions-scatter","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-bar--keys","fullname":"plotOptions.bar.keys","title":"keys","parent":"plotOptions-bar","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-arearange--keys","fullname":"plotOptions.arearange.keys","title":"keys","parent":"plotOptions-arearange","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-gauge--keys","fullname":"plotOptions.gauge.keys","title":"keys","parent":"plotOptions-gauge","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-areaspline--keys","fullname":"plotOptions.areaspline.keys","title":"keys","parent":"plotOptions-areaspline","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-heatmap--keys","fullname":"plotOptions.heatmap.keys","title":"keys","parent":"plotOptions-heatmap","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-spline--keys","fullname":"plotOptions.spline.keys","title":"keys","parent":"plotOptions-spline","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-column--keys","fullname":"plotOptions.column.keys","title":"keys","parent":"plotOptions-column","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-series--keys","fullname":"plotOptions.series.keys","title":"keys","parent":"plotOptions-series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-waterfall--keys","fullname":"plotOptions.waterfall.keys","title":"keys","parent":"plotOptions-waterfall","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"plotOptions-areasplinerange--keys","fullname":"plotOptions.areasplinerange.keys","title":"keys","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"series--keys","fullname":"series.keys","title":"keys","parent":"series","isParent":false,"returnType":"Array","since":"4.1.6","description":"An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.","demo":"An extended data array with keys","seeAlso":".data\">series.data","deprecated":false},{"name":"yAxis-plotLines-label","fullname":"yAxis.plotLines.label","title":"label","parent":"yAxis-plotLines","isParent":true,"description":"Text labels for the plot bands"},{"name":"xAxis-plotBands-label","fullname":"xAxis.plotBands.label","title":"label","parent":"xAxis-plotBands","isParent":true,"description":"Text labels for the plot bands"},{"name":"xAxis-plotLines-label","fullname":"xAxis.plotLines.label","title":"label","parent":"xAxis-plotLines","isParent":true,"description":"Text labels for the plot bands"},{"name":"yAxis-plotBands-label","fullname":"yAxis.plotBands.label","title":"label","parent":"yAxis-plotBands","isParent":true,"description":"Text labels for the plot bands"},{"name":"legend--labelFormat","fullname":"legend.labelFormat","title":"labelFormat","parent":"legend","isParent":false,"returnType":"String","defaults":"{name}","since":"1.3","description":"A format string for each legend label. Available variables relates to properties on the series, or the point in case of pies.","deprecated":false},{"name":"legend--labelFormatter","fullname":"legend.labelFormatter","title":"labelFormatter","parent":"legend","isParent":false,"returnType":"Function","description":"Callback function to format each of the series' labels. The this keyword refers to the series object, or the point object in case of pie charts. By default the series or point name is printed.","demo":"Add text","deprecated":false},{"name":"loading--labelStyle","fullname":"loading.labelStyle","title":"labelStyle","parent":"loading","isParent":false,"returnType":"CSSObject","defaults":"{ \"fontWeight\": \"bold\", \"position\": \"relative\", \"top\": \"45%\" }","since":"1.2.0","description":"CSS styles for the loading label span.","demo":"Vertically centered","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--labelrank","fullname":"series.data.labelrank","title":"labelrank","parent":"series-data","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"The rank for this point's data label in case of collision. If two data labels are about to overlap, only the one with the highest labelrank will be drawn.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels","fullname":"xAxis.labels","title":"labels","parent":"xAxis","isParent":true,"description":"The axis labels show the number or category for each tick."},{"name":"labels","fullname":"labels","title":"labels","isParent":true,"description":"HTML labels that can be positioned anywhere in the chart area.","deprecated":false},{"name":"yAxis-labels","fullname":"yAxis.labels","title":"labels","parent":"yAxis","isParent":true,"deprecated":false},{"name":"lang","fullname":"lang","title":"lang","isParent":true,"description":"Language object. The language object is global and it can't\n\t\tbe set on each chart initiation. Instead, use Highcharts.setOptions to\n\t\tset it before any chart is initiated. \n
Highcharts.setOptions({\n\tlang: {\n\t\tmonths: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin',  'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],\n\t\tweekdays: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']\n\t}\n});
"},{"name":"legend--layout","fullname":"legend.layout","title":"layout","parent":"legend","isParent":false,"returnType":"String","defaults":"horizontal","values":"[\"horizontal\", \"vertical\"]","description":"The layout of the legend items. Can be one of \"horizontal\" or \"vertical\".","demo":"Horizontal by default,\n\t\t\tvertical"},{"name":"series-levels--layoutAlgorithm","fullname":"series.levels.layoutAlgorithm","title":"layoutAlgorithm","parent":"series-levels","isParent":false,"returnType":"String","values":"[\"sliceAndDice\", \"stripes\", \"squarified\", \"strip\"]","since":"4.1.0","description":"Can set the layoutAlgorithm option on a specific level. ","deprecated":false},{"name":"plotOptions-treemap--layoutAlgorithm","fullname":"plotOptions.treemap.layoutAlgorithm","title":"layoutAlgorithm","parent":"plotOptions-treemap","isParent":false,"returnType":"String","defaults":"sliceAndDice","values":"[\"sliceAndDice\", \"stripes\", \"squarified\", \"strip\"]","since":"4.1.0","description":"This option decides which algorithm is used for setting position and dimensions of the points. Can be one of sliceAndDice, stripes, squarified or strip. ","demo":"sliceAndDice by default, stripes, squarified, strip","seeAlso":"How to write your own algorithm","deprecated":false},{"name":"plotOptions-treemap-levels--layoutAlgorithm","fullname":"plotOptions.treemap.levels.layoutAlgorithm","title":"layoutAlgorithm","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"String","values":"[\"sliceAndDice\", \"stripes\", \"squarified\", \"strip\"]","since":"4.1.0","description":"Can set the layoutAlgorithm option on a specific level. ","deprecated":false},{"name":"series--layoutAlgorithm","fullname":"series.layoutAlgorithm","title":"layoutAlgorithm","parent":"series","isParent":false,"returnType":"String","defaults":"sliceAndDice","values":"[\"sliceAndDice\", \"stripes\", \"squarified\", \"strip\"]","since":"4.1.0","description":"This option decides which algorithm is used for setting position and dimensions of the points. Can be one of sliceAndDice, stripes, squarified or strip. ","demo":"sliceAndDice by default, stripes, squarified, strip","seeAlso":"How to write your own algorithm","deprecated":false},{"name":"series-levels--layoutStartingDirection","fullname":"series.levels.layoutStartingDirection","title":"layoutStartingDirection","parent":"series-levels","isParent":false,"returnType":"String","values":"[\"vertical\", \"horizontal\"]","since":"4.1.0","description":"Can set the layoutStartingDirection option on a specific level.","deprecated":false},{"name":"plotOptions-treemap-levels--layoutStartingDirection","fullname":"plotOptions.treemap.levels.layoutStartingDirection","title":"layoutStartingDirection","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"String","values":"[\"vertical\", \"horizontal\"]","since":"4.1.0","description":"Can set the layoutStartingDirection option on a specific level.","deprecated":false},{"name":"series--layoutStartingDirection","fullname":"series.layoutStartingDirection","title":"layoutStartingDirection","parent":"series","isParent":false,"returnType":"String","defaults":"vertical","values":"[\"vertical\", \"horizontal\"]","since":"4.1.0","description":"Defines which direction the layout algorithm will start drawing. Possible values are \"vertical\" and \"horizontal\".","deprecated":false},{"name":"plotOptions-treemap--layoutStartingDirection","fullname":"plotOptions.treemap.layoutStartingDirection","title":"layoutStartingDirection","parent":"plotOptions-treemap","isParent":false,"returnType":"String","defaults":"vertical","values":"[\"vertical\", \"horizontal\"]","since":"4.1.0","description":"Defines which direction the layout algorithm will start drawing. Possible values are \"vertical\" and \"horizontal\".","deprecated":false},{"name":"legend","fullname":"legend","title":"legend","isParent":true,"description":"

The legend is a box containing a symbol and name for each series item or point item in the chart. Each series (or points in case of pie charts) is represented by a symbol and its name in the legend.

\r\n\r\n

It is also possible to override the symbol creator function and create custom legend symbols.

","deprecated":false},{"name":"series-data--legendIndex","fullname":"series.data.legendIndex","title":"legendIndex","parent":"series-data","isParent":false,"returnType":"Number","description":"The sequential index of the data point in the legend.","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series-data--legendIndex","fullname":"series.data.legendIndex","title":"legendIndex","parent":"series-data","isParent":false,"returnType":"Number","description":"The sequential index of the data point in the legend.","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series-data--legendIndex","fullname":"series.data.legendIndex","title":"legendIndex","parent":"series-data","isParent":false,"returnType":"Number","description":"The sequential index of the data point in the legend.","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend. .","seeAlso":"legend.reversed, yAxis.reversedStacks","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-areasplinerange-events--legendItemClick","fullname":"plotOptions.areasplinerange.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-series-events--legendItemClick","fullname":"plotOptions.series.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-treemap-events--legendItemClick","fullname":"plotOptions.treemap.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-waterfall-events--legendItemClick","fullname":"plotOptions.waterfall.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-line-events--legendItemClick","fullname":"plotOptions.line.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-heatmap-events--legendItemClick","fullname":"plotOptions.heatmap.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-area-events--legendItemClick","fullname":"plotOptions.area.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-funnel-events--legendItemClick","fullname":"plotOptions.funnel.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-spline-events--legendItemClick","fullname":"plotOptions.spline.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"plotOptions-arearange-events--legendItemClick","fullname":"plotOptions.arearange.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-pyramid-events--legendItemClick","fullname":"plotOptions.pyramid.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"plotOptions-errorbar-events--legendItemClick","fullname":"plotOptions.errorbar.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-bar-events--legendItemClick","fullname":"plotOptions.bar.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-columnrange-events--legendItemClick","fullname":"plotOptions.columnrange.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-pie-events--legendItemClick","fullname":"plotOptions.pie.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-solidgauge-events--legendItemClick","fullname":"plotOptions.solidgauge.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","since":"1.2.0","description":"Not applicable to pies, as the legend item is per point. See point.events."},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-areaspline-events--legendItemClick","fullname":"plotOptions.areaspline.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-column-events--legendItemClick","fullname":"plotOptions.column.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-bubble-events--legendItemClick","fullname":"plotOptions.bubble.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-scatter-events--legendItemClick","fullname":"plotOptions.scatter.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-gauge-events--legendItemClick","fullname":"plotOptions.gauge.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-polygon-events--legendItemClick","fullname":"plotOptions.polygon.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"plotOptions-boxplot-events--legendItemClick","fullname":"plotOptions.boxplot.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-events--legendItemClick","fullname":"series.events.legendItemClick","title":"legendItemClick","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, event, is passed to the function. The default action is to toggle the visibility of the series. This can be prevented by returning false or calling event.preventDefault().","demo":"Confirm hiding and showing","deprecated":false},{"name":"series-levels--level","fullname":"series.levels.level","title":"level","parent":"series-levels","isParent":false,"returnType":"Number","since":"4.1.0","description":"Decides which level takes effect from the options set in the levels object.","demo":"Styling of both levels","deprecated":false},{"name":"plotOptions-treemap-levels--level","fullname":"plotOptions.treemap.levels.level","title":"level","parent":"plotOptions-treemap-levels","isParent":false,"returnType":"Number","since":"4.1.0","description":"Decides which level takes effect from the options set in the levels object.","demo":"Styling of both levels","deprecated":false},{"name":"series--levelIsConstant","fullname":"series.levelIsConstant","title":"levelIsConstant","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","values":"[\"true\", \"false\"]","since":"4.1.0","description":"Used together with the levels and allowDrillToNode options. When set to false the first level visible when drilling is considered to be level one. Otherwise the level will be the same as the tree structure.","deprecated":false},{"name":"plotOptions-treemap--levelIsConstant","fullname":"plotOptions.treemap.levelIsConstant","title":"levelIsConstant","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"true","values":"[\"true\", \"false\"]","since":"4.1.0","description":"Used together with the levels and allowDrillToNode options. When set to false the first level visible when drilling is considered to be level one. Otherwise the level will be the same as the tree structure.","deprecated":false},{"name":"plotOptions-treemap-levels","fullname":"plotOptions.treemap.levels","title":"levels","parent":"plotOptions-treemap","isParent":true,"returnType":"Array","since":"4.1.0","description":"Set options on specific levels. Takes precedence over series options, but not point options.","demo":"Styling dataLabels and borders, Different layoutAlgorithm","deprecated":false},{"name":"series-levels","fullname":"series.levels","title":"levels","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"Set options on specific levels. Takes precedence over series options, but not point options.","demo":"Styling dataLabels and borders, Different layoutAlgorithm","deprecated":false},{"name":"plotOptions-line","fullname":"plotOptions.line","title":"line","parent":"plotOptions","isParent":true},{"name":"plotOptions-areaspline-marker--lineColor","fullname":"plotOptions.areaspline.marker.lineColor","title":"lineColor","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-areasplinerange-states-hover-marker--lineColor","fullname":"plotOptions.areasplinerange.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-scatter-marker-states-select--lineColor","fullname":"plotOptions.scatter.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-scatter-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-bubble-marker-states-select--lineColor","fullname":"plotOptions.bubble.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-bubble-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-gauge-states-hover-marker--lineColor","fullname":"plotOptions.gauge.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-areaspline--lineColor","fullname":"plotOptions.areaspline.lineColor","title":"lineColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-columnrange-states-hover-marker--lineColor","fullname":"plotOptions.columnrange.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-waterfall-states-hover-marker--lineColor","fullname":"plotOptions.waterfall.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"xAxis--lineColor","fullname":"xAxis.lineColor","title":"lineColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"The color of the line marking the axis itself.","demo":"A red line on Y axis"},{"name":"series--lineColor","fullname":"series.lineColor","title":"lineColor","parent":"series","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-area-marker-states-select--lineColor","fullname":"plotOptions.area.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-area-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-bar-states-hover-marker--lineColor","fullname":"plotOptions.bar.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-polygon-states-hover-marker--lineColor","fullname":"plotOptions.polygon.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-area-marker-states-hover--lineColor","fullname":"plotOptions.area.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series--lineColor","fullname":"series.lineColor","title":"lineColor","parent":"series","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series--lineColor","fullname":"series.lineColor","title":"lineColor","parent":"series","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"plotOptions-areasplinerange--lineColor","fullname":"plotOptions.areasplinerange.lineColor","title":"lineColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"plotOptions-areaspline-marker-states-select--lineColor","fullname":"plotOptions.areaspline.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-areaspline-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-polygon-marker-states-hover--lineColor","fullname":"plotOptions.polygon.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-series-states-hover-marker--lineColor","fullname":"plotOptions.series.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-areaspline-states-hover-marker--lineColor","fullname":"plotOptions.areaspline.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-bubble-marker--lineColor","fullname":"plotOptions.bubble.marker.lineColor","title":"lineColor","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-bubble-marker-states-hover--lineColor","fullname":"plotOptions.bubble.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-polygon-marker--lineColor","fullname":"plotOptions.polygon.marker.lineColor","title":"lineColor","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-scatter-states-hover-marker--lineColor","fullname":"plotOptions.scatter.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-boxplot-states-hover-marker--lineColor","fullname":"plotOptions.boxplot.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-line-marker-states-select--lineColor","fullname":"plotOptions.line.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-line-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-funnel-states-hover-marker--lineColor","fullname":"plotOptions.funnel.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-series-marker--lineColor","fullname":"plotOptions.series.marker.lineColor","title":"lineColor","parent":"plotOptions-series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-spline-states-hover-marker--lineColor","fullname":"plotOptions.spline.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-area--lineColor","fullname":"plotOptions.area.lineColor","title":"lineColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-spline-marker--lineColor","fullname":"plotOptions.spline.marker.lineColor","title":"lineColor","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-select--lineColor","fullname":"series.data.marker.states.select.lineColor","title":"lineColor","parent":"series-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-series-marker-states-hover--lineColor","fullname":"plotOptions.series.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-line-marker--lineColor","fullname":"plotOptions.line.marker.lineColor","title":"lineColor","parent":"plotOptions-line-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-waterfall--lineColor","fullname":"plotOptions.waterfall.lineColor","title":"lineColor","parent":"plotOptions-waterfall","isParent":false,"returnType":"Color","defaults":"#333333","values":"","since":"3.0","description":"The color of the line that connects columns in a waterfall series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-bubble-states-hover-marker--lineColor","fullname":"plotOptions.bubble.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-scatter-marker-states-hover--lineColor","fullname":"plotOptions.scatter.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-solidgauge-states-hover-marker--lineColor","fullname":"plotOptions.solidgauge.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-series-marker-states-select--lineColor","fullname":"plotOptions.series.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-line-states-hover-marker--lineColor","fullname":"plotOptions.line.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-heatmap-states-hover-marker--lineColor","fullname":"plotOptions.heatmap.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-treemap-states-hover-marker--lineColor","fullname":"plotOptions.treemap.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-errorbar-states-hover-marker--lineColor","fullname":"plotOptions.errorbar.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-pyramid-states-hover-marker--lineColor","fullname":"plotOptions.pyramid.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-arearange-states-hover-marker--lineColor","fullname":"plotOptions.arearange.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series--lineColor","fullname":"series.lineColor","title":"lineColor","parent":"series","isParent":false,"returnType":"Color","defaults":"#333333","values":"","since":"3.0","description":"The color of the line that connects columns in a waterfall series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-arearange--lineColor","fullname":"plotOptions.arearange.lineColor","title":"lineColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"plotOptions-areaspline-marker-states-hover--lineColor","fullname":"plotOptions.areaspline.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series--lineColor","fullname":"series.lineColor","title":"lineColor","parent":"series","isParent":false,"returnType":"Color","description":"A separate color for the graph line. By default the line takes the color of the series, but the lineColor setting allows setting a separate color for the line without altering the fillColor.","demo":"Dark gray line"},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-spline-marker-states-select--lineColor","fullname":"plotOptions.spline.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-spline-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"plotOptions-spline-marker-states-hover--lineColor","fullname":"plotOptions.spline.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-area-states-hover-marker--lineColor","fullname":"plotOptions.area.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"plotOptions-area-marker--lineColor","fullname":"plotOptions.area.marker.lineColor","title":"lineColor","parent":"plotOptions-area-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-column-states-hover-marker--lineColor","fullname":"plotOptions.column.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-select--lineColor","fullname":"series.marker.states.select.lineColor","title":"lineColor","parent":"series-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-scatter-marker--lineColor","fullname":"plotOptions.scatter.marker.lineColor","title":"lineColor","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-line-marker-states-hover--lineColor","fullname":"plotOptions.line.marker.states.hover.lineColor","title":"lineColor","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"yAxis--lineColor","fullname":"yAxis.lineColor","title":"lineColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"The color of the line marking the axis itself.","demo":"A red line on Y axis"},{"name":"series-data-marker-states-hover--lineColor","fullname":"series.data.marker.states.hover.lineColor","title":"lineColor","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-marker--lineColor","fullname":"series.marker.lineColor","title":"lineColor","parent":"series-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-pie-states-hover-marker--lineColor","fullname":"plotOptions.pie.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-data-marker--lineColor","fullname":"series.data.marker.lineColor","title":"lineColor","parent":"series-data-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"series-marker-states-hover--lineColor","fullname":"series.marker.states.hover.lineColor","title":"lineColor","parent":"series-marker-states-hover","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"White fill color, black line color"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"plotOptions-polygon-marker-states-select--lineColor","fullname":"plotOptions.polygon.marker.states.select.lineColor","title":"lineColor","parent":"plotOptions-polygon-marker-states-select","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Red line color for selected points"},{"name":"series-states-hover-marker--lineColor","fullname":"series.states.hover.marker.lineColor","title":"lineColor","parent":"series-states-hover-marker","isParent":false,"returnType":"Color","defaults":"#FFFFFF","description":"The color of the point marker's outline. When null, the series' or point's color is used.","demo":"Inherit from series color (null)"},{"name":"data--lineDelimiter","fullname":"data.lineDelimiter","title":"lineDelimiter","parent":"data","isParent":false,"returnType":"String","defaults":"\\n","values":"","since":"4.0","description":"Line delimiter for parsing CSV.","demo":"Delimiters","seeAlso":"","deprecated":false},{"name":"legend--lineHeight","fullname":"legend.lineHeight","title":"lineHeight","parent":"legend","isParent":false,"returnType":"Number","defaults":"16","since":"2.0","description":"Line height for the legend items. Deprecated as of 2.1. Instead, the line height for each item can be set using itemStyle.lineHeight, and the padding between items using itemMarginTop and itemMarginBottom.","demo":"Setting padding."},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-area-states-hover-marker--lineWidth","fullname":"plotOptions.area.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-scatter-marker-states-select--lineWidth","fullname":"plotOptions.scatter.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-scatter-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-spline--lineWidth","fullname":"plotOptions.spline.lineWidth","title":"lineWidth","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-errorbar--lineWidth","fullname":"plotOptions.errorbar.lineWidth","title":"lineWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"3.0","description":"The width of the line surrounding the box. If any of stemWidth, medianWidth or whiskerWidth are null, the lineWidth also applies to these lines.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-waterfall-states-hover-marker--lineWidth","fullname":"plotOptions.waterfall.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-spline-states-hover--lineWidth","fullname":"plotOptions.spline.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-spline-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-bubble-marker--lineWidth","fullname":"plotOptions.bubble.marker.lineWidth","title":"lineWidth","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-scatter-states-hover--lineWidth","fullname":"plotOptions.scatter.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-scatter-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-pyramid-states-hover--lineWidth","fullname":"plotOptions.pyramid.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-pyramid-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"xAxis--lineWidth","fullname":"xAxis.lineWidth","title":"lineWidth","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the line marking the axis itself.","demo":"A 1px line on Y axis"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-polygon-marker-states-hover--lineWidth","fullname":"plotOptions.polygon.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-polygon-marker--lineWidth","fullname":"plotOptions.polygon.marker.lineWidth","title":"lineWidth","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-boxplot--lineWidth","fullname":"plotOptions.boxplot.lineWidth","title":"lineWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"3.0","description":"The width of the line surrounding the box. If any of stemWidth, medianWidth or whiskerWidth are null, the lineWidth also applies to these lines.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--lineWidth","fullname":"plotOptions.bar.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-arearange-states-hover--lineWidth","fullname":"plotOptions.arearange.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-arearange-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-solidgauge-states-hover--lineWidth","fullname":"plotOptions.solidgauge.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-solidgauge-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"3.0","description":"The width of the line surrounding the box. If any of stemWidth, medianWidth or whiskerWidth are null, the lineWidth also applies to these lines.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-bar-states-hover--lineWidth","fullname":"plotOptions.bar.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-bar-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-arearange-states-hover-marker--lineWidth","fullname":"plotOptions.arearange.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-spline-marker-states-hover--lineWidth","fullname":"plotOptions.spline.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-series-marker-states-select--lineWidth","fullname":"plotOptions.series.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-line-marker-states-hover--lineWidth","fullname":"plotOptions.line.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-areaspline-states-hover--lineWidth","fullname":"plotOptions.areaspline.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"3.0","description":"The width of the line surrounding the box. If any of stemWidth, medianWidth or whiskerWidth are null, the lineWidth also applies to these lines.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-area-marker--lineWidth","fullname":"plotOptions.area.marker.lineWidth","title":"lineWidth","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-line--lineWidth","fullname":"plotOptions.line.lineWidth","title":"lineWidth","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-arearange--lineWidth","fullname":"plotOptions.arearange.lineWidth","title":"lineWidth","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-bubble-states-hover--lineWidth","fullname":"plotOptions.bubble.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-bubble-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"plotOptions-treemap-states-hover-marker--lineWidth","fullname":"plotOptions.treemap.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-bubble-states-hover-marker--lineWidth","fullname":"plotOptions.bubble.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-areasplinerange-states-hover-marker--lineWidth","fullname":"plotOptions.areasplinerange.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-spline-marker--lineWidth","fullname":"plotOptions.spline.marker.lineWidth","title":"lineWidth","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-series-states-hover--lineWidth","fullname":"plotOptions.series.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-line-states-hover-marker--lineWidth","fullname":"plotOptions.line.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-spline-states-hover-marker--lineWidth","fullname":"plotOptions.spline.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-areaspline-marker-states-hover--lineWidth","fullname":"plotOptions.areaspline.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-columnrange-states-hover-marker--lineWidth","fullname":"plotOptions.columnrange.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-series--lineWidth","fullname":"plotOptions.series.lineWidth","title":"lineWidth","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"yAxis--lineWidth","fullname":"yAxis.lineWidth","title":"lineWidth","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line marking the axis itself.","demo":"A 1px line on Y axis"},{"name":"plotOptions-treemap-states-hover--lineWidth","fullname":"plotOptions.treemap.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-treemap-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-series-marker-states-hover--lineWidth","fullname":"plotOptions.series.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-polygon-states-hover-marker--lineWidth","fullname":"plotOptions.polygon.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-funnel-states-hover--lineWidth","fullname":"plotOptions.funnel.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-funnel-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-areasplinerange--lineWidth","fullname":"plotOptions.areasplinerange.lineWidth","title":"lineWidth","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-area-marker-states-hover--lineWidth","fullname":"plotOptions.area.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-pie-states-hover-marker--lineWidth","fullname":"plotOptions.pie.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-areaspline-marker--lineWidth","fullname":"plotOptions.areaspline.marker.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-scatter-marker--lineWidth","fullname":"plotOptions.scatter.marker.lineWidth","title":"lineWidth","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-polygon-states-hover--lineWidth","fullname":"plotOptions.polygon.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-polygon-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-errorbar-states-hover--lineWidth","fullname":"plotOptions.errorbar.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-errorbar-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-marker-states-hover--lineWidth","fullname":"series.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-areasplinerange-states-hover--lineWidth","fullname":"plotOptions.areasplinerange.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-areasplinerange-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"plotOptions-column-states-hover-marker--lineWidth","fullname":"plotOptions.column.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-marker-states-select--lineWidth","fullname":"plotOptions.line.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-line-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-polygon--lineWidth","fullname":"plotOptions.polygon.lineWidth","title":"lineWidth","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"series-marker--lineWidth","fullname":"series.marker.lineWidth","title":"lineWidth","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-heatmap-states-hover-marker--lineWidth","fullname":"plotOptions.heatmap.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-gauge-states-hover-marker--lineWidth","fullname":"plotOptions.gauge.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-funnel-states-hover-marker--lineWidth","fullname":"plotOptions.funnel.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-line-marker--lineWidth","fullname":"plotOptions.line.marker.lineWidth","title":"lineWidth","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-errorbar-states-hover-marker--lineWidth","fullname":"plotOptions.errorbar.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-areaspline-marker-states-select--lineWidth","fullname":"plotOptions.areaspline.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-boxplot-states-hover--lineWidth","fullname":"plotOptions.boxplot.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-boxplot-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-areaspline-states-hover-marker--lineWidth","fullname":"plotOptions.areaspline.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-scatter--lineWidth","fullname":"plotOptions.scatter.lineWidth","title":"lineWidth","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-spline-marker-states-select--lineWidth","fullname":"plotOptions.spline.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-spline-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-area--lineWidth","fullname":"plotOptions.area.lineWidth","title":"lineWidth","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"plotOptions-scatter-states-hover-marker--lineWidth","fullname":"plotOptions.scatter.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-series-marker--lineWidth","fullname":"plotOptions.series.marker.lineWidth","title":"lineWidth","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-areaspline--lineWidth","fullname":"plotOptions.areaspline.lineWidth","title":"lineWidth","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"plotOptions-area-marker-states-select--lineWidth","fullname":"plotOptions.area.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-area-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-waterfall-states-hover--lineWidth","fullname":"plotOptions.waterfall.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-waterfall-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-scatter-marker-states-hover--lineWidth","fullname":"plotOptions.scatter.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-solidgauge-states-hover-marker--lineWidth","fullname":"plotOptions.solidgauge.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-pie-states-hover--lineWidth","fullname":"plotOptions.pie.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-pie-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-pyramid-states-hover-marker--lineWidth","fullname":"plotOptions.pyramid.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px on all series,\n\t\t\ton one single series"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-line-states-hover--lineWidth","fullname":"plotOptions.line.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-line-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-boxplot-states-hover-marker--lineWidth","fullname":"plotOptions.boxplot.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-series-states-hover-marker--lineWidth","fullname":"plotOptions.series.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-polygon-marker-states-select--lineWidth","fullname":"plotOptions.polygon.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-polygon-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-columnrange-states-hover--lineWidth","fullname":"plotOptions.columnrange.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-columnrange-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-bubble--lineWidth","fullname":"plotOptions.bubble.lineWidth","title":"lineWidth","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"plotOptions-bubble-marker-states-select--lineWidth","fullname":"plotOptions.bubble.marker.states.select.lineWidth","title":"lineWidth","parent":"plotOptions-bubble-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-data-marker--lineWidth","fullname":"series.data.marker.lineWidth","title":"lineWidth","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"plotOptions-bubble-marker-states-hover--lineWidth","fullname":"plotOptions.bubble.marker.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"series-data-marker-states-select--lineWidth","fullname":"series.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"series-marker-states-select--lineWidth","fullname":"series.marker.states.select.lineWidth","title":"lineWidth","parent":"series-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width for selected points"},{"name":"plotOptions-gauge-states-hover--lineWidth","fullname":"plotOptions.gauge.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-gauge-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-column-states-hover--lineWidth","fullname":"plotOptions.column.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-column-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-data-marker-states-hover--lineWidth","fullname":"series.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"3px line width"},{"name":"plotOptions-area-states-hover--lineWidth","fullname":"plotOptions.area.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-area-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"plotOptions-heatmap-states-hover--lineWidth","fullname":"plotOptions.heatmap.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-heatmap-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series-states-hover-marker--lineWidth","fullname":"series.states.hover.marker.lineWidth","title":"lineWidth","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline.","demo":"2px blue marker"},{"name":"series-states-hover--lineWidth","fullname":"series.states.hover.lineWidth","title":"lineWidth","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line.","demo":"5px line on hover"},{"name":"series--lineWidth","fullname":"series.lineWidth","title":"lineWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points.","demo":"0 by default,\n\t\t\t1px"},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-pie-states-hover--lineWidthPlus","fullname":"plotOptions.pie.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-pie-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-errorbar-states-hover--lineWidthPlus","fullname":"plotOptions.errorbar.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-errorbar-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-arearange-states-hover--lineWidthPlus","fullname":"plotOptions.arearange.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-arearange-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-pyramid-states-hover--lineWidthPlus","fullname":"plotOptions.pyramid.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-pyramid-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-bubble-marker-states-hover--lineWidthPlus","fullname":"plotOptions.bubble.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover--lineWidthPlus","fullname":"plotOptions.solidgauge.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-solidgauge-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-line-marker-states-hover--lineWidthPlus","fullname":"plotOptions.line.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover--lineWidthPlus","fullname":"plotOptions.areaspline.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-areaspline-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-heatmap-states-hover--lineWidthPlus","fullname":"plotOptions.heatmap.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-heatmap-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-spline-marker-states-hover--lineWidthPlus","fullname":"plotOptions.spline.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-states-hover--lineWidthPlus","fullname":"plotOptions.polygon.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-polygon-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-areaspline-marker-states-hover--lineWidthPlus","fullname":"plotOptions.areaspline.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-states-hover--lineWidthPlus","fullname":"plotOptions.gauge.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-gauge-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-scatter-states-hover--lineWidthPlus","fullname":"plotOptions.scatter.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-scatter-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-data-marker-states-hover--lineWidthPlus","fullname":"series.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-states-hover--lineWidthPlus","fullname":"plotOptions.bubble.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-bubble-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-area-states-hover--lineWidthPlus","fullname":"plotOptions.area.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-area-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-scatter-marker-states-hover--lineWidthPlus","fullname":"plotOptions.scatter.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-states-hover--lineWidthPlus","fullname":"plotOptions.funnel.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-funnel-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover--lineWidthPlus","fullname":"plotOptions.areasplinerange.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-areasplinerange-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-line-states-hover--lineWidthPlus","fullname":"plotOptions.line.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-line-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-series-marker-states-hover--lineWidthPlus","fullname":"plotOptions.series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-boxplot-states-hover--lineWidthPlus","fullname":"plotOptions.boxplot.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-boxplot-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-states-hover--lineWidthPlus","fullname":"plotOptions.treemap.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-treemap-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-columnrange-states-hover--lineWidthPlus","fullname":"plotOptions.columnrange.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-columnrange-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-polygon-marker-states-hover--lineWidthPlus","fullname":"plotOptions.polygon.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-bar-states-hover--lineWidthPlus","fullname":"plotOptions.bar.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-bar-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-spline-states-hover--lineWidthPlus","fullname":"plotOptions.spline.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-spline-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-states-hover--lineWidthPlus","fullname":"series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-waterfall-states-hover--lineWidthPlus","fullname":"plotOptions.waterfall.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-waterfall-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"plotOptions-area-marker-states-hover--lineWidthPlus","fullname":"plotOptions.area.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover--lineWidthPlus","fullname":"plotOptions.column.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-column-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--lineWidthPlus","fullname":"series.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0.3","description":"The additional line width for a hovered point.","demo":"2 pixels wider on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-series-states-hover--lineWidthPlus","fullname":"plotOptions.series.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-series-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"4.0.3","description":"The additional line width for the graph of a hovered series.","demo":"5 pixels wider","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge--linecap","fullname":"plotOptions.solidgauge.linecap","title":"linecap","parent":"plotOptions-solidgauge","isParent":false,"returnType":"String","defaults":"round","values":"[\"square\", \"round\"]","since":"4.2.2","description":"Whether the strokes of the solid gauge should be round or square.","demo":"Rounded gauge","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--linecap","fullname":"plotOptions.areasplinerange.linecap","title":"linecap","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--linecap","fullname":"plotOptions.arearange.linecap","title":"linecap","parent":"plotOptions-arearange","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","defaults":"round","values":"[\"square\", \"round\"]","since":"4.2.2","description":"Whether the strokes of the solid gauge should be round or square.","demo":"Rounded gauge","deprecated":false},{"name":"plotOptions-spline--linecap","fullname":"plotOptions.spline.linecap","title":"linecap","parent":"plotOptions-spline","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line--linecap","fullname":"plotOptions.line.linecap","title":"linecap","parent":"plotOptions-line","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series--linecap","fullname":"plotOptions.series.linecap","title":"linecap","parent":"plotOptions-series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area--linecap","fullname":"plotOptions.area.linecap","title":"linecap","parent":"plotOptions-area","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--linecap","fullname":"plotOptions.areaspline.linecap","title":"linecap","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linecap","fullname":"series.linecap","title":"linecap","parent":"series","isParent":false,"returnType":"String","context":"","defaults":"round","values":"[\"round\", \"square\"]","since":"","description":"The line cap used for line ends and line joins on the graph.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--linkedTo","fullname":"plotOptions.pyramid.linkedTo","title":"linkedTo","parent":"plotOptions-pyramid","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-area--linkedTo","fullname":"plotOptions.area.linkedTo","title":"linkedTo","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--linkedTo","fullname":"plotOptions.bubble.linkedTo","title":"linkedTo","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--linkedTo","fullname":"plotOptions.boxplot.linkedTo","title":"linkedTo","parent":"plotOptions-boxplot","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-series--linkedTo","fullname":"plotOptions.series.linkedTo","title":"linkedTo","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-line--linkedTo","fullname":"plotOptions.line.linkedTo","title":"linkedTo","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--linkedTo","fullname":"plotOptions.arearange.linkedTo","title":"linkedTo","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--linkedTo","fullname":"plotOptions.heatmap.linkedTo","title":"linkedTo","parent":"plotOptions-heatmap","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--linkedTo","fullname":"plotOptions.columnrange.linkedTo","title":"linkedTo","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--linkedTo","fullname":"plotOptions.waterfall.linkedTo","title":"linkedTo","parent":"plotOptions-waterfall","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--linkedTo","fullname":"plotOptions.pie.linkedTo","title":"linkedTo","parent":"plotOptions-pie","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--linkedTo","fullname":"plotOptions.errorbar.linkedTo","title":"linkedTo","parent":"plotOptions-errorbar","isParent":false,"returnType":"String","defaults":":previous","values":"","since":"3.0","description":"The parent series of the error bar. The default value links it to the previous series. Otherwise, use the id of the parent series.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--linkedTo","fullname":"yAxis.linkedTo","title":"linkedTo","parent":"yAxis","isParent":false,"returnType":"Number","since":"2.0.2","description":"Index of another axis that this axis is linked to. When an axis is linked to a master axis, it will take the same extremes as the master, but as assigned by min or max or by setExtremes. It can be used to show additional info, or to ease reading the chart by duplicating the scales.","demo":"Different string formats of the same date,\n\t\t\tY values on both sides"},{"name":"plotOptions-areasplinerange--linkedTo","fullname":"plotOptions.areasplinerange.linkedTo","title":"linkedTo","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--linkedTo","fullname":"plotOptions.spline.linkedTo","title":"linkedTo","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--linkedTo","fullname":"plotOptions.funnel.linkedTo","title":"linkedTo","parent":"plotOptions-funnel","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--linkedTo","fullname":"plotOptions.treemap.linkedTo","title":"linkedTo","parent":"plotOptions-treemap","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--linkedTo","fullname":"plotOptions.gauge.linkedTo","title":"linkedTo","parent":"plotOptions-gauge","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"xAxis--linkedTo","fullname":"xAxis.linkedTo","title":"linkedTo","parent":"xAxis","isParent":false,"returnType":"Number","since":"2.0.2","description":"Index of another axis that this axis is linked to. When an axis is linked to a master axis, it will take the same extremes as the master, but as assigned by min or max or by setExtremes. It can be used to show additional info, or to ease reading the chart by duplicating the scales.","demo":"Different string formats of the same date,\n\t\t\tY values on both sides"},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--linkedTo","fullname":"plotOptions.polygon.linkedTo","title":"linkedTo","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-column--linkedTo","fullname":"plotOptions.column.linkedTo","title":"linkedTo","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":":previous","values":"","since":"3.0","description":"The parent series of the error bar. The default value links it to the previous series. Otherwise, use the id of the parent series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--linkedTo","fullname":"plotOptions.bar.linkedTo","title":"linkedTo","parent":"plotOptions-bar","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--linkedTo","fullname":"plotOptions.scatter.linkedTo","title":"linkedTo","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--linkedTo","fullname":"plotOptions.areaspline.linkedTo","title":"linkedTo","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"series--linkedTo","fullname":"series.linkedTo","title":"linkedTo","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"3.0","description":"The id of another series to link to. Additionally, the value can be \":previous\" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.","demo":"Linked series","seeAlso":"","deprecated":false},{"name":"chart-events--load","fullname":"chart.events.load","title":"load","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","description":"

Fires when the chart is finished loading. Since v4.2.2, it also waits for images to be loaded, for example from point markers. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

\r\n\r\n

There is also a second parameter to the chart constructor where a callback function can be passed to be executed on chart.load.

","demo":"Alert on chart load","deprecated":false},{"name":"loading","fullname":"loading","title":"loading","isParent":true,"description":"The loading options control the appearance of the loading screen that covers the \n\tplot area on chart operations. This screen only appears after an explicit call\n\tto chart.showLoading(). It is a utility for developers to communicate\n\tto the end user that something is going on, for example while retrieving new data\n\tvia an XHR connection. The \"Loading...\" text itself is not part of this configuration\n\tobject, but part of the lang object."},{"name":"lang--loading","fullname":"lang.loading","title":"loading","parent":"lang","isParent":false,"returnType":"String","defaults":"Loading...","description":"The loading text that appears when the chart is set into the loading state following a call to chart.showLoading."},{"name":"series-data--low","fullname":"series.data.low","title":"low","parent":"series-data","isParent":false,"returnType":"Number","description":"The low value for each data point, signifying the lowest value in the sample set. The bottom whisker is drawn here."},{"name":"series-data--low","fullname":"series.data.low","title":"low","parent":"series-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series-data--low","fullname":"series.data.low","title":"low","parent":"series-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series-data--low","fullname":"series.data.low","title":"low","parent":"series-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series-data--low","fullname":"series.data.low","title":"low","parent":"series-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"xAxis-title--margin","fullname":"xAxis.title.margin","title":"margin","parent":"xAxis-title","isParent":false,"returnType":"Number","description":"The pixel distance between the axis labels or line and the title. Defaults to 0 for horizontal axes, 10 for vertical","demo":"Y axis title margin of 60"},{"name":"legend--margin","fullname":"legend.margin","title":"margin","parent":"legend","isParent":false,"returnType":"Number","defaults":"12","since":"2.1","description":"If the plot area sized is calculated automatically and the legend is not floating, the legend margin is the space between the legend and the axis labels or plot area.","demo":"12 pixels by default,\r\n\t\t\t30 pixels.","deprecated":false},{"name":"title--margin","fullname":"title.margin","title":"margin","parent":"title","isParent":false,"returnType":"Number","defaults":"15","since":"2.1","description":"The margin between the title and the plot area, or if a subtitle is present, the margin between the subtitle and the plot area.","demo":"A chart title margin of 50,\n\t\t\tthe same margin applied with a subtitle."},{"name":"chart--margin","fullname":"chart.margin","title":"margin","parent":"chart","isParent":false,"returnType":"Array","description":"

The margin between the outer edge of the chart and the plot area. The numbers in the array designate top, right, bottom and left respectively. Use the options marginTop, marginRight, marginBottom and marginLeft for shorthand setting of one option.

Since version 2.1, the margin is 0 by default. The actual space is dynamically calculated from the offset of axis labels, axis title, title, subtitle and legend in addition to the spacingTop, spacingRight, spacingBottom and spacingLeft options.

\n\t\t Defaults to [null].","demo":"Zero margins"},{"name":"yAxis-title--margin","fullname":"yAxis.title.margin","title":"margin","parent":"yAxis-title","isParent":false,"returnType":"Number","defaults":"40","description":"The pixel distance between the axis labels and the title. Positive values are outside the axis line, negative are inside.","demo":"Y axis title margin of 60"},{"name":"chart--marginBottom","fullname":"chart.marginBottom","title":"marginBottom","parent":"chart","isParent":false,"returnType":"Number","since":"2.0","description":"The margin between the bottom outer edge of the chart and the plot area. Use this to set a fixed\r pixel value for the margin as opposed to the default dynamic margin. See also spacingBottom.","demo":"100px bottom margin","seeAlso":"","deprecated":false},{"name":"chart--marginLeft","fullname":"chart.marginLeft","title":"marginLeft","parent":"chart","isParent":false,"returnType":"Number","since":"2.0","description":"The margin between the left outer edge of the chart and the plot area. Use this to set a fixed\r pixel value for the margin as opposed to the default dynamic margin. See also spacingLeft.","demo":"150px left margin","seeAlso":"","deprecated":false},{"name":"chart--marginRight","fullname":"chart.marginRight","title":"marginRight","parent":"chart","isParent":false,"returnType":"Number","since":"2.0","description":"The margin between the right outer edge of the chart and the plot area. Use this to set a fixed\r pixel value for the margin as opposed to the default dynamic margin. See also spacingRight.","demo":"100px right margin","seeAlso":"","deprecated":false},{"name":"chart--marginTop","fullname":"chart.marginTop","title":"marginTop","parent":"chart","isParent":false,"returnType":"Number","since":"2.0","description":"The margin between the top outer edge of the chart and the plot area. Use this to set a fixed pixel value for the margin as opposed to the default dynamic margin. See also spacingTop.","demo":"100px top margin"},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-line-states-hover-marker","fullname":"plotOptions.line.states.hover.marker","title":"marker","parent":"plotOptions-line-states-hover","isParent":true},{"name":"plotOptions-area-states-hover-marker","fullname":"plotOptions.area.states.hover.marker","title":"marker","parent":"plotOptions-area-states-hover","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"plotOptions-spline-marker","fullname":"plotOptions.spline.marker","title":"marker","parent":"plotOptions-spline","isParent":true},{"name":"plotOptions-areaspline-marker","fullname":"plotOptions.areaspline.marker","title":"marker","parent":"plotOptions-areaspline","isParent":true},{"name":"plotOptions-pyramid-states-hover-marker","fullname":"plotOptions.pyramid.states.hover.marker","title":"marker","parent":"plotOptions-pyramid-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-heatmap-states-hover-marker","fullname":"plotOptions.heatmap.states.hover.marker","title":"marker","parent":"plotOptions-heatmap-states-hover","isParent":true},{"name":"plotOptions-column-states-hover-marker","fullname":"plotOptions.column.states.hover.marker","title":"marker","parent":"plotOptions-column-states-hover","isParent":true},{"name":"plotOptions-line-marker","fullname":"plotOptions.line.marker","title":"marker","parent":"plotOptions-line","isParent":true},{"name":"plotOptions-scatter-marker","fullname":"plotOptions.scatter.marker","title":"marker","parent":"plotOptions-scatter","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-pie-states-hover-marker","fullname":"plotOptions.pie.states.hover.marker","title":"marker","parent":"plotOptions-pie-states-hover","isParent":true},{"name":"plotOptions-polygon-marker","fullname":"plotOptions.polygon.marker","title":"marker","parent":"plotOptions-polygon","isParent":true},{"name":"plotOptions-waterfall-states-hover-marker","fullname":"plotOptions.waterfall.states.hover.marker","title":"marker","parent":"plotOptions-waterfall-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-spline-states-hover-marker","fullname":"plotOptions.spline.states.hover.marker","title":"marker","parent":"plotOptions-spline-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-columnrange-states-hover-marker","fullname":"plotOptions.columnrange.states.hover.marker","title":"marker","parent":"plotOptions-columnrange-states-hover","isParent":true},{"name":"plotOptions-gauge-states-hover-marker","fullname":"plotOptions.gauge.states.hover.marker","title":"marker","parent":"plotOptions-gauge-states-hover","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-scatter-states-hover-marker","fullname":"plotOptions.scatter.states.hover.marker","title":"marker","parent":"plotOptions-scatter-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-solidgauge-states-hover-marker","fullname":"plotOptions.solidgauge.states.hover.marker","title":"marker","parent":"plotOptions-solidgauge-states-hover","isParent":true},{"name":"plotOptions-area-marker","fullname":"plotOptions.area.marker","title":"marker","parent":"plotOptions-area","isParent":true},{"name":"plotOptions-areaspline-states-hover-marker","fullname":"plotOptions.areaspline.states.hover.marker","title":"marker","parent":"plotOptions-areaspline-states-hover","isParent":true},{"name":"plotOptions-series-marker","fullname":"plotOptions.series.marker","title":"marker","parent":"plotOptions-series","isParent":true},{"name":"plotOptions-funnel-states-hover-marker","fullname":"plotOptions.funnel.states.hover.marker","title":"marker","parent":"plotOptions-funnel-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-arearange-states-hover-marker","fullname":"plotOptions.arearange.states.hover.marker","title":"marker","parent":"plotOptions-arearange-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-bar-states-hover-marker","fullname":"plotOptions.bar.states.hover.marker","title":"marker","parent":"plotOptions-bar-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-boxplot-states-hover-marker","fullname":"plotOptions.boxplot.states.hover.marker","title":"marker","parent":"plotOptions-boxplot-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"plotOptions-series-states-hover-marker","fullname":"plotOptions.series.states.hover.marker","title":"marker","parent":"plotOptions-series-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-errorbar-states-hover-marker","fullname":"plotOptions.errorbar.states.hover.marker","title":"marker","parent":"plotOptions-errorbar-states-hover","isParent":true},{"name":"plotOptions-areasplinerange-states-hover-marker","fullname":"plotOptions.areasplinerange.states.hover.marker","title":"marker","parent":"plotOptions-areasplinerange-states-hover","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-marker","fullname":"series.marker","title":"marker","parent":"series","isParent":true},{"name":"plotOptions-bubble-states-hover-marker","fullname":"plotOptions.bubble.states.hover.marker","title":"marker","parent":"plotOptions-bubble-states-hover","isParent":true},{"name":"plotOptions-polygon-states-hover-marker","fullname":"plotOptions.polygon.states.hover.marker","title":"marker","parent":"plotOptions-polygon-states-hover","isParent":true},{"name":"plotOptions-treemap-states-hover-marker","fullname":"plotOptions.treemap.states.hover.marker","title":"marker","parent":"plotOptions-treemap-states-hover","isParent":true},{"name":"plotOptions-bubble-marker","fullname":"plotOptions.bubble.marker","title":"marker","parent":"plotOptions-bubble","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"series-data-marker","fullname":"series.data.marker","title":"marker","parent":"series-data","isParent":true},{"name":"series-states-hover-marker","fullname":"series.states.hover.marker","title":"marker","parent":"series-states-hover","isParent":true},{"name":"xAxis--max","fullname":"xAxis.max","title":"max","parent":"xAxis","isParent":false,"returnType":"Number","description":"The maximum value of the axis. If null, the max value is automatically calculated. If the endOnTick option is true, the max value might be rounded up. The actual maximum value is also influenced by chart.alignTicks.","demo":"Y axis max of 200,\n\t\t\tY axis max on logarithmic axis"},{"name":"yAxis--max","fullname":"yAxis.max","title":"max","parent":"yAxis","isParent":false,"returnType":"Number","description":"The maximum value of the axis. If null, the max value is automatically calculated. If the endOnTick option is true, the max value might be rounded up. The actual maximum value is also influenced by chart.alignTicks.","demo":"Y axis max of 200,\n\t\t\tY axis max on logarithmic axis"},{"name":"yAxis--maxColor","fullname":"yAxis.maxColor","title":"maxColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#102D4C","values":"","since":"4.0","description":"Solid gauge only. Unless stops are set, the color to represent the maximum value of the Y axis.","demo":"Min and max colors","seeAlso":"","deprecated":false},{"name":"legend--maxHeight","fullname":"legend.maxHeight","title":"maxHeight","parent":"legend","isParent":false,"returnType":"Number","since":"2.3.0","description":"Maximum pixel height for the legend. When the maximum height is extended, navigation will show.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis--maxPadding","fullname":"xAxis.maxPadding","title":"maxPadding","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"0.01","since":"1.2.0","description":"Padding of the max value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the highest data value to appear on the edge of the plot area. When the axis' max option is set or a max extreme is set using axis.setExtremes(), the maxPadding will be ignored.","demo":"Max padding of 0.25 on y axis"},{"name":"yAxis--maxPadding","fullname":"yAxis.maxPadding","title":"maxPadding","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0.05","since":"1.2.0","description":"Padding of the max value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the highest data value to appear on the edge of the plot area.","demo":"Max padding of 0.2"},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-errorbar--maxPointWidth","fullname":"plotOptions.errorbar.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-boxplot--maxPointWidth","fullname":"plotOptions.boxplot.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-treemap--maxPointWidth","fullname":"plotOptions.treemap.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-heatmap--maxPointWidth","fullname":"plotOptions.heatmap.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-column--maxPointWidth","fullname":"plotOptions.column.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-bar--maxPointWidth","fullname":"plotOptions.bar.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-bar","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-columnrange--maxPointWidth","fullname":"plotOptions.columnrange.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-waterfall--maxPointWidth","fullname":"plotOptions.waterfall.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"series--maxPointWidth","fullname":"series.maxPointWidth","title":"maxPointWidth","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"null","values":"","since":"4.1.8","description":"The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.","demo":"Limited to 50","seeAlso":"pointWidth","deprecated":false},{"name":"plotOptions-bubble--maxSize","fullname":"plotOptions.bubble.maxSize","title":"maxSize","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"20%","values":"","since":"3.0","description":"Maximum bubble size. Bubbles will automatically size between the minSize and maxSize to reflect the z value of each bubble. Can be either pixels (when no unit is given), or a percentage of the smallest one of the plot width and height. ","demo":"Bubble size","seeAlso":"","deprecated":false},{"name":"series--maxSize","fullname":"series.maxSize","title":"maxSize","parent":"series","isParent":false,"returnType":"String","defaults":"20%","values":"","since":"3.0","description":"Maximum bubble size. Bubbles will automatically size between the minSize and maxSize to reflect the z value of each bubble. Can be either pixels (when no unit is given), or a percentage of the smallest one of the plot width and height. ","demo":"Bubble size","seeAlso":"","deprecated":false},{"name":"yAxis-labels--maxStaggerLines","fullname":"yAxis.labels.maxStaggerLines","title":"maxStaggerLines","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"5","since":"3.0.3","description":"Horizontal axis only. When staggerLines is not set, maxStaggerLines defines how many lines the axis is allowed to add to automatically avoid overlapping X labels. Set to 1 to disable overlap detection. ","deprecated":true},{"name":"xAxis-labels--maxStaggerLines","fullname":"xAxis.labels.maxStaggerLines","title":"maxStaggerLines","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"5","since":"3.0.3","description":"Horizontal axis only. When staggerLines is not set, maxStaggerLines defines how many lines the axis is allowed to add to automatically avoid overlapping X labels. Set to 1 to disable overlap detection. ","deprecated":true},{"name":"xAxis--maxZoom","fullname":"xAxis.maxZoom","title":"maxZoom","parent":"xAxis","isParent":false,"returnType":"Number","description":"Deprecated. Renamed to minRange as of Highcharts 2.2.","deprecated":true},{"name":"yAxis--maxZoom","fullname":"yAxis.maxZoom","title":"maxZoom","parent":"yAxis","isParent":false,"returnType":"Number","description":"Deprecated. Renamed to minRange as of Highcharts 2.2.","deprecated":true},{"name":"series-data--median","fullname":"series.data.median","title":"median","parent":"series-data","isParent":false,"returnType":"Number","description":"The median for each data point. This is drawn as a line through the middle area of the box."},{"name":"series--medianColor","fullname":"series.medianColor","title":"medianColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the median line. If null, the general series color applies.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--medianColor","fullname":"plotOptions.boxplot.medianColor","title":"medianColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the median line. If null, the general series color applies.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--medianWidth","fullname":"plotOptions.boxplot.medianWidth","title":"medianWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"3.0","description":"The pixel width of the median line. If null, the lineWidth is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"series--medianWidth","fullname":"series.medianWidth","title":"medianWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"3.0","description":"The pixel width of the median line. If null, the lineWidth is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"navigation--menuItemHoverStyle","fullname":"navigation.menuItemHoverStyle","title":"menuItemHoverStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","since":"2.0","description":"CSS styles for the hover state of the individual items within the popup menu appearing by default when the export icon is clicked. The menu items are rendered in HTML. Defaults to \n
menuItemHoverStyle: {\n\tbackground: '#4572A5',\n\tcolor: '#FFFFFF'\n}
","demo":"Bold text on hover"},{"name":"navigation--menuItemStyle","fullname":"navigation.menuItemStyle","title":"menuItemStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","since":"2.0","description":"CSS styles for the individual items within the popup menu appearing by default when the export icon is clicked. The menu items are rendered in HTML. Defaults to \n
menuItemStyle: {\n\tpadding: '0 5px',\n\tbackground: NONE,\n\tcolor: '#303030'\n}
","demo":"Add a grey stripe to the left"},{"name":"exporting-buttons-contextButton--menuItems","fullname":"exporting.buttons.contextButton.menuItems","title":"menuItems","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Array","since":"2.0","description":"

A collection of config options for the menu items. Each options object consists\r of a text option which is a string to show in the menu item, as\r well as an onclick parameter which is a callback function to run\r on click.

\r

By default, there is the \"Print\" menu item plus one menu item for each of the available export types.\r Menu items can be customized by defining a new array of items and assigning \r null to unwanted positions (see override example below).

","demo":"Skip the menu and export the chart directly,\r\n\t\t\toverride the menu items","seeAlso":"","deprecated":false},{"name":"navigation--menuStyle","fullname":"navigation.menuStyle","title":"menuStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","since":"2.0","description":"CSS styles for the popup menu appearing by default when the export icon is clicked. This menu is rendered in HTML. Defaults to \n
menuStyle: {\n\tborder: '1px solid #A0A0A0',\n\tbackground: '#FFFFFF'\n}
","demo":"Light gray menu background"},{"name":"yAxis--min","fullname":"yAxis.min","title":"min","parent":"yAxis","isParent":false,"returnType":"Number","description":"

The minimum value of the axis. If null the min value is automatically calculated.

\r\n\r\n

If the startOnTick option is true, the min value might be rounded down.

\r\n\r\n

The automatically calculated minimum value is also affected by floor, minPadding, minRange as well as series.threshold and series.softThreshold.

","demo":"Y axis min of -50 with startOnTick to false,\r\n\t\t\t-50 with startOnTick true by default","deprecated":false},{"name":"xAxis--min","fullname":"xAxis.min","title":"min","parent":"xAxis","isParent":false,"returnType":"Number","description":"The minimum value of the axis. If null the min value is automatically calculated. If the startOnTick option is true, the min value might be rounded down.","demo":"Y axis min of -50 with startOnTick to false,\n\t\t\t-50 with startOnTick true by default"},{"name":"yAxis--minColor","fullname":"yAxis.minColor","title":"minColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#EFEFFF","values":"","since":"4.0","description":"Solid gauge only. Unless stops are set, the color to represent the minimum value of the Y axis.","demo":"Min and max color","seeAlso":"","deprecated":false},{"name":"yAxis--minPadding","fullname":"yAxis.minPadding","title":"minPadding","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0.05","since":"1.2.0","description":"Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the lowest data value to appear on the edge of the plot area.","demo":"Min padding of 0.2"},{"name":"xAxis--minPadding","fullname":"xAxis.minPadding","title":"minPadding","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"0.01","since":"1.2.0","description":"Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the lowest data value to appear on the edge of the plot area. When the axis' min option is set or a min extreme is set using axis.setExtremes(), the minPadding will be ignored.","demo":"Min padding of 0.2"},{"name":"plotOptions-waterfall--minPointLength","fullname":"plotOptions.waterfall.minPointLength","title":"minPointLength","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"plotOptions-column--minPointLength","fullname":"plotOptions.column.minPointLength","title":"minPointLength","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"series--minPointLength","fullname":"series.minPointLength","title":"minPointLength","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"plotOptions-bar--minPointLength","fullname":"plotOptions.bar.minPointLength","title":"minPointLength","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"series--minPointLength","fullname":"series.minPointLength","title":"minPointLength","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"series--minPointLength","fullname":"series.minPointLength","title":"minPointLength","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"series--minPointLength","fullname":"series.minPointLength","title":"minPointLength","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"plotOptions-columnrange--minPointLength","fullname":"plotOptions.columnrange.minPointLength","title":"minPointLength","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0","description":"The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.","demo":"Set to three with zero base value,\n\t\t\tpositive and negative close to zero values"},{"name":"xAxis--minRange","fullname":"xAxis.minRange","title":"minRange","parent":"xAxis","isParent":false,"returnType":"Number","description":"

The minimum range to display on this axis. The entire axis will not be allowed to span over a smaller interval than this. For example, for a datetime axis the main unit is milliseconds. If minRange is set to 3600000, you can't zoom in more than to one hour.

\r\n\r\n

The default minRange for the x axis is five times the smallest interval between any of the data points.

\r\n\r\n

On a logarithmic axis, the unit for the minimum range is the power. So a minRange of \t1 means that the axis can be zoomed to 10-100, 100-1000, 1000-10000 etc.

\r\n\r\n

Note that the minPadding, maxPadding, startOnTick and endOnTick settings also affect how the extremes of the axis are computed.

","demo":"Minimum range of 5","deprecated":false},{"name":"yAxis--minRange","fullname":"yAxis.minRange","title":"minRange","parent":"yAxis","isParent":false,"returnType":"Number","description":"

The minimum range to display on this axis. The entire axis will not be allowed to span over a smaller interval than this. For example, for a datetime axis the main unit is milliseconds. If minRange is set to 3600000, you can't zoom in more than to one hour.

\r\n\r\n

The default minRange for the x axis is five times the smallest interval between any of the data points.

\r\n\r\n

On a logarithmic axis, the unit for the minimum range is the power. So a minRange of \t1 means that the axis can be zoomed to 10-100, 100-1000, 1000-10000 etc.

\r\n\r\n

Note that the minPadding, maxPadding, startOnTick and endOnTick settings also affect how the extremes of the axis are computed.

","demo":"Minimum range of 5","deprecated":false},{"name":"series--minSize","fullname":"series.minSize","title":"minSize","parent":"series","isParent":false,"returnType":"String","defaults":"8","values":"","since":"3.0","description":"Minimum bubble size. Bubbles will automatically size between the minSize and maxSize to reflect the z value of each bubble. Can be either pixels (when no unit is given), or a percentage of the smallest one of the plot width and height. ","demo":"Bubble size","seeAlso":"","deprecated":false},{"name":"series--minSize","fullname":"series.minSize","title":"minSize","parent":"series","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--minSize","fullname":"plotOptions.funnel.minSize","title":"minSize","parent":"plotOptions-funnel","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"series--minSize","fullname":"series.minSize","title":"minSize","parent":"series","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--minSize","fullname":"plotOptions.pie.minSize","title":"minSize","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"series--minSize","fullname":"series.minSize","title":"minSize","parent":"series","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--minSize","fullname":"plotOptions.pyramid.minSize","title":"minSize","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number","defaults":"80","values":"","since":"3.0","description":"The minimum size for a pie in response to auto margins. The pie will try to shrink to make room for data labels in side the plot area, but only to this size.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--minSize","fullname":"plotOptions.bubble.minSize","title":"minSize","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"8","values":"","since":"3.0","description":"Minimum bubble size. Bubbles will automatically size between the minSize and maxSize to reflect the z value of each bubble. Can be either pixels (when no unit is given), or a percentage of the smallest one of the plot width and height. ","demo":"Bubble size","seeAlso":"","deprecated":false},{"name":"yAxis--minTickInterval","fullname":"yAxis.minTickInterval","title":"minTickInterval","parent":"yAxis","isParent":false,"returnType":"Number","since":"2.3.0","description":"The minimum tick interval allowed in axis values. For example on zooming in on an axis with daily data, this can be used to prevent the axis from showing hours. Defaults to the closest distance between two points on the axis.","deprecated":false},{"name":"xAxis--minTickInterval","fullname":"xAxis.minTickInterval","title":"minTickInterval","parent":"xAxis","isParent":false,"returnType":"Number","since":"2.3.0","description":"The minimum tick interval allowed in axis values. For example on zooming in on an axis with daily data, this can be used to prevent the axis from showing hours. Defaults to the closest distance between two points on the axis.","deprecated":false},{"name":"yAxis--minorGridLineColor","fullname":"yAxis.minorGridLineColor","title":"minorGridLineColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#E0E0E0","description":"Color of the minor, secondary grid lines.","demo":"Bright grey lines from Y axis"},{"name":"xAxis--minorGridLineColor","fullname":"xAxis.minorGridLineColor","title":"minorGridLineColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#E0E0E0","description":"Color of the minor, secondary grid lines.","demo":"Bright grey lines from Y axis"},{"name":"xAxis--minorGridLineDashStyle","fullname":"xAxis.minorGridLineDashStyle","title":"minorGridLineDashStyle","parent":"xAxis","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dash or dot style of the minor grid lines. For possible values, see this demonstration.","demo":"Long dashes on minor grid lines","deprecated":false},{"name":"yAxis--minorGridLineDashStyle","fullname":"yAxis.minorGridLineDashStyle","title":"minorGridLineDashStyle","parent":"yAxis","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"1.2","description":"The dash or dot style of the minor grid lines. For possible values, see this demonstration.","demo":"Long dashes on minor grid lines","deprecated":false},{"name":"xAxis--minorGridLineWidth","fullname":"xAxis.minorGridLineWidth","title":"minorGridLineWidth","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","description":"Width of the minor, secondary grid lines.","demo":"2px lines from Y axis "},{"name":"yAxis--minorGridLineWidth","fullname":"yAxis.minorGridLineWidth","title":"minorGridLineWidth","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"1","description":"Width of the minor, secondary grid lines.","demo":"2px lines from Y axis "},{"name":"yAxis--minorTickColor","fullname":"yAxis.minorTickColor","title":"minorTickColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#A0A0A0","description":"Color for the minor tick marks.","demo":"Black tick marks on Y axis"},{"name":"xAxis--minorTickColor","fullname":"xAxis.minorTickColor","title":"minorTickColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#A0A0A0","description":"Color for the minor tick marks.","demo":"Black tick marks on Y axis"},{"name":"yAxis--minorTickInterval","fullname":"yAxis.minorTickInterval","title":"minorTickInterval","parent":"yAxis","isParent":false,"returnType":"String|Number","description":"

Tick interval in scale units for the minor ticks. On a linear axis, if \"auto\", \r\n the minor tick interval is calculated as a fifth of the tickInterval. If\r\n null, minor ticks are not shown.

\r\n

On logarithmic axes, the unit is the power of the value. For example, setting\r\n \tthe minorTickInterval to 1 puts one tick on each of 0.1, 1, 10, 100 etc. Setting\r\n \tthe minorTickInterval to 0.1 produces 9 ticks between 1 and 10, \r\n \t10 and 100 etc. A minorTickInterval of \"auto\" on a log axis results in a best guess,\r\n \tattempting to enter approximately 5 minor ticks between each major tick.

\r\n\r\n

If user settings dictate minor ticks to become too dense, they don't make sense, and will be ignored to prevent performance problems.\r\n\r\n

On axes using categories, minor ticks are not supported.

\r\n\r\n","demo":"Null by default,\r\n\t\t\t\"auto\" on linear Y axis, \r\n\t\t\t5 units on linear Y axis, \r\n\t\t\t\"auto\" on logarithmic Y axis,\r\n\t\t\t0.1 on logarithmic Y axis.","deprecated":false},{"name":"xAxis--minorTickInterval","fullname":"xAxis.minorTickInterval","title":"minorTickInterval","parent":"xAxis","isParent":false,"returnType":"String|Number","description":"

Tick interval in scale units for the minor ticks. On a linear axis, if \"auto\", \r\n the minor tick interval is calculated as a fifth of the tickInterval. If\r\n null, minor ticks are not shown.

\r\n

On logarithmic axes, the unit is the power of the value. For example, setting\r\n \tthe minorTickInterval to 1 puts one tick on each of 0.1, 1, 10, 100 etc. Setting\r\n \tthe minorTickInterval to 0.1 produces 9 ticks between 1 and 10, \r\n \t10 and 100 etc. A minorTickInterval of \"auto\" on a log axis results in a best guess,\r\n \tattempting to enter approximately 5 minor ticks between each major tick.

\r\n\r\n

If user settings dictate minor ticks to become too dense, they don't make sense, and will be ignored to prevent performance problems.\r\n\r\n

On axes using categories, minor ticks are not supported.

\r\n\r\n","demo":"Null by default,\r\n\t\t\t\"auto\" on linear Y axis, \r\n\t\t\t5 units on linear Y axis, \r\n\t\t\t\"auto\" on logarithmic Y axis,\r\n\t\t\t0.1 on logarithmic Y axis.","deprecated":false},{"name":"yAxis--minorTickLength","fullname":"yAxis.minorTickLength","title":"minorTickLength","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"2","description":"The pixel length of the minor tick marks.","demo":"10px on Y axis"},{"name":"xAxis--minorTickLength","fullname":"xAxis.minorTickLength","title":"minorTickLength","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"2","description":"The pixel length of the minor tick marks.","demo":"10px on Y axis"},{"name":"xAxis--minorTickPosition","fullname":"xAxis.minorTickPosition","title":"minorTickPosition","parent":"xAxis","isParent":false,"returnType":"String","defaults":"outside","values":"[\"inside\", \"outside\"]","description":"The position of the minor tick marks relative to the axis line. Can be one of inside and outside.","demo":"Outside by default,\n\t\t\tinside"},{"name":"yAxis--minorTickPosition","fullname":"yAxis.minorTickPosition","title":"minorTickPosition","parent":"yAxis","isParent":false,"returnType":"String","defaults":"outside","values":"[\"inside\", \"outside\"]","description":"The position of the minor tick marks relative to the axis line. Can be one of inside and outside.","demo":"Outside by default,\n\t\t\tinside"},{"name":"yAxis--minorTickWidth","fullname":"yAxis.minorTickWidth","title":"minorTickWidth","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The pixel width of the minor tick mark.","demo":"3px width"},{"name":"xAxis--minorTickWidth","fullname":"xAxis.minorTickWidth","title":"minorTickWidth","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The pixel width of the minor tick mark.","demo":"3px width"},{"name":"lang--months","fullname":"lang.months","title":"months","parent":"lang","isParent":false,"returnType":"Array","defaults":"[ \"January\" , \"February\" , \"March\" , \"April\" , \"May\" , \"June\" , \"July\" , \"August\" , \"September\" , \"October\" , \"November\" , \"December\"]","since":"","description":"An array containing the months names. Corresponds to the \r %B format in Highcharts.dateFormat().","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--mouseOut","fullname":"plotOptions.areasplinerange.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-heatmap-events--mouseOut","fullname":"plotOptions.heatmap.events.mouseOut","title":"mouseOut","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-spline-point-events--mouseOut","fullname":"plotOptions.spline.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-errorbar-point-events--mouseOut","fullname":"plotOptions.errorbar.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-columnrange-events--mouseOut","fullname":"plotOptions.columnrange.events.mouseOut","title":"mouseOut","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-scatter-events--mouseOut","fullname":"plotOptions.scatter.events.mouseOut","title":"mouseOut","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-pie-point-events--mouseOut","fullname":"plotOptions.pie.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-solidgauge-events--mouseOut","fullname":"plotOptions.solidgauge.events.mouseOut","title":"mouseOut","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-pyramid-point-events--mouseOut","fullname":"plotOptions.pyramid.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-arearange-events--mouseOut","fullname":"plotOptions.arearange.events.mouseOut","title":"mouseOut","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-arearange-point-events--mouseOut","fullname":"plotOptions.arearange.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-bar-point-events--mouseOut","fullname":"plotOptions.bar.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-bubble-point-events--mouseOut","fullname":"plotOptions.bubble.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-areaspline-events--mouseOut","fullname":"plotOptions.areaspline.events.mouseOut","title":"mouseOut","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-areasplinerange-events--mouseOut","fullname":"plotOptions.areasplinerange.events.mouseOut","title":"mouseOut","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-gauge-events--mouseOut","fullname":"plotOptions.gauge.events.mouseOut","title":"mouseOut","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-column-point-events--mouseOut","fullname":"plotOptions.column.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-bubble-events--mouseOut","fullname":"plotOptions.bubble.events.mouseOut","title":"mouseOut","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-pyramid-events--mouseOut","fullname":"plotOptions.pyramid.events.mouseOut","title":"mouseOut","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-boxplot-point-events--mouseOut","fullname":"plotOptions.boxplot.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-pie-events--mouseOut","fullname":"plotOptions.pie.events.mouseOut","title":"mouseOut","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-area-events--mouseOut","fullname":"plotOptions.area.events.mouseOut","title":"mouseOut","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-series-events--mouseOut","fullname":"plotOptions.series.events.mouseOut","title":"mouseOut","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-areaspline-point-events--mouseOut","fullname":"plotOptions.areaspline.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-waterfall-events--mouseOut","fullname":"plotOptions.waterfall.events.mouseOut","title":"mouseOut","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-polygon-point-events--mouseOut","fullname":"plotOptions.polygon.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-series-point-events--mouseOut","fullname":"plotOptions.series.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-scatter-point-events--mouseOut","fullname":"plotOptions.scatter.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-spline-events--mouseOut","fullname":"plotOptions.spline.events.mouseOut","title":"mouseOut","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-polygon-events--mouseOut","fullname":"plotOptions.polygon.events.mouseOut","title":"mouseOut","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-heatmap-point-events--mouseOut","fullname":"plotOptions.heatmap.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-treemap-point-events--mouseOut","fullname":"plotOptions.treemap.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-funnel-events--mouseOut","fullname":"plotOptions.funnel.events.mouseOut","title":"mouseOut","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-waterfall-point-events--mouseOut","fullname":"plotOptions.waterfall.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-boxplot-events--mouseOut","fullname":"plotOptions.boxplot.events.mouseOut","title":"mouseOut","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-columnrange-point-events--mouseOut","fullname":"plotOptions.columnrange.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-bar-events--mouseOut","fullname":"plotOptions.bar.events.mouseOut","title":"mouseOut","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-gauge-point-events--mouseOut","fullname":"plotOptions.gauge.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-treemap-events--mouseOut","fullname":"plotOptions.treemap.events.mouseOut","title":"mouseOut","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-column-events--mouseOut","fullname":"plotOptions.column.events.mouseOut","title":"mouseOut","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-solidgauge-point-events--mouseOut","fullname":"plotOptions.solidgauge.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOut","fullname":"series.data.events.mouseOut","title":"mouseOut","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-area-point-events--mouseOut","fullname":"plotOptions.area.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-line-point-events--mouseOut","fullname":"plotOptions.line.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-errorbar-events--mouseOut","fullname":"plotOptions.errorbar.events.mouseOut","title":"mouseOut","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-line-events--mouseOut","fullname":"plotOptions.line.events.mouseOut","title":"mouseOut","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-funnel-point-events--mouseOut","fullname":"plotOptions.funnel.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOut","fullname":"series.point.events.mouseOut","title":"mouseOut","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOut","fullname":"series.events.mouseOut","title":"mouseOut","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. If the stickyTracking option is true, mouseOut doesn't happen before the mouse enters another graph or leaves the plot area.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-solidgauge-events--mouseOver","fullname":"plotOptions.solidgauge.events.mouseOver","title":"mouseOver","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-solidgauge-point-events--mouseOver","fullname":"plotOptions.solidgauge.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-boxplot-events--mouseOver","fullname":"plotOptions.boxplot.events.mouseOver","title":"mouseOver","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-errorbar-point-events--mouseOver","fullname":"plotOptions.errorbar.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-areaspline-events--mouseOver","fullname":"plotOptions.areaspline.events.mouseOver","title":"mouseOver","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-column-events--mouseOver","fullname":"plotOptions.column.events.mouseOver","title":"mouseOver","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-column-point-events--mouseOver","fullname":"plotOptions.column.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-bar-events--mouseOver","fullname":"plotOptions.bar.events.mouseOver","title":"mouseOver","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-bar-point-events--mouseOver","fullname":"plotOptions.bar.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-bubble-point-events--mouseOver","fullname":"plotOptions.bubble.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-pie-events--mouseOver","fullname":"plotOptions.pie.events.mouseOver","title":"mouseOver","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-columnrange-point-events--mouseOver","fullname":"plotOptions.columnrange.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-heatmap-events--mouseOver","fullname":"plotOptions.heatmap.events.mouseOver","title":"mouseOver","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-gauge-events--mouseOver","fullname":"plotOptions.gauge.events.mouseOver","title":"mouseOver","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--mouseOver","fullname":"plotOptions.areasplinerange.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-treemap-point-events--mouseOver","fullname":"plotOptions.treemap.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-pie-point-events--mouseOver","fullname":"plotOptions.pie.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-series-events--mouseOver","fullname":"plotOptions.series.events.mouseOver","title":"mouseOver","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-line-point-events--mouseOver","fullname":"plotOptions.line.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-boxplot-point-events--mouseOver","fullname":"plotOptions.boxplot.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-area-events--mouseOver","fullname":"plotOptions.area.events.mouseOver","title":"mouseOver","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-arearange-point-events--mouseOver","fullname":"plotOptions.arearange.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-pyramid-point-events--mouseOver","fullname":"plotOptions.pyramid.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-funnel-events--mouseOver","fullname":"plotOptions.funnel.events.mouseOver","title":"mouseOver","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-bubble-events--mouseOver","fullname":"plotOptions.bubble.events.mouseOver","title":"mouseOver","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-funnel-point-events--mouseOver","fullname":"plotOptions.funnel.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-spline-point-events--mouseOver","fullname":"plotOptions.spline.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-heatmap-point-events--mouseOver","fullname":"plotOptions.heatmap.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-pyramid-events--mouseOver","fullname":"plotOptions.pyramid.events.mouseOver","title":"mouseOver","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-waterfall-events--mouseOver","fullname":"plotOptions.waterfall.events.mouseOver","title":"mouseOver","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-polygon-events--mouseOver","fullname":"plotOptions.polygon.events.mouseOver","title":"mouseOver","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-gauge-point-events--mouseOver","fullname":"plotOptions.gauge.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-polygon-point-events--mouseOver","fullname":"plotOptions.polygon.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-areasplinerange-events--mouseOver","fullname":"plotOptions.areasplinerange.events.mouseOver","title":"mouseOver","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-arearange-events--mouseOver","fullname":"plotOptions.arearange.events.mouseOver","title":"mouseOver","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-scatter-point-events--mouseOver","fullname":"plotOptions.scatter.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-areaspline-point-events--mouseOver","fullname":"plotOptions.areaspline.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-columnrange-events--mouseOver","fullname":"plotOptions.columnrange.events.mouseOver","title":"mouseOver","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-errorbar-events--mouseOver","fullname":"plotOptions.errorbar.events.mouseOver","title":"mouseOver","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-spline-events--mouseOver","fullname":"plotOptions.spline.events.mouseOver","title":"mouseOver","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-scatter-events--mouseOver","fullname":"plotOptions.scatter.events.mouseOver","title":"mouseOver","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-point-events--mouseOver","fullname":"series.point.events.mouseOver","title":"mouseOver","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-series-point-events--mouseOver","fullname":"plotOptions.series.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-area-point-events--mouseOver","fullname":"plotOptions.area.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"series-events--mouseOver","fullname":"series.events.mouseOver","title":"mouseOver","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"plotOptions-line-events--mouseOver","fullname":"plotOptions.line.events.mouseOver","title":"mouseOver","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series-data-events--mouseOver","fullname":"series.data.events.mouseOver","title":"mouseOver","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-waterfall-point-events--mouseOver","fullname":"plotOptions.waterfall.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Show values in the chart's corner on mouse over","deprecated":false},{"name":"plotOptions-treemap-events--mouseOver","fullname":"plotOptions.treemap.events.mouseOver","title":"mouseOver","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Log mouse over and out with sticky tracking\r\n\t\t\tby default,\r\n\t\t\twithout sticky tracking","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","description":"The name of the series as shown in the legend, tooltip etc.","demo":"Series name"},{"name":"series-data--name","fullname":"series.data.name","title":"name","parent":"series-data","isParent":false,"returnType":"String","description":"

The name of the point as shown in the legend, tooltip, dataLabel etc.

\r\n\r\n

If the xAxis.type is set to category, and no categories option exists, the category will be pulled from the point.name of the last series defined. For multiple series, best practice however is to define xAxis.categories.

","demo":"Point names","deprecated":false},{"name":"navigation","fullname":"navigation","title":"navigation","isParent":true,"description":"A collection of options for buttons and menus appearing in the exporting module."},{"name":"legend-navigation","fullname":"legend.navigation","title":"navigation","parent":"legend","isParent":true,"description":"Options for the paging or navigation appearing when the legend is overflown. Navigation works well on screen, but not in static exported images. One way of working around that is to increase the chart height in export.","deprecated":false},{"name":"series--neckHeight","fullname":"series.neckHeight","title":"neckHeight","parent":"series","isParent":false,"returnType":"Number|String","defaults":"25%","values":"","since":"","description":"The height of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area height.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--neckHeight","fullname":"plotOptions.funnel.neckHeight","title":"neckHeight","parent":"plotOptions-funnel","isParent":false,"returnType":"Number|String","defaults":"25%","values":"","since":"","description":"The height of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area height.","demo":"","seeAlso":"","deprecated":false},{"name":"series--neckWidth","fullname":"series.neckWidth","title":"neckWidth","parent":"series","isParent":false,"returnType":"Number|String","defaults":"30%","since":"3.0","description":"The width of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area width.","demo":"Funnel demo","deprecated":false},{"name":"plotOptions-funnel--neckWidth","fullname":"plotOptions.funnel.neckWidth","title":"neckWidth","parent":"plotOptions-funnel","isParent":false,"returnType":"Number|String","defaults":"30%","since":"3.0","description":"The width of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area width.","demo":"Funnel demo","deprecated":false},{"name":"plotOptions-arearange--negativeColor","fullname":"plotOptions.arearange.negativeColor","title":"negativeColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--negativeColor","fullname":"plotOptions.boxplot.negativeColor","title":"negativeColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--negativeColor","fullname":"plotOptions.spline.negativeColor","title":"negativeColor","parent":"plotOptions-spline","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-column--negativeColor","fullname":"plotOptions.column.negativeColor","title":"negativeColor","parent":"plotOptions-column","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-series--negativeColor","fullname":"plotOptions.series.negativeColor","title":"negativeColor","parent":"plotOptions-series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"When a point's Z value is below the zThreshold setting, this color is used.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--negativeColor","fullname":"plotOptions.bar.negativeColor","title":"negativeColor","parent":"plotOptions-bar","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--negativeColor","fullname":"plotOptions.scatter.negativeColor","title":"negativeColor","parent":"plotOptions-scatter","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--negativeColor","fullname":"plotOptions.bubble.negativeColor","title":"negativeColor","parent":"plotOptions-bubble","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"When a point's Z value is below the zThreshold setting, this color is used.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--negativeColor","fullname":"plotOptions.errorbar.negativeColor","title":"negativeColor","parent":"plotOptions-errorbar","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--negativeColor","fullname":"plotOptions.areaspline.negativeColor","title":"negativeColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-line--negativeColor","fullname":"plotOptions.line.negativeColor","title":"negativeColor","parent":"plotOptions-line","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--negativeColor","fullname":"plotOptions.gauge.negativeColor","title":"negativeColor","parent":"plotOptions-gauge","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-area--negativeColor","fullname":"plotOptions.area.negativeColor","title":"negativeColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--negativeColor","fullname":"plotOptions.polygon.negativeColor","title":"negativeColor","parent":"plotOptions-polygon","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--negativeColor","fullname":"plotOptions.areasplinerange.negativeColor","title":"negativeColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"series--negativeColor","fullname":"series.negativeColor","title":"negativeColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color for the parts of the graph or points that are below the threshold.","demo":"Spline, area and column - arearange.","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--negativeFillColor","fullname":"plotOptions.arearange.negativeFillColor","title":"negativeFillColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"series--negativeFillColor","fullname":"series.negativeFillColor","title":"negativeFillColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"plotOptions-areasplinerange--negativeFillColor","fullname":"plotOptions.areasplinerange.negativeFillColor","title":"negativeFillColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"plotOptions-area--negativeFillColor","fullname":"plotOptions.area.negativeFillColor","title":"negativeFillColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"series--negativeFillColor","fullname":"series.negativeFillColor","title":"negativeFillColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"series--negativeFillColor","fullname":"series.negativeFillColor","title":"negativeFillColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"plotOptions-areaspline--negativeFillColor","fullname":"plotOptions.areaspline.negativeFillColor","title":"negativeFillColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"series--negativeFillColor","fullname":"series.negativeFillColor","title":"negativeFillColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"3.0","description":"A separate color for the negative part of the area.","demo":"","seeAlso":"negativeColor","deprecated":false},{"name":"lang--noData","fullname":"lang.noData","title":"noData","parent":"lang","isParent":false,"returnType":"String","defaults":"No data to display","values":"","since":"3.0.8","description":"The text to display when the chart contains no data. Requires the no-data module, see noData.","demo":"","seeAlso":"","deprecated":false},{"name":"noData","fullname":"noData","title":"noData","isParent":true,"since":"3.0.8","description":"Options for displaying a message like \"No data to display\". This feature requires the file no-data-to-display.js to be loaded in the page. The actual text to display is set in the lang.noData option.","demo":"Line series, pie series.","deprecated":false},{"name":"lang--numericSymbols","fullname":"lang.numericSymbols","title":"numericSymbols","parent":"lang","isParent":false,"returnType":"Array","defaults":"[ \"k\" , \"M\" , \"G\" , \"T\" , \"P\" , \"E\"]","since":"2.3.0","description":"Metric prefixes used to shorten high numbers in axis labels. Replacing any of the positions with null causes the full number to be written. Setting numericSymbols to null disables shortening altogether.","demo":"Replacing the symbols with text","deprecated":false},{"name":"xAxis--offset","fullname":"xAxis.offset","title":"offset","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The distance in pixels from the plot area to the axis line. A positive offset moves the axis with it's line, labels and ticks away from the plot area. This is typically used when two or more axes are displayed on the same side of the plot.","demo":"Y axis offset of 70,\n\t\t\tAxes positioned in the center of the plot"},{"name":"yAxis--offset","fullname":"yAxis.offset","title":"offset","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The distance in pixels from the plot area to the axis line. A positive offset moves the axis with it's line, labels and ticks away from the plot area. This is typically used when two or more axes are displayed on the same side of the plot.","demo":"Y axis offset of 70,\n\t\t\tAxes positioned in the center of the plot"},{"name":"xAxis-title--offset","fullname":"xAxis.title.offset","title":"offset","parent":"xAxis-title","isParent":false,"returnType":"Number","since":"2.2.0","description":"The distance of the axis title from the axis line. By default, this distance is computed from the offset width of the labels, the labels' distance from the axis and the title's margin. However when the offset option is set, it overrides all this.","demo":"Place the axis title on top of the axis","deprecated":false},{"name":"yAxis-title--offset","fullname":"yAxis.title.offset","title":"offset","parent":"yAxis-title","isParent":false,"returnType":"Number","since":"2.2.0","description":"The distance of the axis title from the axis line. By default, this distance is computed from the offset width of the labels, the labels' distance from the axis and the title's margin. However when the offset option is set, it overrides all this.","demo":"Place the axis title on top of the axis","deprecated":false},{"name":"exporting-buttons-contextButton--onclick","fullname":"exporting.buttons.contextButton.onclick","title":"onclick","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Function","since":"2.0","description":"A click handler callback to use on the button directly instead of the popup menu.","demo":"Skip the menu and export the chart directly","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-columnrange-states-hover-halo--opacity","fullname":"plotOptions.columnrange.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-columnrange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-funnel-states-hover-halo--opacity","fullname":"plotOptions.funnel.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-funnel-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-bar-states-hover-halo--opacity","fullname":"plotOptions.bar.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-bar-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-area-states-hover-halo--opacity","fullname":"plotOptions.area.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-area-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-pie-states-hover-halo--opacity","fullname":"plotOptions.pie.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-pie-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-heatmap-states-hover-halo--opacity","fullname":"plotOptions.heatmap.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-heatmap-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-series-states-hover-halo--opacity","fullname":"plotOptions.series.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-areaspline-states-hover-halo--opacity","fullname":"plotOptions.areaspline.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-areaspline-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-halo--opacity","fullname":"plotOptions.areasplinerange.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-areasplinerange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-waterfall-states-hover-halo--opacity","fullname":"plotOptions.waterfall.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-waterfall-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-halo--opacity","fullname":"plotOptions.solidgauge.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-solidgauge-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-spline-states-hover-halo--opacity","fullname":"plotOptions.spline.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-spline-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-polygon-states-hover-halo--opacity","fullname":"plotOptions.polygon.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-polygon-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-bubble-states-hover-halo--opacity","fullname":"plotOptions.bubble.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-bubble-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-line-states-hover-halo--opacity","fullname":"plotOptions.line.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-line-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-boxplot-states-hover-halo--opacity","fullname":"plotOptions.boxplot.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-boxplot-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-treemap-states-hover-halo--opacity","fullname":"plotOptions.treemap.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-treemap-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-column-states-hover-halo--opacity","fullname":"plotOptions.column.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-column-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-scatter-states-hover-halo--opacity","fullname":"plotOptions.scatter.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-scatter-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-arearange-states-hover-halo--opacity","fullname":"plotOptions.arearange.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-arearange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-gauge-states-hover-halo--opacity","fullname":"plotOptions.gauge.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-gauge-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-pyramid-states-hover-halo--opacity","fullname":"plotOptions.pyramid.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-pyramid-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series-states-hover-halo--opacity","fullname":"series.states.hover.halo.opacity","title":"opacity","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-errorbar-states-hover-halo--opacity","fullname":"plotOptions.errorbar.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-errorbar-states-hover-halo","isParent":false,"returnType":"Number","defaults":"0.25","since":"4.0","description":"Opacity for the halo unless a specific fill is overridden using the attributes setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"yAxis--opposite","fullname":"yAxis.opposite","title":"opposite","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display the axis on the opposite side of the normal. The normal is on the left side for vertical axes and bottom for horizontal, so the opposite sides will be right and top respectively. This is typically used with dual or multiple axes.","demo":"Secondary Y axis opposite"},{"name":"xAxis--opposite","fullname":"xAxis.opposite","title":"opposite","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display the axis on the opposite side of the normal. The normal is on the left side for vertical axes and bottom for horizontal, so the opposite sides will be right and top respectively. This is typically used with dual or multiple axes.","demo":"Secondary Y axis opposite"},{"name":"chart-options3d","fullname":"chart.options3d","title":"options3d","parent":"chart","isParent":true,"since":"4.0","description":"Options to render charts in 3 dimensions. This feature requires highcharts-3d.js, found in the download package or online at code.highcharts.com/highcharts-3d.js.","demo":"Basic 3D columns, basic 3D pie, basic 3D scatter chart.","deprecated":false},{"name":"yAxis-plotBands--outerRadius","fullname":"yAxis.plotBands.outerRadius","title":"outerRadius","parent":"yAxis-plotBands","isParent":false,"returnType":"Number|String","defaults":"100%","since":"2.3","description":"In a gauge chart, this option determines the outer radius of the plot band that stretches along the perimeter. It can be given as a percentage string, like \"100%\", or as a pixel number, like 100.","demo":"Gauge plot band","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--overflow","fullname":"plotOptions.bubble.dataLabels.overflow","title":"overflow","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--overflow","fullname":"plotOptions.series.dataLabels.overflow","title":"overflow","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--overflow","fullname":"plotOptions.area.dataLabels.overflow","title":"overflow","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-labels--overflow","fullname":"yAxis.labels.overflow","title":"overflow","parent":"yAxis-labels","isParent":false,"returnType":"String","values":"[null, \"justify\"]","since":"2.2.5","description":"How to handle overflowing labels on horizontal axis. Can be undefined, false or \"justify\". By default it aligns inside the chart area. If \"justify\", labels will not render outside the plot area. If false, it will not be aligned at all. If there is room to move it, it will be aligned to the edge, else it will be removed.","deprecated":true},{"name":"plotOptions-heatmap-dataLabels--overflow","fullname":"plotOptions.heatmap.dataLabels.overflow","title":"overflow","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--overflow","fullname":"plotOptions.spline.dataLabels.overflow","title":"overflow","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--overflow","fullname":"plotOptions.waterfall.dataLabels.overflow","title":"overflow","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--overflow","fullname":"plotOptions.columnrange.dataLabels.overflow","title":"overflow","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--overflow","fullname":"plotOptions.arearange.dataLabels.overflow","title":"overflow","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--overflow","fullname":"plotOptions.treemap.dataLabels.overflow","title":"overflow","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--overflow","fullname":"plotOptions.pyramid.dataLabels.overflow","title":"overflow","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--overflow","fullname":"plotOptions.funnel.dataLabels.overflow","title":"overflow","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--overflow","fullname":"plotOptions.solidgauge.dataLabels.overflow","title":"overflow","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--overflow","fullname":"plotOptions.areasplinerange.dataLabels.overflow","title":"overflow","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--overflow","fullname":"plotOptions.column.dataLabels.overflow","title":"overflow","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--overflow","fullname":"plotOptions.line.dataLabels.overflow","title":"overflow","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels--overflow","fullname":"xAxis.labels.overflow","title":"overflow","parent":"xAxis-labels","isParent":false,"returnType":"String","values":"[null, \"justify\"]","since":"2.2.5","description":"How to handle overflowing labels on horizontal axis. Can be undefined, false or \"justify\". By default it aligns inside the chart area. If \"justify\", labels will not render outside the plot area. If false, it will not be aligned at all. If there is room to move it, it will be aligned to the edge, else it will be removed.","deprecated":true},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--overflow","fullname":"plotOptions.bar.dataLabels.overflow","title":"overflow","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--overflow","fullname":"plotOptions.areaspline.dataLabels.overflow","title":"overflow","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--overflow","fullname":"plotOptions.pie.dataLabels.overflow","title":"overflow","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--overflow","fullname":"plotOptions.gauge.dataLabels.overflow","title":"overflow","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--overflow","fullname":"plotOptions.polygon.dataLabels.overflow","title":"overflow","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--overflow","fullname":"plotOptions.scatter.dataLabels.overflow","title":"overflow","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--overflow","fullname":"series.dataLabels.overflow","title":"overflow","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"3.0.6","description":"How to handle data labels that flow outside the plot area. The default is justify, which aligns them inside the plot area. For columns and bars, this means it will be moved inside the bar. To display data labels outside the plot area, set crop to false and overflow to \"none\".","demo":"","seeAlso":"","deprecated":false},{"name":"series--overshoot","fullname":"series.overshoot","title":"overshoot","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0.10","description":"Allow the dial to overshoot the end of the perimeter axis by this many degrees. Say if the gauge axis goes from 0 to 60, a value of 100, or 1000, will show 5 degrees beyond the end of the axis.","demo":"Allow 5 degrees overshoot","seeAlso":"wrap","deprecated":false},{"name":"plotOptions-gauge--overshoot","fullname":"plotOptions.gauge.overshoot","title":"overshoot","parent":"plotOptions-gauge","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0.10","description":"Allow the dial to overshoot the end of the perimeter axis by this many degrees. Say if the gauge axis goes from 0 to 60, a value of 100, or 1000, will show 5 degrees beyond the end of the axis.","demo":"Allow 5 degrees overshoot","seeAlso":"wrap","deprecated":false},{"name":"series--overshoot","fullname":"series.overshoot","title":"overshoot","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0.10","description":"Allow the dial to overshoot the end of the perimeter axis by this many degrees. Say if the gauge axis goes from 0 to 60, a value of 100, or 1000, will show 5 degrees beyond the end of the axis.","demo":"Allow 5 degrees overshoot","seeAlso":"wrap","deprecated":false},{"name":"plotOptions-solidgauge--overshoot","fullname":"plotOptions.solidgauge.overshoot","title":"overshoot","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0.10","description":"Allow the dial to overshoot the end of the perimeter axis by this many degrees. Say if the gauge axis goes from 0 to 60, a value of 100, or 1000, will show 5 degrees beyond the end of the axis.","demo":"Allow 5 degrees overshoot","seeAlso":"wrap","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--padding","fullname":"plotOptions.waterfall.dataLabels.padding","title":"padding","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-arearange-dataLabels--padding","fullname":"plotOptions.arearange.dataLabels.padding","title":"padding","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-line-dataLabels--padding","fullname":"plotOptions.line.dataLabels.padding","title":"padding","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-bar-dataLabels--padding","fullname":"plotOptions.bar.dataLabels.padding","title":"padding","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-series-dataLabels--padding","fullname":"plotOptions.series.dataLabels.padding","title":"padding","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--padding","fullname":"plotOptions.columnrange.dataLabels.padding","title":"padding","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"xAxis-labels--padding","fullname":"xAxis.labels.padding","title":"padding","parent":"xAxis-labels","isParent":false,"returnType":"Number","context":"","defaults":"5","values":"","since":"","description":"The pixel padding for axis labels, to ensure white space between them.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--padding","fullname":"plotOptions.areasplinerange.dataLabels.padding","title":"padding","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--padding","fullname":"plotOptions.heatmap.dataLabels.padding","title":"padding","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--padding","fullname":"plotOptions.areaspline.dataLabels.padding","title":"padding","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-area-dataLabels--padding","fullname":"plotOptions.area.dataLabels.padding","title":"padding","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-polygon-dataLabels--padding","fullname":"plotOptions.polygon.dataLabels.padding","title":"padding","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--padding","fullname":"plotOptions.solidgauge.dataLabels.padding","title":"padding","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--padding","fullname":"plotOptions.pyramid.dataLabels.padding","title":"padding","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"legend--padding","fullname":"legend.padding","title":"padding","parent":"legend","isParent":false,"returnType":"Number","defaults":"8","since":"2.2.0","description":"The inner padding of the legend box.","demo":"\r\n\t\t\t\tPadding and item margins demonstrated","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"yAxis-labels--padding","fullname":"yAxis.labels.padding","title":"padding","parent":"yAxis-labels","isParent":false,"returnType":"Number","context":"","defaults":"5","values":"","since":"","description":"The pixel padding for axis labels, to ensure white space between them.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-gauge-dataLabels--padding","fullname":"plotOptions.gauge.dataLabels.padding","title":"padding","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-pie-dataLabels--padding","fullname":"plotOptions.pie.dataLabels.padding","title":"padding","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-spline-dataLabels--padding","fullname":"plotOptions.spline.dataLabels.padding","title":"padding","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-scatter-dataLabels--padding","fullname":"plotOptions.scatter.dataLabels.padding","title":"padding","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-treemap-dataLabels--padding","fullname":"plotOptions.treemap.dataLabels.padding","title":"padding","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-funnel-dataLabels--padding","fullname":"plotOptions.funnel.dataLabels.padding","title":"padding","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"series-dataLabels--padding","fullname":"series.dataLabels.padding","title":"padding","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-column-dataLabels--padding","fullname":"plotOptions.column.dataLabels.padding","title":"padding","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"plotOptions-bubble-dataLabels--padding","fullname":"plotOptions.bubble.dataLabels.padding","title":"padding","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"2.2.1","description":"When either the borderWidth or the backgroundColor is set, this\t\tis the padding within the box.","demo":"Data labels box options","deprecated":false},{"name":"chart--panKey","fullname":"chart.panKey","title":"panKey","parent":"chart","isParent":false,"returnType":"String","defaults":"","values":"","since":"4.0.3","description":"Allows setting a key to switch between zooming and panning. ","demo":"Hold down shift to pan","seeAlso":"","deprecated":false},{"name":"pane","fullname":"pane","title":"pane","isParent":true,"returnType":"Object","since":"2.3.0","description":"Applies only to polar charts and angular gauges. This configuration object holds general options for the combined X and Y axes set. Each xAxis or yAxis can reference the pane by index.","demo":"","deprecated":false},{"name":"chart--panning","fullname":"chart.panning","title":"panning","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"4.0.3","description":"Allow panning in a chart. Best used with panKey to combine zooming and panning.","demo":"Zooming and panning","seeAlso":"","deprecated":false},{"name":"series-data--parent","fullname":"series.data.parent","title":"parent","parent":"series-data","isParent":false,"returnType":"String","defaults":"undefined","since":"4.1.0","description":"Only for treemap. Use this option to build a tree structure. The value should be the id of the point which is the parent. If no points has a matching id, or this option is undefined, then the parent will be set to the root.","demo":"Point parent, Example where parent id is not matching","deprecated":false},{"name":"data--parseDate","fullname":"data.parseDate","title":"parseDate","parent":"data","isParent":false,"returnType":"Function","defaults":"","values":"","since":"4.0","description":"A callback function to parse string representations of dates into JavaScript timestamps. Should return an integer timestamp on success.","demo":"","seeAlso":"dateFormat","deprecated":false},{"name":"data--parsed","fullname":"data.parsed","title":"parsed","parent":"data","isParent":false,"returnType":"Function","defaults":"","values":"","since":"4.0","description":"A callback function to access the parsed columns, the two-dimentional input data array directly, before they are interpreted into series data and categories. Return false to stop completion, or call this.complete() to continue async.","demo":"Modify data after parse","seeAlso":"data.complete","deprecated":false},{"name":"plotOptions-pie","fullname":"plotOptions.pie","title":"pie","parent":"plotOptions","isParent":true,"description":"A pie chart is a circular chart divided into sectors, illustrating numerical proportion.","demo":" Pie chart, \r\n\r\n3D pie","deprecated":false},{"name":"chart--pinchType","fullname":"chart.pinchType","title":"pinchType","parent":"chart","isParent":false,"returnType":"String","defaults":"null","values":"[\"x\", \"y\", \"xy\"]","since":"3.0","description":"Equivalent to zoomType, but for multitouch gestures only. By default, the pinchType is the same as the zoomType setting. However, pinching can be enabled separately in some cases, for example in stock charts where a mouse drag pans the chart, while pinching is enabled.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-pivot","fullname":"plotOptions.gauge.pivot","title":"pivot","parent":"plotOptions-gauge","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Options for the pivot or the center point of the gauge.","demo":"","seeAlso":"","deprecated":false},{"name":"series-pivot","fullname":"series.pivot","title":"pivot","parent":"series","isParent":true,"returnType":"Object","defaults":"","since":"2.3.0","description":"Options for the pivot or the center point of the gauge.","demo":"","seeAlso":"","deprecated":false},{"name":"chart--plotBackgroundColor","fullname":"chart.plotBackgroundColor","title":"plotBackgroundColor","parent":"chart","isParent":false,"returnType":"Color","description":"The background color or gradient for the plot area.","demo":"Color,\n\t\t\tgradient"},{"name":"chart--plotBackgroundImage","fullname":"chart.plotBackgroundImage","title":"plotBackgroundImage","parent":"chart","isParent":false,"returnType":"String","description":"The URL for an image to use as the plot background. To set an image as the background for the entire chart, set a CSS background image to the container element. Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.","demo":"Skies","deprecated":false},{"name":"yAxis-plotBands","fullname":"yAxis.plotBands","title":"plotBands","parent":"yAxis","isParent":true,"returnType":"Array","description":"An array of objects defining plot bands on the Y axis.","deprecated":false},{"name":"xAxis-plotBands","fullname":"xAxis.plotBands","title":"plotBands","parent":"xAxis","isParent":true,"returnType":"Array","description":"

An array of colored bands stretching across the plot area marking an interval on the axis.

\r\n\r\n

In a gauge, a plot band on the Y axis (value axis) will stretch along the perimeter of the gauge.

","deprecated":false},{"name":"chart--plotBorderColor","fullname":"chart.plotBorderColor","title":"plotBorderColor","parent":"chart","isParent":false,"returnType":"Color","defaults":"#C0C0C0","description":"The color of the inner chart or plot area border.","demo":"Blue border"},{"name":"chart--plotBorderWidth","fullname":"chart.plotBorderWidth","title":"plotBorderWidth","parent":"chart","isParent":false,"returnType":"Number","defaults":"0","description":"The pixel width of the plot area border.","demo":"1px border"},{"name":"yAxis-plotLines","fullname":"yAxis.plotLines","title":"plotLines","parent":"yAxis","isParent":true,"returnType":"Array","description":"An array of objects representing plot lines on the X axis","deprecated":false},{"name":"xAxis-plotLines","fullname":"xAxis.plotLines","title":"plotLines","parent":"xAxis","isParent":true,"returnType":"Array","description":"An array of lines stretching across the plot area, marking a specific value on one of the axes.","deprecated":false},{"name":"plotOptions","fullname":"plotOptions","title":"plotOptions","isParent":true,"description":"

The plotOptions is a wrapper object for config objects for each series type.\n\t\tThe config objects for each series can also be overridden for each series \n\t\titem as given in the series array.

\n\t\t

Configuration options for the series are given in three levels. Options\n\t\tfor all series in a chart are given in the plotOptions.series object. Then options for all series\n\t\tof a specific type are given in the plotOptions of that type, for example plotOptions.line.\n\t\tNext, options for one single series are given in the \n\t\tseries array.

"},{"name":"chart--plotShadow","fullname":"chart.plotShadow","title":"plotShadow","parent":"chart","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the plot area. Requires that plotBackgroundColor be set. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Plot shadow","seeAlso":"","deprecated":false},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-errorbar-point","fullname":"plotOptions.errorbar.point","title":"point","parent":"plotOptions-errorbar","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-treemap-point","fullname":"plotOptions.treemap.point","title":"point","parent":"plotOptions-treemap","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-line-point","fullname":"plotOptions.line.point","title":"point","parent":"plotOptions-line","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-area-point","fullname":"plotOptions.area.point","title":"point","parent":"plotOptions-area","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-boxplot-point","fullname":"plotOptions.boxplot.point","title":"point","parent":"plotOptions-boxplot","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-spline-point","fullname":"plotOptions.spline.point","title":"point","parent":"plotOptions-spline","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-bubble-point","fullname":"plotOptions.bubble.point","title":"point","parent":"plotOptions-bubble","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-columnrange-point","fullname":"plotOptions.columnrange.point","title":"point","parent":"plotOptions-columnrange","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-areasplinerange-point","fullname":"plotOptions.areasplinerange.point","title":"point","parent":"plotOptions-areasplinerange","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-column-point","fullname":"plotOptions.column.point","title":"point","parent":"plotOptions-column","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-heatmap-point","fullname":"plotOptions.heatmap.point","title":"point","parent":"plotOptions-heatmap","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-arearange-point","fullname":"plotOptions.arearange.point","title":"point","parent":"plotOptions-arearange","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-solidgauge-point","fullname":"plotOptions.solidgauge.point","title":"point","parent":"plotOptions-solidgauge","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-funnel-point","fullname":"plotOptions.funnel.point","title":"point","parent":"plotOptions-funnel","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-waterfall-point","fullname":"plotOptions.waterfall.point","title":"point","parent":"plotOptions-waterfall","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-pie-point","fullname":"plotOptions.pie.point","title":"point","parent":"plotOptions-pie","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-areaspline-point","fullname":"plotOptions.areaspline.point","title":"point","parent":"plotOptions-areaspline","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-series-point","fullname":"plotOptions.series.point","title":"point","parent":"plotOptions-series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-scatter-point","fullname":"plotOptions.scatter.point","title":"point","parent":"plotOptions-scatter","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-pyramid-point","fullname":"plotOptions.pyramid.point","title":"point","parent":"plotOptions-pyramid","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-bar-point","fullname":"plotOptions.bar.point","title":"point","parent":"plotOptions-bar","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-gauge-point","fullname":"plotOptions.gauge.point","title":"point","parent":"plotOptions-gauge","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"series-point","fullname":"series.point","title":"point","parent":"series","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-polygon-point","fullname":"plotOptions.polygon.point","title":"point","parent":"plotOptions-polygon","isParent":true,"description":"Properties for each single point"},{"name":"xAxis-events--pointBreak","fullname":"xAxis.events.pointBreak","title":"pointBreak","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"4.1.0","description":"An event fired when a break from this axis occurs on a point.","demo":"Visualization of a Break","seeAlso":"breaks","deprecated":false},{"name":"yAxis-events--pointBreak","fullname":"yAxis.events.pointBreak","title":"pointBreak","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"4.1.0","description":"An event fired when a break from this axis occurs on a point.","demo":"Visualization of a Break","seeAlso":"breaks","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-errorbar-tooltip--pointFormat","fullname":"plotOptions.errorbar.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-boxplot-tooltip--pointFormat","fullname":"plotOptions.boxplot.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-area-tooltip--pointFormat","fullname":"plotOptions.area.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--pointFormat","fullname":"plotOptions.solidgauge.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-columnrange-tooltip--pointFormat","fullname":"plotOptions.columnrange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"tooltip--pointFormat","fullname":"tooltip.pointFormat","title":"pointFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-gauge-tooltip--pointFormat","fullname":"plotOptions.gauge.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-scatter-tooltip--pointFormat","fullname":"plotOptions.scatter.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-arearange-tooltip--pointFormat","fullname":"plotOptions.arearange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-column-tooltip--pointFormat","fullname":"plotOptions.column.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-funnel-tooltip--pointFormat","fullname":"plotOptions.funnel.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-waterfall-tooltip--pointFormat","fullname":"plotOptions.waterfall.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-heatmap-tooltip--pointFormat","fullname":"plotOptions.heatmap.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-spline-tooltip--pointFormat","fullname":"plotOptions.spline.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-polygon-tooltip--pointFormat","fullname":"plotOptions.polygon.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-line-tooltip--pointFormat","fullname":"plotOptions.line.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-treemap-tooltip--pointFormat","fullname":"plotOptions.treemap.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","defaults":"\"<b>{point.name}</b>: {point.value}</b><br/>\"","since":"4.1.0","description":"The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.yPrefix and tooltip.ySuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-bubble-tooltip--pointFormat","fullname":"plotOptions.bubble.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-areaspline-tooltip--pointFormat","fullname":"plotOptions.areaspline.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-pie-tooltip--pointFormat","fullname":"plotOptions.pie.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-series-tooltip--pointFormat","fullname":"plotOptions.series.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\"<b>{point.name}</b>: {point.value}</b><br/>\"","since":"4.1.0","description":"The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.yPrefix and tooltip.ySuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-bar-tooltip--pointFormat","fullname":"plotOptions.bar.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-pyramid-tooltip--pointFormat","fullname":"plotOptions.pyramid.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--pointFormat","fullname":"plotOptions.areasplinerange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"series-tooltip--pointFormat","fullname":"series.tooltip.pointFormat","title":"pointFormat","parent":"series-tooltip","isParent":false,"returnType":"String","defaults":"\\u25CF {series.name}: {point.y}
","since":"2.2","description":"

The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, series.name and series.color and other properties on the same form. Furthermore, point.y can be extended by the tooltip.valuePrefix and tooltip.valueSuffix variables. This can also be overridden for each series, which makes it a good hook for displaying units.

","demo":"A different point format with value suffix","deprecated":false},{"name":"plotOptions-pie-tooltip--pointFormatter","fullname":"plotOptions.pie.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-tooltip--pointFormatter","fullname":"plotOptions.funnel.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-tooltip--pointFormatter","fullname":"plotOptions.area.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-tooltip--pointFormatter","fullname":"plotOptions.errorbar.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-tooltip--pointFormatter","fullname":"plotOptions.line.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-tooltip--pointFormatter","fullname":"plotOptions.scatter.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-tooltip--pointFormatter","fullname":"plotOptions.waterfall.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-tooltip--pointFormatter","fullname":"plotOptions.solidgauge.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-tooltip--pointFormatter","fullname":"plotOptions.boxplot.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-tooltip--pointFormatter","fullname":"plotOptions.areaspline.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-tooltip--pointFormatter","fullname":"plotOptions.bubble.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-tooltip--pointFormatter","fullname":"plotOptions.polygon.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-tooltip--pointFormatter","fullname":"plotOptions.bar.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip--pointFormatter","fullname":"plotOptions.column.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--pointFormatter","fullname":"tooltip.pointFormatter","title":"pointFormatter","parent":"tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-tooltip--pointFormatter","fullname":"plotOptions.pyramid.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-tooltip--pointFormatter","fullname":"plotOptions.treemap.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip--pointFormatter","fullname":"plotOptions.arearange.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-tooltip--pointFormatter","fullname":"plotOptions.spline.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-tooltip--pointFormatter","fullname":"plotOptions.gauge.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-tooltip--pointFormatter","fullname":"plotOptions.heatmap.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-tooltip--pointFormatter","fullname":"plotOptions.columnrange.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--pointFormatter","fullname":"plotOptions.areasplinerange.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-tooltip--pointFormatter","fullname":"plotOptions.series.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip--pointFormatter","fullname":"series.tooltip.pointFormatter","title":"pointFormatter","parent":"series-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"4.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the pointFormat string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-events--pointInBreak","fullname":"xAxis.events.pointInBreak","title":"pointInBreak","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","defaults":"","values":"","since":"","description":"An event fired when a point falls inside a break from this axis.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-events--pointInBreak","fullname":"yAxis.events.pointInBreak","title":"pointInBreak","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","defaults":"","values":"","since":"","description":"An event fired when a point falls inside a break from this axis.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--pointInterval","fullname":"plotOptions.bubble.pointInterval","title":"pointInterval","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-scatter--pointInterval","fullname":"plotOptions.scatter.pointInterval","title":"pointInterval","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-waterfall--pointInterval","fullname":"plotOptions.waterfall.pointInterval","title":"pointInterval","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-areasplinerange--pointInterval","fullname":"plotOptions.areasplinerange.pointInterval","title":"pointInterval","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-series--pointInterval","fullname":"plotOptions.series.pointInterval","title":"pointInterval","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-area--pointInterval","fullname":"plotOptions.area.pointInterval","title":"pointInterval","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-bar--pointInterval","fullname":"plotOptions.bar.pointInterval","title":"pointInterval","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-column--pointInterval","fullname":"plotOptions.column.pointInterval","title":"pointInterval","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-boxplot--pointInterval","fullname":"plotOptions.boxplot.pointInterval","title":"pointInterval","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-polygon--pointInterval","fullname":"plotOptions.polygon.pointInterval","title":"pointInterval","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-columnrange--pointInterval","fullname":"plotOptions.columnrange.pointInterval","title":"pointInterval","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-errorbar--pointInterval","fullname":"plotOptions.errorbar.pointInterval","title":"pointInterval","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-line--pointInterval","fullname":"plotOptions.line.pointInterval","title":"pointInterval","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-areaspline--pointInterval","fullname":"plotOptions.areaspline.pointInterval","title":"pointInterval","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-spline--pointInterval","fullname":"plotOptions.spline.pointInterval","title":"pointInterval","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"plotOptions-arearange--pointInterval","fullname":"plotOptions.arearange.pointInterval","title":"pointInterval","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointInterval","fullname":"series.pointInterval","title":"pointInterval","parent":"series","isParent":false,"returnType":"Number","defaults":"1","description":"

If no x values are given for the points in a series, pointInterval defines\r\n the interval of the x values. For example, if a series contains one value\r\n every decade starting from year 0, set pointInterval to 10.

\r\n

Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

","demo":"Datetime X axis","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-waterfall--pointIntervalUnit","fullname":"plotOptions.waterfall.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-waterfall","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-bubble--pointIntervalUnit","fullname":"plotOptions.bubble.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-bubble","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-spline--pointIntervalUnit","fullname":"plotOptions.spline.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-spline","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-arearange--pointIntervalUnit","fullname":"plotOptions.arearange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-arearange","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-errorbar--pointIntervalUnit","fullname":"plotOptions.errorbar.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-errorbar","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-column--pointIntervalUnit","fullname":"plotOptions.column.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-column","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-columnrange--pointIntervalUnit","fullname":"plotOptions.columnrange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-line--pointIntervalUnit","fullname":"plotOptions.line.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-line","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-areasplinerange--pointIntervalUnit","fullname":"plotOptions.areasplinerange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-bar--pointIntervalUnit","fullname":"plotOptions.bar.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-bar","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-area--pointIntervalUnit","fullname":"plotOptions.area.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-area","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-scatter--pointIntervalUnit","fullname":"plotOptions.scatter.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-scatter","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-series--pointIntervalUnit","fullname":"plotOptions.series.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-areaspline--pointIntervalUnit","fullname":"plotOptions.areaspline.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-boxplot--pointIntervalUnit","fullname":"plotOptions.boxplot.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-boxplot","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"plotOptions-polygon--pointIntervalUnit","fullname":"plotOptions.polygon.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-polygon","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointIntervalUnit","fullname":"series.pointIntervalUnit","title":"pointIntervalUnit","parent":"series","isParent":false,"returnType":"String","values":"[null, \"day\", \"month\", \"year\"]","since":"4.1.0","description":"On datetime series, this allows for setting the pointInterval to irregular time units, day, month and year. A day is usually the same as 24 hours, but pointIntervalUnit also takes the DST crossover into consideration when dealing with local time. Combine this option with pointInterval to draw weeks, quarters, 6 months, 10 years etc.","demo":"One point a month","deprecated":false},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-errorbar--pointPadding","fullname":"plotOptions.errorbar.pointPadding","title":"pointPadding","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-columnrange--pointPadding","fullname":"plotOptions.columnrange.pointPadding","title":"pointPadding","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-boxplot--pointPadding","fullname":"plotOptions.boxplot.pointPadding","title":"pointPadding","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-bar--pointPadding","fullname":"plotOptions.bar.pointPadding","title":"pointPadding","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-column--pointPadding","fullname":"plotOptions.column.pointPadding","title":"pointPadding","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"series--pointPadding","fullname":"series.pointPadding","title":"pointPadding","parent":"series","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-waterfall--pointPadding","fullname":"plotOptions.waterfall.pointPadding","title":"pointPadding","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units.","demo":"0.1 by default, \n\t\t\t0.25, \n\t\t\t0 for tightly packed columns,"},{"name":"plotOptions-waterfall--pointPlacement","fullname":"plotOptions.waterfall.pointPlacement","title":"pointPlacement","parent":"plotOptions-waterfall","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-boxplot--pointPlacement","fullname":"plotOptions.boxplot.pointPlacement","title":"pointPlacement","parent":"plotOptions-boxplot","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-bar--pointPlacement","fullname":"plotOptions.bar.pointPlacement","title":"pointPlacement","parent":"plotOptions-bar","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-areaspline--pointPlacement","fullname":"plotOptions.areaspline.pointPlacement","title":"pointPlacement","parent":"plotOptions-areaspline","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-area--pointPlacement","fullname":"plotOptions.area.pointPlacement","title":"pointPlacement","parent":"plotOptions-area","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-arearange--pointPlacement","fullname":"plotOptions.arearange.pointPlacement","title":"pointPlacement","parent":"plotOptions-arearange","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-areasplinerange--pointPlacement","fullname":"plotOptions.areasplinerange.pointPlacement","title":"pointPlacement","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-spline--pointPlacement","fullname":"plotOptions.spline.pointPlacement","title":"pointPlacement","parent":"plotOptions-spline","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-errorbar--pointPlacement","fullname":"plotOptions.errorbar.pointPlacement","title":"pointPlacement","parent":"plotOptions-errorbar","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-column--pointPlacement","fullname":"plotOptions.column.pointPlacement","title":"pointPlacement","parent":"plotOptions-column","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-columnrange--pointPlacement","fullname":"plotOptions.columnrange.pointPlacement","title":"pointPlacement","parent":"plotOptions-columnrange","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-series--pointPlacement","fullname":"plotOptions.series.pointPlacement","title":"pointPlacement","parent":"plotOptions-series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"plotOptions-line--pointPlacement","fullname":"plotOptions.line.pointPlacement","title":"pointPlacement","parent":"plotOptions-line","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointPlacement","fullname":"series.pointPlacement","title":"pointPlacement","parent":"series","isParent":false,"returnType":"String|Number","values":"[null, \"on\", \"between\"]","since":"2.3.0","description":"

Possible values: null, \"on\", \"between\".

\r\n

In a column chart, when pointPlacement is \"on\", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is \"between\", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

\r\n

Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

\r\n

Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

\r\n

Defaults to null in cartesian charts, \"between\" in polar charts.","demo":"Between in a column chart, numeric placement for custom layout.","seeAlso":"xAxis.tickmarkPlacement","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-column--pointRange","fullname":"plotOptions.column.pointRange","title":"pointRange","parent":"plotOptions-column","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--pointRange","fullname":"plotOptions.boxplot.pointRange","title":"pointRange","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--pointRange","fullname":"plotOptions.waterfall.pointRange","title":"pointRange","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--pointRange","fullname":"plotOptions.bar.pointRange","title":"pointRange","parent":"plotOptions-bar","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--pointRange","fullname":"plotOptions.errorbar.pointRange","title":"pointRange","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"series--pointRange","fullname":"series.pointRange","title":"pointRange","parent":"series","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--pointRange","fullname":"plotOptions.columnrange.pointRange","title":"pointRange","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","since":"2.3","description":"The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.","demo":"Set the point range to one day on a data set with one week between the points","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--pointStart","fullname":"plotOptions.areasplinerange.pointStart","title":"pointStart","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-bar--pointStart","fullname":"plotOptions.bar.pointStart","title":"pointStart","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-bubble--pointStart","fullname":"plotOptions.bubble.pointStart","title":"pointStart","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-polygon--pointStart","fullname":"plotOptions.polygon.pointStart","title":"pointStart","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-arearange--pointStart","fullname":"plotOptions.arearange.pointStart","title":"pointStart","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-scatter--pointStart","fullname":"plotOptions.scatter.pointStart","title":"pointStart","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-series--pointStart","fullname":"plotOptions.series.pointStart","title":"pointStart","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-spline--pointStart","fullname":"plotOptions.spline.pointStart","title":"pointStart","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-area--pointStart","fullname":"plotOptions.area.pointStart","title":"pointStart","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-areaspline--pointStart","fullname":"plotOptions.areaspline.pointStart","title":"pointStart","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-waterfall--pointStart","fullname":"plotOptions.waterfall.pointStart","title":"pointStart","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-boxplot--pointStart","fullname":"plotOptions.boxplot.pointStart","title":"pointStart","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-columnrange--pointStart","fullname":"plotOptions.columnrange.pointStart","title":"pointStart","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-errorbar--pointStart","fullname":"plotOptions.errorbar.pointStart","title":"pointStart","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-line--pointStart","fullname":"plotOptions.line.pointStart","title":"pointStart","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-column--pointStart","fullname":"plotOptions.column.pointStart","title":"pointStart","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"series--pointStart","fullname":"series.pointStart","title":"pointStart","parent":"series","isParent":false,"returnType":"Number","defaults":"0","description":"If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.","demo":"Linear,\n\t\t\tdatetime X axis"},{"name":"plotOptions-boxplot--pointWidth","fullname":"plotOptions.boxplot.pointWidth","title":"pointWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"plotOptions-errorbar--pointWidth","fullname":"plotOptions.errorbar.pointWidth","title":"pointWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"plotOptions-waterfall--pointWidth","fullname":"plotOptions.waterfall.pointWidth","title":"pointWidth","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"plotOptions-columnrange--pointWidth","fullname":"plotOptions.columnrange.pointWidth","title":"pointWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"series--pointWidth","fullname":"series.pointWidth","title":"pointWidth","parent":"series","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"plotOptions-column--pointWidth","fullname":"plotOptions.column.pointWidth","title":"pointWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"plotOptions-bar--pointWidth","fullname":"plotOptions.bar.pointWidth","title":"pointWidth","parent":"plotOptions-bar","isParent":false,"returnType":"Number","since":"1.2.5","description":"A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.","demo":"20px wide columns regardless of chart width\r\n\t\t\tor the amount of data points","seeAlso":"maxPointWidth","deprecated":false},{"name":"chart--polar","fullname":"chart.polar","title":"polar","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.3.0","description":"When true, cartesian charts like line, spline, area and column are transformed into the polar coordinate system. Requires highcharts-more.js.","demo":"Polar line, polar area, polar column, combined series types, spider chart, wind rose.","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon","fullname":"plotOptions.polygon","title":"polygon","parent":"plotOptions","isParent":true,"returnType":"Object","since":"4.1.0","description":"A polygon series can be used to draw any freeform shape in the cartesian coordinate system. A fill is applied with the color option, and stroke is applied through lineWidth and lineColor options. Requires the highcharts-more.js file.","demo":"Polygon","deprecated":false},{"name":"drilldown-drillUpButton--position","fullname":"drilldown.drillUpButton.position","title":"position","parent":"drilldown-drillUpButton","isParent":false,"returnType":"Object","defaults":"","values":"","since":"3.0.8","description":"Positioning options for the button within the relativeTo box. Available properties are x, y, align and verticalAlign.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-resetZoomButton--position","fullname":"chart.resetZoomButton.position","title":"position","parent":"chart-resetZoomButton","isParent":false,"returnType":"Object","since":"2.2","description":"The position of the button. This is an object that can hold the properties align, verticalAlign, x and y.","demo":"Above the plot area","deprecated":false},{"name":"credits--position","fullname":"credits.position","title":"position","parent":"credits","isParent":false,"returnType":"Object","since":"2.1","description":"Position configuration for the credits label. Supported properties are align, verticalAlign, x and y. Defaults to \r\n

position: {\r\n\talign: 'right',\r\n\tx: -10,\r\n\tverticalAlign: 'bottom',\r\n\ty: -5\r\n}
","demo":"Left aligned","deprecated":false},{"name":"noData--position","fullname":"noData.position","title":"position","parent":"noData","isParent":false,"returnType":"Object","defaults":"{ \"x\": 0, \"y\": 0, \"align\": \"center\", \"verticalAlign\": \"middle\" }","values":"","since":"3.0.8","description":"The position of the no-data label, relative to the plot area. ","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--positioner","fullname":"tooltip.positioner","title":"positioner","parent":"tooltip","isParent":false,"returnType":"Function","since":"2.2.4","description":"

A callback function to place the tooltip in a default position. The callback receives three parameters: labelWidth, labelHeight and point, where point contains values for plotX and plotY telling where the reference point is in the plot area. Add chart.plotLeft and chart.plotTop to get the full coordinates.

\r\n\r\n

The return should be an object containing x and y values, for example { x: 100, y: 100 }.

","demo":"\r\n\t\t\t\tA fixed tooltip position","deprecated":false},{"name":"lang--printChart","fullname":"lang.printChart","title":"printChart","parent":"lang","isParent":false,"returnType":"String","defaults":"Print chart","values":"","since":"3.0.1","description":"Exporting module only. The text for the menu item to print the chart.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid","fullname":"plotOptions.pyramid","title":"pyramid","parent":"plotOptions","isParent":true,"returnType":"Object","since":"3.0.10","description":"A pyramid chart consists of a single pyramid with item heights corresponding to each point value. Technically it is the same as a reversed funnel chart without a neck.","demo":"Pyramid chart","deprecated":false},{"name":"series-data--q1","fullname":"series.data.q1","title":"q1","parent":"series-data","isParent":false,"returnType":"Number","description":"The lower quartile for each data point. This is the bottom of the box."},{"name":"series-data--q3","fullname":"series.data.q3","title":"q3","parent":"series-data","isParent":false,"returnType":"Number","description":"The higher quartile for each data point. This is the top of the box."},{"name":"plotOptions-line-marker-states-select--radius","fullname":"plotOptions.line.marker.states.select.radius","title":"radius","parent":"plotOptions-line-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-areaspline-marker--radius","fullname":"plotOptions.areaspline.marker.radius","title":"radius","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-series-marker-states-hover--radius","fullname":"plotOptions.series.marker.states.hover.radius","title":"radius","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-spline-marker--radius","fullname":"plotOptions.spline.marker.radius","title":"radius","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-line-marker--radius","fullname":"plotOptions.line.marker.radius","title":"radius","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-gauge-states-hover-marker--radius","fullname":"plotOptions.gauge.states.hover.marker.radius","title":"radius","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-funnel-states-hover-marker--radius","fullname":"plotOptions.funnel.states.hover.marker.radius","title":"radius","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-scatter-marker-states-select--radius","fullname":"plotOptions.scatter.marker.states.select.radius","title":"radius","parent":"plotOptions-scatter-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-gauge-dial--radius","fullname":"plotOptions.gauge.dial.radius","title":"radius","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"String","defaults":"80%","since":"2.3.0","description":"The radius or length of the dial, in percentages relative to the radius of the gauge itself.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-marker-states-hover--radius","fullname":"plotOptions.bubble.marker.states.hover.radius","title":"radius","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-polygon-marker-states-hover--radius","fullname":"plotOptions.polygon.marker.states.hover.radius","title":"radius","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-area-marker-states-select--radius","fullname":"plotOptions.area.marker.states.select.radius","title":"radius","parent":"plotOptions-area-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-area-states-hover-marker--radius","fullname":"plotOptions.area.states.hover.marker.radius","title":"radius","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--radius","fullname":"plotOptions.bar.states.hover.marker.radius","title":"radius","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-polygon-marker-states-select--radius","fullname":"plotOptions.polygon.marker.states.select.radius","title":"radius","parent":"plotOptions-polygon-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-solidgauge-states-hover-marker--radius","fullname":"plotOptions.solidgauge.states.hover.marker.radius","title":"radius","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-gauge-pivot--radius","fullname":"plotOptions.gauge.pivot.radius","title":"radius","parent":"plotOptions-gauge-pivot","isParent":false,"returnType":"Number","defaults":"5","since":"2.3.0","description":"The pixel radius of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-polygon-states-hover-marker--radius","fullname":"plotOptions.polygon.states.hover.marker.radius","title":"radius","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--radius","fullname":"plotOptions.spline.states.hover.marker.radius","title":"radius","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-bubble-states-hover-marker--radius","fullname":"plotOptions.bubble.states.hover.marker.radius","title":"radius","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-scatter-marker-states-hover--radius","fullname":"plotOptions.scatter.marker.states.hover.radius","title":"radius","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-areaspline-marker-states-select--radius","fullname":"plotOptions.areaspline.marker.states.select.radius","title":"radius","parent":"plotOptions-areaspline-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-line-marker-states-hover--radius","fullname":"plotOptions.line.marker.states.hover.radius","title":"radius","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-marker--radius","fullname":"plotOptions.areasplinerange.states.hover.marker.radius","title":"radius","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-areaspline-marker-states-hover--radius","fullname":"plotOptions.areaspline.marker.states.hover.radius","title":"radius","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-treemap-states-hover-marker--radius","fullname":"plotOptions.treemap.states.hover.marker.radius","title":"radius","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-arearange-states-hover-marker--radius","fullname":"plotOptions.arearange.states.hover.marker.radius","title":"radius","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-column-states-hover-marker--radius","fullname":"plotOptions.column.states.hover.marker.radius","title":"radius","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--radius","fullname":"plotOptions.scatter.states.hover.marker.radius","title":"radius","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-heatmap-states-hover-marker--radius","fullname":"plotOptions.heatmap.states.hover.marker.radius","title":"radius","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-series-marker-states-select--radius","fullname":"plotOptions.series.marker.states.select.radius","title":"radius","parent":"plotOptions-series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-pie-states-hover-marker--radius","fullname":"plotOptions.pie.states.hover.marker.radius","title":"radius","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-line-states-hover-marker--radius","fullname":"plotOptions.line.states.hover.marker.radius","title":"radius","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--radius","fullname":"plotOptions.areaspline.states.hover.marker.radius","title":"radius","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-bubble-marker-states-select--radius","fullname":"plotOptions.bubble.marker.states.select.radius","title":"radius","parent":"plotOptions-bubble-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-series-states-hover-marker--radius","fullname":"plotOptions.series.states.hover.marker.radius","title":"radius","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-area-marker--radius","fullname":"plotOptions.area.marker.radius","title":"radius","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-polygon-marker--radius","fullname":"plotOptions.polygon.marker.radius","title":"radius","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data--radius","fullname":"series.data.radius","title":"radius","parent":"series-data","isParent":false,"returnType":"Number|String","context":"","defaults":"","values":"","since":"4.1.6","description":"The outer radius of an individual point in a solid gauge. Can be given as a number (pixels) or percentage string.","demo":"Individual radius and innerRadius","seeAlso":"","deprecated":false},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-waterfall-states-hover-marker--radius","fullname":"plotOptions.waterfall.states.hover.marker.radius","title":"radius","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-boxplot-states-hover-marker--radius","fullname":"plotOptions.boxplot.states.hover.marker.radius","title":"radius","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-data-marker-states-hover--radius","fullname":"series.data.marker.states.hover.radius","title":"radius","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-marker--radius","fullname":"series.marker.radius","title":"radius","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker--radius","fullname":"series.data.marker.radius","title":"radius","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-select--radius","fullname":"series.marker.states.select.radius","title":"radius","parent":"series-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-area-marker-states-hover--radius","fullname":"plotOptions.area.marker.states.hover.radius","title":"radius","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"series-pivot--radius","fullname":"series.pivot.radius","title":"radius","parent":"series-pivot","isParent":false,"returnType":"Number","defaults":"5","since":"2.3.0","description":"The pixel radius of the pivot.","demo":"Pivot options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-states-hover-marker--radius","fullname":"plotOptions.errorbar.states.hover.marker.radius","title":"radius","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radius","fullname":"series.marker.states.hover.radius","title":"radius","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-bubble-marker--radius","fullname":"plotOptions.bubble.marker.radius","title":"radius","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-spline-marker-states-hover--radius","fullname":"plotOptions.spline.marker.states.hover.radius","title":"radius","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults to the normal state's radius + 2 as per the radiusPlus option.","demo":"10px radius","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--radius","fullname":"plotOptions.columnrange.states.hover.marker.radius","title":"radius","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-pyramid-states-hover-marker--radius","fullname":"plotOptions.pyramid.states.hover.marker.radius","title":"radius","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-spline-marker-states-select--radius","fullname":"plotOptions.spline.marker.states.select.radius","title":"radius","parent":"plotOptions-spline-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"series-dial--radius","fullname":"series.dial.radius","title":"radius","parent":"series-dial","isParent":false,"returnType":"String","defaults":"80%","since":"2.3.0","description":"The radius or length of the dial, in percentages relative to the radius of the gauge itself.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--radius","fullname":"series.states.hover.marker.radius","title":"radius","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-data-marker-states-select--radius","fullname":"series.data.marker.states.select.radius","title":"radius","parent":"series-data-marker-states-select","isParent":false,"returnType":"Number","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2.","demo":"10px radius for selected points"},{"name":"plotOptions-series-marker--radius","fullname":"plotOptions.series.marker.radius","title":"radius","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"plotOptions-scatter-marker--radius","fullname":"plotOptions.scatter.marker.radius","title":"radius","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","demo":"Bigger markers","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-marker-states-hover--radiusPlus","fullname":"plotOptions.scatter.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-scatter-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-line-marker-states-hover--radiusPlus","fullname":"plotOptions.line.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-line-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-marker-states-hover--radiusPlus","fullname":"plotOptions.spline.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-spline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-marker-states-hover--radiusPlus","fullname":"plotOptions.bubble.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-bubble-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-series-marker-states-hover--radiusPlus","fullname":"plotOptions.series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-data-marker-states-hover--radiusPlus","fullname":"series.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-marker-states-hover--radiusPlus","fullname":"series.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-area-marker-states-hover--radiusPlus","fullname":"plotOptions.area.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-area-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-marker-states-hover--radiusPlus","fullname":"plotOptions.areaspline.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-areaspline-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-marker-states-hover--radiusPlus","fullname":"plotOptions.polygon.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"plotOptions-polygon-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"4.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"5 pixels greater radius on hover","seeAlso":"","deprecated":false},{"name":"series-dial--rearLength","fullname":"series.dial.rearLength","title":"rearLength","parent":"series-dial","isParent":false,"returnType":"String","defaults":"10%","since":"2.3.0","description":"The length of the dial's rear end, the part that extends out on the other side of the pivot. Relative to the dial's length. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dial--rearLength","fullname":"plotOptions.gauge.dial.rearLength","title":"rearLength","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"String","defaults":"10%","since":"2.3.0","description":"The length of the dial's rear end, the part that extends out on the other side of the pivot. Relative to the dial's length. ","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"chart-events--redraw","fullname":"chart.events.redraw","title":"redraw","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"1.2.0","description":"Fires when the chart is redrawn, either after a call to chart.redraw() or after an axis, series or point is modified with the redraw option set to true. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.","demo":"Alert on chart redraw","deprecated":false},{"name":"chart--reflow","fullname":"chart.reflow","title":"reflow","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Whether to reflow the chart to fit the width of the container div on resizing the window.","demo":"Move the bar between the JavaScript frame and the Preview frame to see the effect: \n\t\t\tTrue by default, \n\t\t\tfalse."},{"name":"chart-resetZoomButton--relativeTo","fullname":"chart.resetZoomButton.relativeTo","title":"relativeTo","parent":"chart-resetZoomButton","isParent":false,"returnType":"String","defaults":"plot","values":"[\"plot\", \"chart\"]","since":"2.2","description":"What frame the button should be placed related to. Can be either \"plot\" or \"chart\".","demo":"Relative to the chart"},{"name":"drilldown-drillUpButton--relativeTo","fullname":"drilldown.drillUpButton.relativeTo","title":"relativeTo","parent":"drilldown-drillUpButton","isParent":false,"returnType":"String","defaults":"plotBox","values":"","since":"3.0.8","description":"What box to align the button to. Can be either \"plotBox\" or \"spacingBox\".","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-solidgauge-point-events--remove","fullname":"plotOptions.solidgauge.point.events.remove","title":"remove","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-column-point-events--remove","fullname":"plotOptions.column.point.events.remove","title":"remove","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-boxplot-point-events--remove","fullname":"plotOptions.boxplot.point.events.remove","title":"remove","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-spline-point-events--remove","fullname":"plotOptions.spline.point.events.remove","title":"remove","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-waterfall-point-events--remove","fullname":"plotOptions.waterfall.point.events.remove","title":"remove","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-pie-point-events--remove","fullname":"plotOptions.pie.point.events.remove","title":"remove","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-errorbar-point-events--remove","fullname":"plotOptions.errorbar.point.events.remove","title":"remove","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-heatmap-point-events--remove","fullname":"plotOptions.heatmap.point.events.remove","title":"remove","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-area-point-events--remove","fullname":"plotOptions.area.point.events.remove","title":"remove","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-areaspline-point-events--remove","fullname":"plotOptions.areaspline.point.events.remove","title":"remove","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-bubble-point-events--remove","fullname":"plotOptions.bubble.point.events.remove","title":"remove","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-polygon-point-events--remove","fullname":"plotOptions.polygon.point.events.remove","title":"remove","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-funnel-point-events--remove","fullname":"plotOptions.funnel.point.events.remove","title":"remove","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-columnrange-point-events--remove","fullname":"plotOptions.columnrange.point.events.remove","title":"remove","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-line-point-events--remove","fullname":"plotOptions.line.point.events.remove","title":"remove","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-series-point-events--remove","fullname":"plotOptions.series.point.events.remove","title":"remove","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-scatter-point-events--remove","fullname":"plotOptions.scatter.point.events.remove","title":"remove","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-gauge-point-events--remove","fullname":"plotOptions.gauge.point.events.remove","title":"remove","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-pyramid-point-events--remove","fullname":"plotOptions.pyramid.point.events.remove","title":"remove","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-treemap-point-events--remove","fullname":"plotOptions.treemap.point.events.remove","title":"remove","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--remove","fullname":"plotOptions.areasplinerange.point.events.remove","title":"remove","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-arearange-point-events--remove","fullname":"plotOptions.arearange.point.events.remove","title":"remove","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"plotOptions-bar-point-events--remove","fullname":"plotOptions.bar.point.events.remove","title":"remove","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-data-events--remove","fullname":"series.data.events.remove","title":"remove","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"series-point-events--remove","fullname":"series.point.events.remove","title":"remove","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is removed using the .remove() method. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Remove point and confirm","deprecated":false},{"name":"chart--renderTo","fullname":"chart.renderTo","title":"renderTo","parent":"chart","isParent":false,"returnType":"String|Object","description":"The HTML element where the chart will be rendered. If it is a string, the element by that id is used. The HTML element can also be passed by direct reference.","demo":"String,\n\t\t\tobject reference,\n\t\t\tobject reference through jQuery,"},{"name":"yAxis-breaks--repeat","fullname":"yAxis.breaks.repeat","title":"repeat","parent":"yAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.0","description":"Defines an interval after which the break appears again. By default the breaks do not repeat.","demo":"Repeated Break","deprecated":false},{"name":"xAxis-breaks--repeat","fullname":"xAxis.breaks.repeat","title":"repeat","parent":"xAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.0","description":"Defines an interval after which the break appears again. By default the breaks do not repeat.","demo":"Repeated Break","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--reserveSpace","fullname":"plotOptions.pie.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--reserveSpace","fullname":"plotOptions.treemap.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"xAxis-labels--reserveSpace","fullname":"xAxis.labels.reserveSpace","title":"reserveSpace","parent":"xAxis-labels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--reserveSpace","fullname":"plotOptions.solidgauge.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--reserveSpace","fullname":"plotOptions.polygon.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--reserveSpace","fullname":"plotOptions.arearange.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--reserveSpace","fullname":"plotOptions.series.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--reserveSpace","fullname":"plotOptions.columnrange.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--reserveSpace","fullname":"plotOptions.scatter.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--reserveSpace","fullname":"plotOptions.gauge.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--reserveSpace","fullname":"plotOptions.column.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--reserveSpace","fullname":"plotOptions.areaspline.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--reserveSpace","fullname":"plotOptions.waterfall.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--reserveSpace","fullname":"plotOptions.line.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--reserveSpace","fullname":"plotOptions.spline.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--reserveSpace","fullname":"plotOptions.area.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--reserveSpace","fullname":"plotOptions.heatmap.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--reserveSpace","fullname":"plotOptions.areasplinerange.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"yAxis-labels--reserveSpace","fullname":"yAxis.labels.reserveSpace","title":"reserveSpace","parent":"yAxis-labels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--reserveSpace","fullname":"plotOptions.funnel.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--reserveSpace","fullname":"plotOptions.bar.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--reserveSpace","fullname":"plotOptions.bubble.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--reserveSpace","fullname":"plotOptions.pyramid.dataLabels.reserveSpace","title":"reserveSpace","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--reserveSpace","fullname":"series.dataLabels.reserveSpace","title":"reserveSpace","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.10","description":"Whether to reserve space for the labels. This can be turned off when for example the labels are rendered inside the plot area instead of outside.","demo":"No reserved space, labels inside plot.","seeAlso":"","deprecated":false},{"name":"lang--resetZoom","fullname":"lang.resetZoom","title":"resetZoom","parent":"lang","isParent":false,"returnType":"String","defaults":"Reset zoom","since":"1.2.4","description":"The text for the label appearing when a chart is zoomed."},{"name":"chart-resetZoomButton","fullname":"chart.resetZoomButton","title":"resetZoomButton","parent":"chart","isParent":true,"description":"The button that appears after a selection zoom, allowing the user to reset zoom."},{"name":"lang--resetZoomTitle","fullname":"lang.resetZoomTitle","title":"resetZoomTitle","parent":"lang","isParent":false,"returnType":"String","defaults":"Reset zoom level 1:1","since":"1.2.4","description":"The tooltip title for the label appearing when a chart is zoomed."},{"name":"plotOptions-funnel--reversed","fullname":"plotOptions.funnel.reversed","title":"reversed","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0.10","description":"A reversed funnel has the widest area down. A reversed funnel with no neck width and neck height is a pyramid.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis--reversed","fullname":"xAxis.reversed","title":"reversed","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to reverse the axis so that the highest number is closest to the origin. If the chart is inverted, the x axis is reversed by default.","demo":"Reversed Y axis","deprecated":false},{"name":"series--reversed","fullname":"series.reversed","title":"reversed","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0.10","description":"A reversed funnel has the widest area down. A reversed funnel with no neck width and neck height is a pyramid.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--reversed","fullname":"plotOptions.pyramid.reversed","title":"reversed","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"3.0.10","description":"The pyramid is reversed by default, as opposed to the funnel, which shares the layout engine, and is not reversed.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--reversed","fullname":"yAxis.reversed","title":"reversed","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to reverse the axis so that the highest number is closest to the origin. If the chart is inverted, the x axis is reversed by default.","demo":"Reversed Y axis","deprecated":false},{"name":"series--reversed","fullname":"series.reversed","title":"reversed","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"3.0.10","description":"The pyramid is reversed by default, as opposed to the funnel, which shares the layout engine, and is not reversed.","demo":"","seeAlso":"","deprecated":false},{"name":"legend--reversed","fullname":"legend.reversed","title":"reversed","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.5","description":"Whether to reverse the order of the legend items compared to the order of the series or points as defined in the configuration object.","demo":"Stacked bar with reversed legend","seeAlso":"yAxis.reversedStacks, series.legendIndex","deprecated":false},{"name":"yAxis--reversedStacks","fullname":"yAxis.reversedStacks","title":"reversedStacks","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0.10","description":"If true, the first series in a stack will be drawn on top in a positive, non-reversed Y axis. If false, the first series is in the base of the stack.","demo":"Non-reversed stacks.","deprecated":false},{"name":"plotOptions-scatter-dataLabels--rotation","fullname":"plotOptions.scatter.dataLabels.rotation","title":"rotation","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"yAxis-labels--rotation","fullname":"yAxis.labels.rotation","title":"rotation","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"0","description":"Rotation of the labels in degrees.","demo":"X axis labels rotated 90°"},{"name":"plotOptions-polygon-dataLabels--rotation","fullname":"plotOptions.polygon.dataLabels.rotation","title":"rotation","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--rotation","fullname":"plotOptions.areaspline.dataLabels.rotation","title":"rotation","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-arearange-dataLabels--rotation","fullname":"plotOptions.arearange.dataLabels.rotation","title":"rotation","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-series-dataLabels--rotation","fullname":"plotOptions.series.dataLabels.rotation","title":"rotation","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-gauge-dataLabels--rotation","fullname":"plotOptions.gauge.dataLabels.rotation","title":"rotation","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--rotation","fullname":"plotOptions.columnrange.dataLabels.rotation","title":"rotation","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"yAxis-stackLabels--rotation","fullname":"yAxis.stackLabels.rotation","title":"rotation","parent":"yAxis-stackLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.1.5","description":"Rotation of the labels in degrees.","demo":"Labels rotated 45°"},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"yAxis-plotBands-label--rotation","fullname":"yAxis.plotBands.label.rotation","title":"rotation","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"0","since":"2.1","description":"Rotation of the text label in degrees .","demo":"Vertical text"},{"name":"xAxis-plotBands-label--rotation","fullname":"xAxis.plotBands.label.rotation","title":"rotation","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"0","since":"2.1","description":"Rotation of the text label in degrees .","demo":"Vertical text"},{"name":"plotOptions-line-dataLabels--rotation","fullname":"plotOptions.line.dataLabels.rotation","title":"rotation","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-column-dataLabels--rotation","fullname":"plotOptions.column.dataLabels.rotation","title":"rotation","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-bar-dataLabels--rotation","fullname":"plotOptions.bar.dataLabels.rotation","title":"rotation","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-spline-dataLabels--rotation","fullname":"plotOptions.spline.dataLabels.rotation","title":"rotation","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--rotation","fullname":"plotOptions.pyramid.dataLabels.rotation","title":"rotation","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--rotation","fullname":"plotOptions.waterfall.dataLabels.rotation","title":"rotation","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--rotation","fullname":"plotOptions.areasplinerange.dataLabels.rotation","title":"rotation","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--rotation","fullname":"plotOptions.solidgauge.dataLabels.rotation","title":"rotation","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-area-dataLabels--rotation","fullname":"plotOptions.area.dataLabels.rotation","title":"rotation","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-treemap-dataLabels--rotation","fullname":"plotOptions.treemap.dataLabels.rotation","title":"rotation","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"yAxis-title--rotation","fullname":"yAxis.title.rotation","title":"rotation","parent":"yAxis-title","isParent":false,"returnType":"Number","defaults":"270","description":"The rotation of the text in degrees. 0 is horizontal, 270 is vertical reading from bottom to top.","demo":"Horizontal Y axis title","deprecated":false},{"name":"xAxis-title--rotation","fullname":"xAxis.title.rotation","title":"rotation","parent":"xAxis-title","isParent":false,"returnType":"Number","defaults":"0","description":"The rotation of the text in degrees. 0 is horizontal, 270 is vertical reading from bottom to top.","demo":"Horizontal Y axis title","deprecated":false},{"name":"xAxis-plotLines-label--rotation","fullname":"xAxis.plotLines.label.rotation","title":"rotation","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Rotation of the text label in degrees. Defaults to 0 for horizontal plot lines and 90 for vertical lines.","demo":"Slanted text"},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-pie-dataLabels--rotation","fullname":"plotOptions.pie.dataLabels.rotation","title":"rotation","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"yAxis-plotLines-label--rotation","fullname":"yAxis.plotLines.label.rotation","title":"rotation","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Rotation of the text label in degrees. Defaults to 0 for horizontal plot lines and 90 for vertical lines.","demo":"Slanted text"},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-bubble-dataLabels--rotation","fullname":"plotOptions.bubble.dataLabels.rotation","title":"rotation","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-funnel-dataLabels--rotation","fullname":"plotOptions.funnel.dataLabels.rotation","title":"rotation","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--rotation","fullname":"plotOptions.heatmap.dataLabels.rotation","title":"rotation","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"xAxis-labels--rotation","fullname":"xAxis.labels.rotation","title":"rotation","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"0","description":"Rotation of the labels in degrees.","demo":"X axis labels rotated 90°"},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"series-dataLabels--rotation","fullname":"series.dataLabels.rotation","title":"rotation","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"Text rotation in degrees. Note that due to a more complex structure, backgrounds, borders and padding will be lost on a rotated data label.","demo":"Vertical labels","deprecated":false},{"name":"data--rows","fullname":"data.rows","title":"rows","parent":"data","isParent":false,"returnType":"Array>","defaults":"","values":"","since":"4.0","description":"The same as the columns input option, but defining rows intead of columns.","demo":"Data in rows","seeAlso":"data.columns","deprecated":false},{"name":"plotOptions-heatmap--rowsize","fullname":"plotOptions.heatmap.rowsize","title":"rowsize","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The row size - how many Y axis units each heatmap row should span.","demo":"1 by default","seeAlso":"","deprecated":false},{"name":"series--rowsize","fullname":"series.rowsize","title":"rowsize","parent":"series","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The row size - how many Y axis units each heatmap row should span.","demo":"1 by default","seeAlso":"","deprecated":false},{"name":"legend--rtl","fullname":"legend.rtl","title":"rtl","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2","description":"Whether to show the symbol on the right side of the text rather than the left side. This is common in Arabic and Hebraic.","demo":"Symbol to the right"},{"name":"exporting--scale","fullname":"exporting.scale","title":"scale","parent":"exporting","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"3.0","description":"Defines the scale or zoom factor for the exported image compared to the on-screen display. While for instance a 600px wide chart may look good on a website, it will look bad in print. The default scale of 2 makes this chart export to a 1200px PNG or JPG. ","demo":"Scale demonstrated","seeAlso":"chart.width, exporting.sourceWidth","deprecated":false},{"name":"plotOptions-scatter","fullname":"plotOptions.scatter","title":"scatter","parent":"plotOptions","isParent":true,"deprecated":false},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-bar-point-events--select","fullname":"plotOptions.bar.point.events.select","title":"select","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-polygon-point-events--select","fullname":"plotOptions.polygon.point.events.select","title":"select","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-heatmap-point-events--select","fullname":"plotOptions.heatmap.point.events.select","title":"select","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-area-point-events--select","fullname":"plotOptions.area.point.events.select","title":"select","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-spline-point-events--select","fullname":"plotOptions.spline.point.events.select","title":"select","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-pie-point-events--select","fullname":"plotOptions.pie.point.events.select","title":"select","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-series-point-events--select","fullname":"plotOptions.series.point.events.select","title":"select","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-spline-marker-states-select","fullname":"plotOptions.spline.marker.states.select","title":"select","parent":"plotOptions-spline-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-arearange-point-events--select","fullname":"plotOptions.arearange.point.events.select","title":"select","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-areaspline-marker-states-select","fullname":"plotOptions.areaspline.marker.states.select","title":"select","parent":"plotOptions-areaspline-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-polygon-marker-states-select","fullname":"plotOptions.polygon.marker.states.select","title":"select","parent":"plotOptions-polygon-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--select","fullname":"plotOptions.areasplinerange.point.events.select","title":"select","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-bubble-marker-states-select","fullname":"plotOptions.bubble.marker.states.select","title":"select","parent":"plotOptions-bubble-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-boxplot-point-events--select","fullname":"plotOptions.boxplot.point.events.select","title":"select","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-bubble-point-events--select","fullname":"plotOptions.bubble.point.events.select","title":"select","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-column-point-events--select","fullname":"plotOptions.column.point.events.select","title":"select","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-series-marker-states-select","fullname":"plotOptions.series.marker.states.select","title":"select","parent":"plotOptions-series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-treemap-point-events--select","fullname":"plotOptions.treemap.point.events.select","title":"select","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-line-point-events--select","fullname":"plotOptions.line.point.events.select","title":"select","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-area-marker-states-select","fullname":"plotOptions.area.marker.states.select","title":"select","parent":"plotOptions-area-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-errorbar-point-events--select","fullname":"plotOptions.errorbar.point.events.select","title":"select","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-solidgauge-point-events--select","fullname":"plotOptions.solidgauge.point.events.select","title":"select","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-waterfall-point-events--select","fullname":"plotOptions.waterfall.point.events.select","title":"select","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-line-marker-states-select","fullname":"plotOptions.line.marker.states.select","title":"select","parent":"plotOptions-line-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-funnel-point-events--select","fullname":"plotOptions.funnel.point.events.select","title":"select","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-scatter-marker-states-select","fullname":"plotOptions.scatter.marker.states.select","title":"select","parent":"plotOptions-scatter-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-pyramid-point-events--select","fullname":"plotOptions.pyramid.point.events.select","title":"select","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-marker-states-select","fullname":"series.marker.states.select","title":"select","parent":"series-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-areaspline-point-events--select","fullname":"plotOptions.areaspline.point.events.select","title":"select","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-events--select","fullname":"series.data.events.select","title":"select","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-scatter-point-events--select","fullname":"plotOptions.scatter.point.events.select","title":"select","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-data-marker-states-select","fullname":"series.data.marker.states.select","title":"select","parent":"series-data-marker-states","isParent":true,"description":"The appearance of the point marker when selected. In order to allow a point to be \n\t\tselected, set the series.allowPointSelect option to true."},{"name":"plotOptions-gauge-point-events--select","fullname":"plotOptions.gauge.point.events.select","title":"select","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"series-point-events--select","fullname":"series.point.events.select","title":"select","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-columnrange-point-events--select","fullname":"plotOptions.columnrange.point.events.select","title":"select","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last selected point","deprecated":false},{"name":"plotOptions-bubble--selected","fullname":"plotOptions.bubble.selected","title":"selected","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-pyramid--selected","fullname":"plotOptions.pyramid.selected","title":"selected","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-solidgauge--selected","fullname":"plotOptions.solidgauge.selected","title":"selected","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-columnrange--selected","fullname":"plotOptions.columnrange.selected","title":"selected","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-heatmap--selected","fullname":"plotOptions.heatmap.selected","title":"selected","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-polygon--selected","fullname":"plotOptions.polygon.selected","title":"selected","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-column--selected","fullname":"plotOptions.column.selected","title":"selected","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-treemap--selected","fullname":"plotOptions.treemap.selected","title":"selected","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-pie--selected","fullname":"plotOptions.pie.selected","title":"selected","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-areasplinerange--selected","fullname":"plotOptions.areasplinerange.selected","title":"selected","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-areaspline--selected","fullname":"plotOptions.areaspline.selected","title":"selected","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-bar--selected","fullname":"plotOptions.bar.selected","title":"selected","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-spline--selected","fullname":"plotOptions.spline.selected","title":"selected","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-waterfall--selected","fullname":"plotOptions.waterfall.selected","title":"selected","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-errorbar--selected","fullname":"plotOptions.errorbar.selected","title":"selected","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-area--selected","fullname":"plotOptions.area.selected","title":"selected","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-gauge--selected","fullname":"plotOptions.gauge.selected","title":"selected","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-boxplot--selected","fullname":"plotOptions.boxplot.selected","title":"selected","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-funnel--selected","fullname":"plotOptions.funnel.selected","title":"selected","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-scatter--selected","fullname":"plotOptions.scatter.selected","title":"selected","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-line--selected","fullname":"plotOptions.line.selected","title":"selected","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"plotOptions-series--selected","fullname":"plotOptions.series.selected","title":"selected","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series--selected","fullname":"series.selected","title":"selected","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"series-data--selected","fullname":"series.data.selected","title":"selected","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-arearange--selected","fullname":"plotOptions.arearange.selected","title":"selected","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.","demo":"One out of two series selected"},{"name":"chart-events--selection","fullname":"chart.events.selection","title":"selection","parent":"chart-events","isParent":false,"returnType":"Function","description":"

Fires when an area of the chart has been selected. Selection is enabled by setting the chart's zoomType. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. The default action for the selection event is to zoom the chart to the selected area. It can be prevented by calling event.preventDefault().

Information on the selected area can be found through event.xAxis and event.yAxis, which are arrays containing the axes of each dimension and each axis' min and max values. The primary axes are event.xAxis[0] and event.yAxis[0]. Remember the unit of a datetime axis is milliseconds since 1970-01-01 00:00:00.

\r\n
selection: function(event) {\r\n\t// log the min and max of the primary, datetime x-axis\r\n\tconsole.log(\r\n\t\tHighcharts.dateFormat('%Y-%m-%d %H:%M:%S', event.xAxis[0].min),\r\n\t\tHighcharts.dateFormat('%Y-%m-%d %H:%M:%S', event.xAxis[0].max)\r\n\t);\r\n\t// log the min and max of the y axis\r\n\tconsole.log(event.yAxis[0].min, event.yAxis[0].max);\r\n}
","demo":"Report on selection and reset, select a range of points through a drag selection.","deprecated":false},{"name":"chart--selectionMarkerFill","fullname":"chart.selectionMarkerFill","title":"selectionMarkerFill","parent":"chart","isParent":false,"returnType":"Color","defaults":"rgba(69,114,167,0.25)","since":"2.1.7","description":"The background color of the marker square when selecting (zooming in on) an area of the chart.","deprecated":false},{"name":"plotOptions-series","fullname":"plotOptions.series","title":"series","parent":"plotOptions","isParent":true,"description":"

General options for all series types.

"},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"The actual series to append to the chart. In addition to \r\n\tthe members listed below, any member of the plotOptions for that specific\r\n\ttype of plot can be added to a series individually. For example, even though a general\r\n\tlineWidth is specified in plotOptions.series, an individual\r\n\tlineWidth can be specified for each series.","demo":"","deprecated":false},{"name":"drilldown--series","fullname":"drilldown.series","title":"series","parent":"drilldown","isParent":false,"returnType":"Array","since":"3.0.8","description":"An array of series configurations for the drill down. Each series configuration uses the same syntax as the series option set. These drilldown series are hidden by default. The drilldown series is linked to the parent series' point by its id.","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A area series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.area.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A arearange series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.arearange.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A areaspline series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.areaspline.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A areasplinerange series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.areasplinerange.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A bar series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.bar.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A boxplot series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.boxplot.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A bubble series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.bubble.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A column series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.column.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A columnrange series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.columnrange.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A errorbar series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.errorbar.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A funnel series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.funnel.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A gauge series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.gauge.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A heatmap series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.heatmap.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A line series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.line.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A pie series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.pie.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A polygon series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.polygon.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A pyramid series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.pyramid.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A scatter series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.scatter.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A solidgauge series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.solidgauge.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A spline series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.spline.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A treemap series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.treemap.

","demo":"","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array","since":"","description":"

A waterfall series. If the .type\">type option is not specified, it is inherited from chart.type.

\r\n\r\n

For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.waterfall.

","demo":"","deprecated":false},{"name":"data--seriesMapping","fullname":"data.seriesMapping","title":"seriesMapping","parent":"data","isParent":false,"returnType":"Array","since":"4.0.4","description":"An array containing object with Point property names along with what column id the property should be taken from.","demo":"Label from data set","deprecated":false},{"name":"xAxis-events--setExtremes","fullname":"xAxis.events.setExtremes","title":"setExtremes","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"1.2.0","description":"

Fires when the minimum and maximum is set for the axis, either by calling the .setExtremes() method or by selecting an area in the chart. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

\r\n\r\n

The new user set minimum and maximum values can be found by event.min and event.max. When an axis is zoomed all the way out from the \"Reset zoom\" button, event.min and event.max are null, and the new extremes are set based on this.dataMin and this.dataMax.

","deprecated":false},{"name":"yAxis-events--setExtremes","fullname":"yAxis.events.setExtremes","title":"setExtremes","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"1.2.0","description":"

Fires when the minimum and maximum is set for the axis, either by calling the .setExtremes() method or by selecting an area in the chart. One parameter, event, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.

\r\n\r\n

The new user set minimum and maximum values can be found by event.min and event.max. When an axis is zoomed all the way out from the \"Reset zoom\" button, event.min and event.max are null, and the new extremes are set based on this.dataMin and this.dataMax.

","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--shadow","fullname":"plotOptions.spline.shadow","title":"shadow","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--shadow","fullname":"plotOptions.heatmap.dataLabels.shadow","title":"shadow","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--shadow","fullname":"plotOptions.bubble.dataLabels.shadow","title":"shadow","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--shadow","fullname":"plotOptions.polygon.dataLabels.shadow","title":"shadow","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--shadow","fullname":"plotOptions.series.dataLabels.shadow","title":"shadow","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--shadow","fullname":"plotOptions.solidgauge.dataLabels.shadow","title":"shadow","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--shadow","fullname":"plotOptions.bar.shadow","title":"shadow","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--shadow","fullname":"plotOptions.funnel.dataLabels.shadow","title":"shadow","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--shadow","fullname":"plotOptions.areasplinerange.shadow","title":"shadow","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-area--shadow","fullname":"plotOptions.area.shadow","title":"shadow","parent":"plotOptions-area","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--shadow","fullname":"plotOptions.pie.shadow","title":"shadow","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--shadow","fullname":"plotOptions.column.dataLabels.shadow","title":"shadow","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--shadow","fullname":"plotOptions.gauge.dataLabels.shadow","title":"shadow","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--shadow","fullname":"plotOptions.areaspline.shadow","title":"shadow","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--shadow","fullname":"plotOptions.scatter.shadow","title":"shadow","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"legend--shadow","fullname":"legend.shadow","title":"shadow","parent":"legend","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the legend. A backgroundColor\r also needs to be applied for this to take effect. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"White background and drop shadow","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--shadow","fullname":"plotOptions.treemap.dataLabels.shadow","title":"shadow","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--shadow","fullname":"plotOptions.pyramid.dataLabels.shadow","title":"shadow","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"chart--shadow","fullname":"chart.shadow","title":"shadow","parent":"chart","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the outer chart area. Requires that \r backgroundColor be set. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow","seeAlso":"","deprecated":false},{"name":"plotOptions-column--shadow","fullname":"plotOptions.column.shadow","title":"shadow","parent":"plotOptions-column","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-series--shadow","fullname":"plotOptions.series.shadow","title":"shadow","parent":"plotOptions-series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--shadow","fullname":"plotOptions.bubble.shadow","title":"shadow","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--shadow","fullname":"plotOptions.pie.dataLabels.shadow","title":"shadow","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--shadow","fullname":"plotOptions.area.dataLabels.shadow","title":"shadow","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--shadow","fullname":"plotOptions.arearange.dataLabels.shadow","title":"shadow","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-line--shadow","fullname":"plotOptions.line.shadow","title":"shadow","parent":"plotOptions-line","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--shadow","fullname":"plotOptions.polygon.shadow","title":"shadow","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--shadow","fullname":"plotOptions.funnel.shadow","title":"shadow","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--shadow","fullname":"plotOptions.columnrange.shadow","title":"shadow","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--shadow","fullname":"plotOptions.spline.dataLabels.shadow","title":"shadow","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--shadow","fullname":"plotOptions.line.dataLabels.shadow","title":"shadow","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--shadow","fullname":"plotOptions.treemap.shadow","title":"shadow","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--shadow","fullname":"plotOptions.areasplinerange.dataLabels.shadow","title":"shadow","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--shadow","fullname":"plotOptions.heatmap.shadow","title":"shadow","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--shadow","fullname":"plotOptions.scatter.dataLabels.shadow","title":"shadow","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--shadow","fullname":"plotOptions.waterfall.dataLabels.shadow","title":"shadow","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--shadow","fullname":"plotOptions.columnrange.dataLabels.shadow","title":"shadow","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--shadow","fullname":"plotOptions.waterfall.shadow","title":"shadow","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--shadow","fullname":"plotOptions.areaspline.dataLabels.shadow","title":"shadow","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--shadow","fullname":"plotOptions.pyramid.shadow","title":"shadow","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--shadow","fullname":"plotOptions.bar.dataLabels.shadow","title":"shadow","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"tooltip--shadow","fullname":"tooltip.shadow","title":"shadow","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to apply a drop shadow to the tooltip.","demo":"True by default,\n\t\t\tfalse"},{"name":"series-dataLabels--shadow","fullname":"series.dataLabels.shadow","title":"shadow","parent":"series-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"2.2.1","description":"The shadow of the box. Works best with borderWidth or backgroundColor. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Data labels box options","seeAlso":"","deprecated":false},{"name":"series--shadow","fullname":"series.shadow","title":"shadow","parent":"series","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.","demo":"Shadow enabled","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--shadow","fullname":"plotOptions.arearange.shadow","title":"shadow","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-bubble-dataLabels--shape","fullname":"plotOptions.bubble.dataLabels.shape","title":"shape","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-polygon-dataLabels--shape","fullname":"plotOptions.polygon.dataLabels.shape","title":"shape","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-gauge-dataLabels--shape","fullname":"plotOptions.gauge.dataLabels.shape","title":"shape","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"tooltip--shape","fullname":"tooltip.shape","title":"shape","parent":"tooltip","isParent":false,"returnType":"String","defaults":"callout","values":"","since":"4.0","description":"The name of a symbol to use for the border around the tooltip. In Highcharts 3.x and less, the shape was square. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--shape","fullname":"plotOptions.area.dataLabels.shape","title":"shape","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--shape","fullname":"plotOptions.areaspline.dataLabels.shape","title":"shape","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-scatter-dataLabels--shape","fullname":"plotOptions.scatter.dataLabels.shape","title":"shape","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-series-dataLabels--shape","fullname":"plotOptions.series.dataLabels.shape","title":"shape","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--shape","fullname":"plotOptions.solidgauge.dataLabels.shape","title":"shape","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-line-dataLabels--shape","fullname":"plotOptions.line.dataLabels.shape","title":"shape","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--shape","fullname":"plotOptions.waterfall.dataLabels.shape","title":"shape","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-pie-dataLabels--shape","fullname":"plotOptions.pie.dataLabels.shape","title":"shape","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--shape","fullname":"plotOptions.columnrange.dataLabels.shape","title":"shape","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-bar-dataLabels--shape","fullname":"plotOptions.bar.dataLabels.shape","title":"shape","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--shape","fullname":"plotOptions.areasplinerange.dataLabels.shape","title":"shape","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--shape","fullname":"plotOptions.pyramid.dataLabels.shape","title":"shape","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-column-dataLabels--shape","fullname":"plotOptions.column.dataLabels.shape","title":"shape","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-arearange-dataLabels--shape","fullname":"plotOptions.arearange.dataLabels.shape","title":"shape","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-treemap-dataLabels--shape","fullname":"plotOptions.treemap.dataLabels.shape","title":"shape","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-funnel-dataLabels--shape","fullname":"plotOptions.funnel.dataLabels.shape","title":"shape","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-spline-dataLabels--shape","fullname":"plotOptions.spline.dataLabels.shape","title":"shape","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"series-dataLabels--shape","fullname":"series.dataLabels.shape","title":"shape","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--shape","fullname":"plotOptions.heatmap.dataLabels.shape","title":"shape","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"4.1.2","description":"The name of a symbol to use for the border around the label. Symbols are predefined functions on the Renderer object.","demo":"A callout for annotations","deprecated":false},{"name":"tooltip--shared","fullname":"tooltip.shared","title":"shared","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1","description":"

When the tooltip is shared, the entire plot area will capture mouse movement or touch events. Tooltip texts for series types with ordered data (not pie, scatter, flags etc) will be shown in a single bubble. This is recommended for single series charts and for tablet/mobile optimized charts.

\r\n\r\n

See also the experimental implementation for tooltip.split, that is better suited for charts with many series, especially line-type series.

","demo":"False by default,\r\n\t\t\ttrue, \r\n\t\t\ttrue with x axis crosshair, \r\n\t\t\ttrue with mixed series types.","deprecated":false},{"name":"lang--shortMonths","fullname":"lang.shortMonths","title":"shortMonths","parent":"lang","isParent":false,"returnType":"Array","defaults":"[ \"Jan\" , \"Feb\" , \"Mar\" , \"Apr\" , \"May\" , \"Jun\" , \"Jul\" , \"Aug\" , \"Sep\" , \"Oct\" , \"Nov\" , \"Dec\"]","since":"","description":"An array containing the months names in abbreviated form. Corresponds to the \r %b format in Highcharts.dateFormat(). ","demo":"","seeAlso":"","deprecated":false},{"name":"lang--shortWeekdays","fullname":"lang.shortWeekdays","title":"shortWeekdays","parent":"lang","isParent":false,"returnType":"Array","since":"4.2.4","description":"Short week days, starting Sunday. If not specified, Highcharts uses the first three letters of the lang.weekdays option.","demo":"Finnish two-letter abbreviations.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-column-events--show","fullname":"plotOptions.column.events.show","title":"show","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-gauge-events--show","fullname":"plotOptions.gauge.events.show","title":"show","parent":"plotOptions-gauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-series-events--show","fullname":"plotOptions.series.events.show","title":"show","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-treemap-events--show","fullname":"plotOptions.treemap.events.show","title":"show","parent":"plotOptions-treemap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-polygon-events--show","fullname":"plotOptions.polygon.events.show","title":"show","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-boxplot-events--show","fullname":"plotOptions.boxplot.events.show","title":"show","parent":"plotOptions-boxplot-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-heatmap-events--show","fullname":"plotOptions.heatmap.events.show","title":"show","parent":"plotOptions-heatmap-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-solidgauge-events--show","fullname":"plotOptions.solidgauge.events.show","title":"show","parent":"plotOptions-solidgauge-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-pie-events--show","fullname":"plotOptions.pie.events.show","title":"show","parent":"plotOptions-pie-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-funnel-events--show","fullname":"plotOptions.funnel.events.show","title":"show","parent":"plotOptions-funnel-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-line-events--show","fullname":"plotOptions.line.events.show","title":"show","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-areasplinerange-events--show","fullname":"plotOptions.areasplinerange.events.show","title":"show","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-bar-events--show","fullname":"plotOptions.bar.events.show","title":"show","parent":"plotOptions-bar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-bubble-events--show","fullname":"plotOptions.bubble.events.show","title":"show","parent":"plotOptions-bubble-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-waterfall-events--show","fullname":"plotOptions.waterfall.events.show","title":"show","parent":"plotOptions-waterfall-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-areaspline-events--show","fullname":"plotOptions.areaspline.events.show","title":"show","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-arearange-events--show","fullname":"plotOptions.arearange.events.show","title":"show","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-scatter-events--show","fullname":"plotOptions.scatter.events.show","title":"show","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-area-events--show","fullname":"plotOptions.area.events.show","title":"show","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-pyramid-events--show","fullname":"plotOptions.pyramid.events.show","title":"show","parent":"plotOptions-pyramid-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-columnrange-events--show","fullname":"plotOptions.columnrange.events.show","title":"show","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-errorbar-events--show","fullname":"plotOptions.errorbar.events.show","title":"show","parent":"plotOptions-errorbar-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"series-events--show","fullname":"series.events.show","title":"show","parent":"series-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"plotOptions-spline-events--show","fullname":"plotOptions.spline.events.show","title":"show","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","since":"1.2.0","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling .show().","demo":"Alert when the series is shown by clicking \r\n\t\t\tthe legend item.","deprecated":false},{"name":"chart--showAxes","fullname":"chart.showAxes","title":"showAxes","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.5","description":"Whether to show the axes initially. This only applies to empty charts where series are added dynamically, as axes are automatically added to cartesian series.","demo":"False by default,\n\t\t\ttrue"},{"name":"plotOptions-columnrange--showCheckbox","fullname":"plotOptions.columnrange.showCheckbox","title":"showCheckbox","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-bar--showCheckbox","fullname":"plotOptions.bar.showCheckbox","title":"showCheckbox","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-gauge--showCheckbox","fullname":"plotOptions.gauge.showCheckbox","title":"showCheckbox","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-bubble--showCheckbox","fullname":"plotOptions.bubble.showCheckbox","title":"showCheckbox","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-areasplinerange--showCheckbox","fullname":"plotOptions.areasplinerange.showCheckbox","title":"showCheckbox","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-series--showCheckbox","fullname":"plotOptions.series.showCheckbox","title":"showCheckbox","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-scatter--showCheckbox","fullname":"plotOptions.scatter.showCheckbox","title":"showCheckbox","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-areaspline--showCheckbox","fullname":"plotOptions.areaspline.showCheckbox","title":"showCheckbox","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-arearange--showCheckbox","fullname":"plotOptions.arearange.showCheckbox","title":"showCheckbox","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-solidgauge--showCheckbox","fullname":"plotOptions.solidgauge.showCheckbox","title":"showCheckbox","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-area--showCheckbox","fullname":"plotOptions.area.showCheckbox","title":"showCheckbox","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-waterfall--showCheckbox","fullname":"plotOptions.waterfall.showCheckbox","title":"showCheckbox","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-column--showCheckbox","fullname":"plotOptions.column.showCheckbox","title":"showCheckbox","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-polygon--showCheckbox","fullname":"plotOptions.polygon.showCheckbox","title":"showCheckbox","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-boxplot--showCheckbox","fullname":"plotOptions.boxplot.showCheckbox","title":"showCheckbox","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-line--showCheckbox","fullname":"plotOptions.line.showCheckbox","title":"showCheckbox","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-treemap--showCheckbox","fullname":"plotOptions.treemap.showCheckbox","title":"showCheckbox","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-spline--showCheckbox","fullname":"plotOptions.spline.showCheckbox","title":"showCheckbox","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"plotOptions-heatmap--showCheckbox","fullname":"plotOptions.heatmap.showCheckbox","title":"showCheckbox","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"series--showCheckbox","fullname":"series.showCheckbox","title":"showCheckbox","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.","demo":"Show select box"},{"name":"loading--showDuration","fullname":"loading.showDuration","title":"showDuration","parent":"loading","isParent":false,"returnType":"Number","defaults":"100","since":"1.2.0","description":"The duration in milliseconds of the fade in effect.","demo":"Fade in and out over a second"},{"name":"xAxis--showEmpty","fullname":"xAxis.showEmpty","title":"showEmpty","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.1","description":"Whether to show the axis line and title when the axis has no data.","demo":"When clicking the legend to hide series, one axis preserves line and title, the other doesn't","deprecated":false},{"name":"yAxis--showEmpty","fullname":"yAxis.showEmpty","title":"showEmpty","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.1","description":"Whether to show the axis line and title when the axis has no data.","demo":"When clicking the legend to hide series, one axis preserves line and title, the other doesn't","deprecated":false},{"name":"xAxis--showFirstLabel","fullname":"xAxis.showFirstLabel","title":"showFirstLabel","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the first tick label.","demo":"Set to false on X axis"},{"name":"yAxis--showFirstLabel","fullname":"yAxis.showFirstLabel","title":"showFirstLabel","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the first tick label.","demo":"Set to false on X axis"},{"name":"plotOptions-polygon--showInLegend","fullname":"plotOptions.polygon.showInLegend","title":"showInLegend","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-funnel--showInLegend","fullname":"plotOptions.funnel.showInLegend","title":"showInLegend","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","since":"2.3.0","description":"Whether to display this particular series or series type in the legend. Defaults to false for gauge series.","demo":"","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-series--showInLegend","fullname":"plotOptions.series.showInLegend","title":"showInLegend","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-area--showInLegend","fullname":"plotOptions.area.showInLegend","title":"showInLegend","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-boxplot--showInLegend","fullname":"plotOptions.boxplot.showInLegend","title":"showInLegend","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-arearange--showInLegend","fullname":"plotOptions.arearange.showInLegend","title":"showInLegend","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-bubble--showInLegend","fullname":"plotOptions.bubble.showInLegend","title":"showInLegend","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-solidgauge--showInLegend","fullname":"plotOptions.solidgauge.showInLegend","title":"showInLegend","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","since":"2.3.0","description":"Whether to display this particular series or series type in the legend. Defaults to false for gauge series.","demo":"","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","since":"2.3.0","description":"Whether to display this particular series or series type in the legend. Defaults to false for gauge series.","demo":"","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-pyramid--showInLegend","fullname":"plotOptions.pyramid.showInLegend","title":"showInLegend","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"","description":"Whether to display this series type or specific series item in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-waterfall--showInLegend","fullname":"plotOptions.waterfall.showInLegend","title":"showInLegend","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-heatmap--showInLegend","fullname":"plotOptions.heatmap.showInLegend","title":"showInLegend","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-areaspline--showInLegend","fullname":"plotOptions.areaspline.showInLegend","title":"showInLegend","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-bar--showInLegend","fullname":"plotOptions.bar.showInLegend","title":"showInLegend","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-areasplinerange--showInLegend","fullname":"plotOptions.areasplinerange.showInLegend","title":"showInLegend","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-scatter--showInLegend","fullname":"plotOptions.scatter.showInLegend","title":"showInLegend","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-spline--showInLegend","fullname":"plotOptions.spline.showInLegend","title":"showInLegend","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-columnrange--showInLegend","fullname":"plotOptions.columnrange.showInLegend","title":"showInLegend","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"series--showInLegend","fullname":"series.showInLegend","title":"showInLegend","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"plotOptions-gauge--showInLegend","fullname":"plotOptions.gauge.showInLegend","title":"showInLegend","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","since":"2.3.0","description":"Whether to display this particular series or series type in the legend. Defaults to false for gauge series.","demo":"","deprecated":false},{"name":"plotOptions-line--showInLegend","fullname":"plotOptions.line.showInLegend","title":"showInLegend","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"plotOptions-treemap--showInLegend","fullname":"plotOptions.treemap.showInLegend","title":"showInLegend","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"","description":"Whether to display this series type or specific series item in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--showInLegend","fullname":"plotOptions.pie.showInLegend","title":"showInLegend","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display this particular series or series type in the legend. Since 2.1, pies are not shown in the legend by default.","demo":"One series in the legend, one hidden"},{"name":"plotOptions-column--showInLegend","fullname":"plotOptions.column.showInLegend","title":"showInLegend","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.","demo":"One series in the legend, one hidden","deprecated":false},{"name":"xAxis--showLastLabel","fullname":"xAxis.showLastLabel","title":"showLastLabel","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the last tick label.","demo":"Set to true on X axis","deprecated":false},{"name":"yAxis--showLastLabel","fullname":"yAxis.showLastLabel","title":"showLastLabel","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the last tick label.","demo":"Set to true on X axis"},{"name":"chart-options3d-frame-side","fullname":"chart.options3d.frame.side","title":"side","parent":"chart-options3d-frame","isParent":true,"returnType":"","defaults":"","values":"","since":"4.0","description":"The side for the frame around a 3D chart.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-states-hover-halo--size","fullname":"plotOptions.series.states.hover.halo.size","title":"size","parent":"plotOptions-series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-states-hover-halo--size","fullname":"plotOptions.errorbar.states.hover.halo.size","title":"size","parent":"plotOptions-errorbar-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-states-hover-halo--size","fullname":"plotOptions.pyramid.states.hover.halo.size","title":"size","parent":"plotOptions-pyramid-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-states-hover-halo--size","fullname":"plotOptions.gauge.states.hover.halo.size","title":"size","parent":"plotOptions-gauge-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-halo--size","fullname":"plotOptions.areaspline.states.hover.halo.size","title":"size","parent":"plotOptions-areaspline-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-halo--size","fullname":"plotOptions.solidgauge.states.hover.halo.size","title":"size","parent":"plotOptions-solidgauge-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-states-hover-halo--size","fullname":"plotOptions.funnel.states.hover.halo.size","title":"size","parent":"plotOptions-funnel-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"pane--size","fullname":"pane.size","title":"size","parent":"pane","isParent":false,"returnType":"Number|String","defaults":"85%","description":"The size of the pane, either as a number defining pixels, or a percentage defining a percentage of the plot are.","demo":"Smaller size","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-states-hover-halo--size","fullname":"plotOptions.area.states.hover.halo.size","title":"size","parent":"plotOptions-area-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-states-hover-halo--size","fullname":"plotOptions.polygon.states.hover.halo.size","title":"size","parent":"plotOptions-polygon-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-states-hover-halo--size","fullname":"plotOptions.pie.states.hover.halo.size","title":"size","parent":"plotOptions-pie-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-states-hover-halo--size","fullname":"plotOptions.bubble.states.hover.halo.size","title":"size","parent":"plotOptions-bubble-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--size","fullname":"plotOptions.pie.size","title":"size","parent":"plotOptions-pie","isParent":false,"returnType":"String|Number","defaults":" ","description":"The diameter of the pie relative to the plot area. Can be a percentage or pixel value. Pixel values are given as integers. The default behaviour (as of 3.0) is to scale to the plot area and give room for data labels within the plot area. As a consequence, the size of the pie may vary when points are updated and data labels more around. In that case it is best to set a fixed value, for example \"75%\".","demo":"Smaller pie","deprecated":false},{"name":"series--size","fullname":"series.size","title":"size","parent":"series","isParent":false,"returnType":"String|Number","defaults":" ","description":"The diameter of the pie relative to the plot area. Can be a percentage or pixel value. Pixel values are given as integers. The default behaviour (as of 3.0) is to scale to the plot area and give room for data labels within the plot area. As a consequence, the size of the pie may vary when points are updated and data labels more around. In that case it is best to set a fixed value, for example \"75%\".","demo":"Smaller pie","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover-halo--size","fullname":"plotOptions.column.states.hover.halo.size","title":"size","parent":"plotOptions-column-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-states-hover-halo--size","fullname":"plotOptions.boxplot.states.hover.halo.size","title":"size","parent":"plotOptions-boxplot-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-options3d-frame-side--size","fullname":"chart.options3d.frame.side.size","title":"size","parent":"chart-options3d-frame-side","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The thickness of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-states-hover-halo--size","fullname":"plotOptions.spline.states.hover.halo.size","title":"size","parent":"plotOptions-spline-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-halo--size","fullname":"plotOptions.bar.states.hover.halo.size","title":"size","parent":"plotOptions-bar-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-states-hover-halo--size","fullname":"plotOptions.columnrange.states.hover.halo.size","title":"size","parent":"plotOptions-columnrange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-states-hover-halo--size","fullname":"plotOptions.waterfall.states.hover.halo.size","title":"size","parent":"plotOptions-waterfall-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-options3d-frame-bottom--size","fullname":"chart.options3d.frame.bottom.size","title":"size","parent":"chart-options3d-frame-bottom","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"The thickness of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-states-hover-halo--size","fullname":"plotOptions.line.states.hover.halo.size","title":"size","parent":"plotOptions-line-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-states-hover-halo--size","fullname":"plotOptions.arearange.states.hover.halo.size","title":"size","parent":"plotOptions-arearange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-states-hover-halo--size","fullname":"plotOptions.scatter.states.hover.halo.size","title":"size","parent":"plotOptions-scatter-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-states-hover-halo--size","fullname":"plotOptions.heatmap.states.hover.halo.size","title":"size","parent":"plotOptions-heatmap-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-options3d-frame-back--size","fullname":"chart.options3d.frame.back.size","title":"size","parent":"chart-options3d-frame-back","isParent":false,"returnType":"Number","defaults":"1","values":"","since":"4.0","description":"Thickness of the panel.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-halo--size","fullname":"plotOptions.areasplinerange.states.hover.halo.size","title":"size","parent":"plotOptions-areasplinerange-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-states-hover-halo--size","fullname":"plotOptions.treemap.states.hover.halo.size","title":"size","parent":"plotOptions-treemap-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-halo--size","fullname":"series.states.hover.halo.size","title":"size","parent":"series-states-hover-halo","isParent":false,"returnType":"Number","defaults":"10","values":"","since":"4.0","description":"The pixel size of the halo. For point markers this is the radius of the halo. For pie slices it is the width of the halo outside the slice. For bubbles it defaults to 5 and is the width of the halo outside the bubble.","demo":"","seeAlso":"","deprecated":false},{"name":"series--sizeBy","fullname":"series.sizeBy","title":"sizeBy","parent":"series","isParent":false,"returnType":"String","defaults":"area","values":"[\"area\", \"width\"]","since":"3.0.7","description":"Whether the bubble's value should be represented by the area or the width of the bubble. The default, area, corresponds best to the human perception of the size of each bubble. ","demo":" Comparison of area and size","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--sizeBy","fullname":"plotOptions.bubble.sizeBy","title":"sizeBy","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"area","values":"[\"area\", \"width\"]","since":"3.0.7","description":"Whether the bubble's value should be represented by the area or the width of the bubble. The default, area, corresponds best to the human perception of the size of each bubble. ","demo":" Comparison of area and size","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--sizeByAbsoluteValue","fullname":"plotOptions.bubble.sizeByAbsoluteValue","title":"sizeByAbsoluteValue","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.9","description":"When this is true, the absolute value of z determines the size of the bubble. This means that with the default zThreshold of 0, a bubble of value -1 will have the same size as a bubble of value 1, while a bubble of value 0 will have a smaller size according to minSize.","demo":"Size by absolute value, various thresholds.","deprecated":false},{"name":"series--sizeByAbsoluteValue","fullname":"series.sizeByAbsoluteValue","title":"sizeByAbsoluteValue","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"4.1.9","description":"When this is true, the absolute value of z determines the size of the bubble. This means that with the default zThreshold of 0, a bubble of value -1 will have the same size as a bubble of value 1, while a bubble of value 0 will have a smaller size according to minSize.","demo":"Size by absolute value, various thresholds.","deprecated":false},{"name":"series-data--sliced","fullname":"series.data.sliced","title":"sliced","parent":"series-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to display a slice offset from the center.","demo":"One sliced point"},{"name":"series--slicedOffset","fullname":"series.slicedOffset","title":"slicedOffset","parent":"series","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"series--slicedOffset","fullname":"series.slicedOffset","title":"slicedOffset","parent":"series","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"plotOptions-pyramid--slicedOffset","fullname":"plotOptions.pyramid.slicedOffset","title":"slicedOffset","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"plotOptions-funnel--slicedOffset","fullname":"plotOptions.funnel.slicedOffset","title":"slicedOffset","parent":"plotOptions-funnel","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"series--slicedOffset","fullname":"series.slicedOffset","title":"slicedOffset","parent":"series","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"plotOptions-pie--slicedOffset","fullname":"plotOptions.pie.slicedOffset","title":"slicedOffset","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"10","description":"If a point is sliced, moved out from the center, how many pixels should it be moved?.","demo":"20px offset"},{"name":"yAxis-crosshair--snap","fullname":"yAxis.crosshair.snap","title":"snap","parent":"yAxis-crosshair","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1","description":"Whether the crosshair should snap to the point or follow the pointer independent of points.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"tooltip--snap","fullname":"tooltip.snap","title":"snap","parent":"tooltip","isParent":false,"returnType":"Number","since":"1.2.0","description":"Proximity snap for graphs or single points. Does not apply to bars, columns and pie slices. It defaults to 10 for mouse-powered devices and 25 for touch devices. Note that since Highcharts 4.1 the whole plot area by default captures pointer events in order to show the tooltip, so for tooltip.snap to make sense, stickyTracking must be false.","demo":"10 px by default,\r\n\t\t\t50 px on graph","deprecated":false},{"name":"xAxis-crosshair--snap","fullname":"xAxis.crosshair.snap","title":"snap","parent":"xAxis-crosshair","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1","description":"Whether the crosshair should snap to the point or follow the pointer independent of points.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"series-dataLabels--softConnector","fullname":"series.dataLabels.softConnector","title":"softConnector","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"series-dataLabels--softConnector","fullname":"series.dataLabels.softConnector","title":"softConnector","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"series-dataLabels--softConnector","fullname":"series.dataLabels.softConnector","title":"softConnector","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"plotOptions-pie-dataLabels--softConnector","fullname":"plotOptions.pie.dataLabels.softConnector","title":"softConnector","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"plotOptions-pyramid-dataLabels--softConnector","fullname":"plotOptions.pyramid.dataLabels.softConnector","title":"softConnector","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"plotOptions-funnel-dataLabels--softConnector","fullname":"plotOptions.funnel.dataLabels.softConnector","title":"softConnector","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.7","description":"Whether to render the connector as a soft arc or a line with sharp break.","demo":"Soft,\n\t\t\tnon soft connectors."},{"name":"plotOptions-scatter--softThreshold","fullname":"plotOptions.scatter.softThreshold","title":"softThreshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"plotOptions-waterfall--softThreshold","fullname":"plotOptions.waterfall.softThreshold","title":"softThreshold","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--softThreshold","fullname":"plotOptions.bar.softThreshold","title":"softThreshold","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--softThreshold","fullname":"plotOptions.column.softThreshold","title":"softThreshold","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--softThreshold","fullname":"plotOptions.spline.softThreshold","title":"softThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"series--softThreshold","fullname":"series.softThreshold","title":"softThreshold","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"plotOptions-bubble--softThreshold","fullname":"plotOptions.bubble.softThreshold","title":"softThreshold","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line--softThreshold","fullname":"plotOptions.line.softThreshold","title":"softThreshold","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"plotOptions-series--softThreshold","fullname":"plotOptions.series.softThreshold","title":"softThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","deprecated":false},{"name":"plotOptions-areaspline--softThreshold","fullname":"plotOptions.areaspline.softThreshold","title":"softThreshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area--softThreshold","fullname":"plotOptions.area.softThreshold","title":"softThreshold","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.9","description":"

When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

\r\n\r\n

For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge","fullname":"plotOptions.solidgauge","title":"solidgauge","parent":"plotOptions","isParent":true,"returnType":"Object","since":"4.0","description":"A gauge showing values using a filled arc with colors indicating the value. The solid gauge plots values against the yAxis, which is extended with some color options, minColor, maxColor and stops, to control the color of the gauge itself.","demo":"Solid gauge","deprecated":false},{"name":"series--sortIndex","fullname":"series.sortIndex","title":"sortIndex","parent":"series","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.10","description":"The sort index of the point inside the treemap level. ","demo":"Sort by years","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--sortIndex","fullname":"plotOptions.treemap.sortIndex","title":"sortIndex","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.10","description":"The sort index of the point inside the treemap level. ","demo":"Sort by years","seeAlso":"","deprecated":false},{"name":"exporting--sourceHeight","fullname":"exporting.sourceHeight","title":"sourceHeight","parent":"exporting","isParent":false,"returnType":"Number","defaults":"","values":"","since":"3.0","description":"Analogous to sourceWidth","demo":"","seeAlso":"","deprecated":false},{"name":"exporting--sourceWidth","fullname":"exporting.sourceWidth","title":"sourceWidth","parent":"exporting","isParent":false,"returnType":"Number","defaults":"","values":"","since":"3.0","description":"The width of the original chart when exported, unless an explicit chart.width is set. The width exported raster image is then multiplied by scale.","demo":"Source size demo","seeAlso":"","deprecated":false},{"name":"chart--spacing","fullname":"chart.spacing","title":"spacing","parent":"chart","isParent":false,"returnType":"Array","defaults":"[10, 10, 15, 10]","values":"","since":"3.0.6","description":"The distance between the outer edge of the chart and the content, like title, legend, axis title or labels. The numbers in the array designate top, right, bottom and left respectively. Use the options spacingTop, spacingRight, spacingBottom and spacingLeft options for shorthand setting of one option.","demo":"","seeAlso":"chart.margin","deprecated":false},{"name":"chart--spacingBottom","fullname":"chart.spacingBottom","title":"spacingBottom","parent":"chart","isParent":false,"returnType":"Number","defaults":"15","since":"2.1","description":"

The space between the bottom edge of the chart and the content (plot area, axis title and labels, title, subtitle or \r legend in top position).

","demo":"Spacing bottom set to 100.","deprecated":false},{"name":"chart--spacingLeft","fullname":"chart.spacingLeft","title":"spacingLeft","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","since":"2.1","description":"

The space between the left edge of the chart and the content (plot area, axis title and labels, title, subtitle or \r legend in top position).

","demo":"Spacing left set to 100","deprecated":false},{"name":"chart--spacingRight","fullname":"chart.spacingRight","title":"spacingRight","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","since":"2.1","description":"

The space between the right edge of the chart and the content (plot area, axis title and labels, title, subtitle or \r legend in top position).

","demo":"Spacing set to 100,\r\n\t\t\tlegend in right position with default spacing","deprecated":false},{"name":"chart--spacingTop","fullname":"chart.spacingTop","title":"spacingTop","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","since":"2.1","description":"

The space between the top edge of the chart and the content (plot area, axis title and labels, title, subtitle or \r\n legend in top position).

","demo":"A top spacing of 100,\r\n\t\t\tfloating chart title makes the plot area align to the \r\n\t\t\tdefault spacingTop of 10..","deprecated":false},{"name":"plotOptions-spline","fullname":"plotOptions.spline","title":"spline","parent":"plotOptions","isParent":true,"deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"series--stack","fullname":"series.stack","title":"stack","parent":"series","isParent":false,"returnType":"String","since":"2.1","description":"This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.","demo":"Stacked and grouped columns","deprecated":false},{"name":"yAxis-stackLabels","fullname":"yAxis.stackLabels","title":"stackLabels","parent":"yAxis","isParent":true,"description":"The stack labels show the total value for each bar in a stacked column or bar chart. The label will be placed on top of\n\tpositive columns and below negative columns. In case of an inverted column chart or a bar chart the label is placed to \n\tthe right of positive bars and to the left of negative bars."},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-series--stacking","fullname":"plotOptions.series.stacking","title":"stacking","parent":"plotOptions-series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-column--stacking","fullname":"plotOptions.column.stacking","title":"stacking","parent":"plotOptions-column","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-line--stacking","fullname":"plotOptions.line.stacking","title":"stacking","parent":"plotOptions-line","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"series--stacking","fullname":"series.stacking","title":"stacking","parent":"series","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-spline--stacking","fullname":"plotOptions.spline.stacking","title":"stacking","parent":"plotOptions-spline","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-areaspline--stacking","fullname":"plotOptions.areaspline.stacking","title":"stacking","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-area--stacking","fullname":"plotOptions.area.stacking","title":"stacking","parent":"plotOptions-area","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"plotOptions-bar--stacking","fullname":"plotOptions.bar.stacking","title":"stacking","parent":"plotOptions-bar","isParent":false,"returnType":"String","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values are null to disable, \"normal\" to stack by value or \"percent\".","demo":"Line,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"normal\" stacking. \r\n\t\t\tLine,\r\n\t\t\tcolumn,\r\n\t\t\tbar,\r\n\t\t\tarea with \"percent\" stacking.","seeAlso":"yAxis.reversedStacks","deprecated":false},{"name":"xAxis-labels--staggerLines","fullname":"xAxis.labels.staggerLines","title":"staggerLines","parent":"xAxis-labels","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal axes only. The number of lines to spread the labels over to make room or tighter labels. .","demo":"Show labels over two lines"},{"name":"yAxis-labels--staggerLines","fullname":"yAxis.labels.staggerLines","title":"staggerLines","parent":"yAxis-labels","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal axes only. The number of lines to spread the labels over to make room or tighter labels. .","demo":"Show labels over two lines"},{"name":"pane--startAngle","fullname":"pane.startAngle","title":"startAngle","parent":"pane","isParent":false,"returnType":"Number","since":"2.3.0","description":"The start angle of the polar X axis or gauge axis, given in degrees where 0 is north. Defaults to 0.","demo":"VU-meter with custom start and end angle.","deprecated":false},{"name":"series--startAngle","fullname":"series.startAngle","title":"startAngle","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.3.4","description":"The start angle of the pie slices in degrees where 0 is top and 90 right. ","demo":"Start from right","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--startAngle","fullname":"plotOptions.pie.startAngle","title":"startAngle","parent":"plotOptions-pie","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.3.4","description":"The start angle of the pie slices in degrees where 0 is top and 90 right. ","demo":"Start from right","seeAlso":"","deprecated":false},{"name":"data--startColumn","fullname":"data.startColumn","title":"startColumn","parent":"data","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"4.0","description":"In tabular input data, the first column (indexed by 0) to use.","demo":"Limited data","seeAlso":"","deprecated":false},{"name":"xAxis--startOfWeek","fullname":"xAxis.startOfWeek","title":"startOfWeek","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","description":"For datetime axes, this decides where to put the tick between weeks. 0 = Sunday, 1 = Monday.","demo":"Monday by default,\n\t\t\tSunday"},{"name":"yAxis--startOfWeek","fullname":"yAxis.startOfWeek","title":"startOfWeek","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"1","description":"For datetime axes, this decides where to put the tick between weeks. 0 = Sunday, 1 = Monday.","demo":"Monday by default,\n\t\t\tSunday"},{"name":"xAxis--startOnTick","fullname":"xAxis.startOnTick","title":"startOnTick","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.2.0","description":"Whether to force the axis to start on a tick. Use this option with the minPadding option to control the axis start.","demo":"False by default,\r\n\t\t\ttrue on X axis","deprecated":false},{"name":"yAxis--startOnTick","fullname":"yAxis.startOnTick","title":"startOnTick","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.0","description":"Whether to force the axis to start on a tick. Use this option with the maxPadding option to control the axis start.","demo":"False by default,\n\t\t\ttrue on X axis"},{"name":"data--startRow","fullname":"data.startRow","title":"startRow","parent":"data","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"4.0","description":"In tabular input data, the first row (indexed by 0) to use.","demo":"Limited data","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-states-hover-marker--states","fullname":"plotOptions.funnel.states.hover.marker.states","title":"states","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--states","fullname":"plotOptions.areaspline.states.hover.marker.states","title":"states","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--states","fullname":"plotOptions.columnrange.states.hover.marker.states","title":"states","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-column-states-hover-marker--states","fullname":"plotOptions.column.states.hover.marker.states","title":"states","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"plotOptions-scatter-states","fullname":"plotOptions.scatter.states","title":"states","parent":"plotOptions-scatter","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-area-states","fullname":"plotOptions.area.states","title":"states","parent":"plotOptions-area","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-heatmap-states-hover-marker--states","fullname":"plotOptions.heatmap.states.hover.marker.states","title":"states","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-area-marker-states","fullname":"plotOptions.area.marker.states","title":"states","parent":"plotOptions-area-marker","isParent":true},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-area-states-hover-marker--states","fullname":"plotOptions.area.states.hover.marker.states","title":"states","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"plotOptions-treemap-states-hover-marker--states","fullname":"plotOptions.treemap.states.hover.marker.states","title":"states","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-polygon-states","fullname":"plotOptions.polygon.states","title":"states","parent":"plotOptions-polygon","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"plotOptions-polygon-marker-states","fullname":"plotOptions.polygon.marker.states","title":"states","parent":"plotOptions-polygon-marker","isParent":true},{"name":"plotOptions-line-marker-states","fullname":"plotOptions.line.marker.states","title":"states","parent":"plotOptions-line-marker","isParent":true},{"name":"plotOptions-gauge-states-hover-marker--states","fullname":"plotOptions.gauge.states.hover.marker.states","title":"states","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"plotOptions-series-states-hover-marker--states","fullname":"plotOptions.series.states.hover.marker.states","title":"states","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-pyramid-states","fullname":"plotOptions.pyramid.states","title":"states","parent":"plotOptions-pyramid","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"plotOptions-columnrange-states","fullname":"plotOptions.columnrange.states","title":"states","parent":"plotOptions-columnrange","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-bubble-states","fullname":"plotOptions.bubble.states","title":"states","parent":"plotOptions-bubble","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--states","fullname":"plotOptions.bar.states.hover.marker.states","title":"states","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-spline-marker-states","fullname":"plotOptions.spline.marker.states","title":"states","parent":"plotOptions-spline-marker","isParent":true},{"name":"plotOptions-areasplinerange-states-hover-marker--states","fullname":"plotOptions.areasplinerange.states.hover.marker.states","title":"states","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"plotOptions-funnel-states","fullname":"plotOptions.funnel.states","title":"states","parent":"plotOptions-funnel","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-solidgauge-states","fullname":"plotOptions.solidgauge.states","title":"states","parent":"plotOptions-solidgauge","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-spline-states","fullname":"plotOptions.spline.states","title":"states","parent":"plotOptions-spline","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-solidgauge-states-hover-marker--states","fullname":"plotOptions.solidgauge.states.hover.marker.states","title":"states","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-waterfall-states-hover-marker--states","fullname":"plotOptions.waterfall.states.hover.marker.states","title":"states","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-treemap-states","fullname":"plotOptions.treemap.states","title":"states","parent":"plotOptions-treemap","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-waterfall-states","fullname":"plotOptions.waterfall.states","title":"states","parent":"plotOptions-waterfall","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-arearange-states","fullname":"plotOptions.arearange.states","title":"states","parent":"plotOptions-arearange","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-series-marker-states","fullname":"plotOptions.series.marker.states","title":"states","parent":"plotOptions-series-marker","isParent":true},{"name":"plotOptions-pie-states-hover-marker--states","fullname":"plotOptions.pie.states.hover.marker.states","title":"states","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-bubble-marker-states","fullname":"plotOptions.bubble.marker.states","title":"states","parent":"plotOptions-bubble-marker","isParent":true},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-boxplot-states-hover-marker--states","fullname":"plotOptions.boxplot.states.hover.marker.states","title":"states","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-heatmap-states","fullname":"plotOptions.heatmap.states","title":"states","parent":"plotOptions-heatmap","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-data-marker-states","fullname":"series.data.marker.states","title":"states","parent":"series-data-marker","isParent":true},{"name":"plotOptions-polygon-states-hover-marker--states","fullname":"plotOptions.polygon.states.hover.marker.states","title":"states","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-bubble-states-hover-marker--states","fullname":"plotOptions.bubble.states.hover.marker.states","title":"states","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-errorbar-states","fullname":"plotOptions.errorbar.states","title":"states","parent":"plotOptions-errorbar","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-pyramid-states-hover-marker--states","fullname":"plotOptions.pyramid.states.hover.marker.states","title":"states","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-areaspline-states","fullname":"plotOptions.areaspline.states","title":"states","parent":"plotOptions-areaspline","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-scatter-marker-states","fullname":"plotOptions.scatter.marker.states","title":"states","parent":"plotOptions-scatter-marker","isParent":true},{"name":"plotOptions-boxplot-states","fullname":"plotOptions.boxplot.states","title":"states","parent":"plotOptions-boxplot","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-areaspline-marker-states","fullname":"plotOptions.areaspline.marker.states","title":"states","parent":"plotOptions-areaspline-marker","isParent":true},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"plotOptions-areasplinerange-states","fullname":"plotOptions.areasplinerange.states","title":"states","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-line-states","fullname":"plotOptions.line.states","title":"states","parent":"plotOptions-line","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-scatter-states-hover-marker--states","fullname":"plotOptions.scatter.states.hover.marker.states","title":"states","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-errorbar-states-hover-marker--states","fullname":"plotOptions.errorbar.states.hover.marker.states","title":"states","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-gauge-states","fullname":"plotOptions.gauge.states","title":"states","parent":"plotOptions-gauge","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states","fullname":"series.states","title":"states","parent":"series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--states","fullname":"plotOptions.spline.states.hover.marker.states","title":"states","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-marker-states","fullname":"series.marker.states","title":"states","parent":"series-marker","isParent":true},{"name":"plotOptions-arearange-states-hover-marker--states","fullname":"plotOptions.arearange.states.hover.marker.states","title":"states","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-series-states","fullname":"plotOptions.series.states","title":"states","parent":"plotOptions-series","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-line-states-hover-marker--states","fullname":"plotOptions.line.states.hover.marker.states","title":"states","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"series-states-hover-marker--states","fullname":"series.states.hover.marker.states","title":"states","parent":"series-states-hover-marker","isParent":false,"returnType":"","description":""},{"name":"plotOptions-bar-states","fullname":"plotOptions.bar.states","title":"states","parent":"plotOptions-bar","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-pie-states","fullname":"plotOptions.pie.states","title":"states","parent":"plotOptions-pie","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-column-states","fullname":"plotOptions.column.states","title":"states","parent":"plotOptions-column","isParent":true,"returnType":"plotOptions.series.states","since":"","description":"A wrapper object for all the series options in specific states.","demo":"","deprecated":false},{"name":"plotOptions-errorbar--stemColor","fullname":"plotOptions.errorbar.stemColor","title":"stemColor","parent":"plotOptions-errorbar","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the stem, the vertical line extending from the box to the whiskers. If null, the series color is used.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemColor","fullname":"series.stemColor","title":"stemColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the stem, the vertical line extending from the box to the whiskers. If null, the series color is used.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemColor","fullname":"series.stemColor","title":"stemColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the stem, the vertical line extending from the box to the whiskers. If null, the series color is used.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--stemColor","fullname":"plotOptions.boxplot.stemColor","title":"stemColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the stem, the vertical line extending from the box to the whiskers. If null, the series color is used.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--stemDashStyle","fullname":"plotOptions.boxplot.stemDashStyle","title":"stemDashStyle","parent":"plotOptions-boxplot","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"3.0","description":"The dash style of the stem, the vertical line extending from the box to the whiskers.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--stemDashStyle","fullname":"plotOptions.errorbar.stemDashStyle","title":"stemDashStyle","parent":"plotOptions-errorbar","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"3.0","description":"The dash style of the stem, the vertical line extending from the box to the whiskers.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemDashStyle","fullname":"series.stemDashStyle","title":"stemDashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"3.0","description":"The dash style of the stem, the vertical line extending from the box to the whiskers.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemDashStyle","fullname":"series.stemDashStyle","title":"stemDashStyle","parent":"series","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","since":"3.0","description":"The dash style of the stem, the vertical line extending from the box to the whiskers.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--stemWidth","fullname":"plotOptions.boxplot.stemWidth","title":"stemWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The width of the stem, the vertical line extending from the box to the whiskers. If null, the width is inherited from the lineWidth option.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--stemWidth","fullname":"plotOptions.errorbar.stemWidth","title":"stemWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The width of the stem, the vertical line extending from the box to the whiskers. If null, the width is inherited from the lineWidth option.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemWidth","fullname":"series.stemWidth","title":"stemWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The width of the stem, the vertical line extending from the box to the whiskers. If null, the width is inherited from the lineWidth option.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"series--stemWidth","fullname":"series.stemWidth","title":"stemWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The width of the stem, the vertical line extending from the box to the whiskers. If null, the width is inherited from the lineWidth option.","demo":"Box plot styling, error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-area--step","fullname":"plotOptions.area.step","title":"step","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options. Stepped, stacked area.","deprecated":false},{"name":"plotOptions-line--step","fullname":"plotOptions.line.step","title":"step","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options","deprecated":false},{"name":"series--step","fullname":"series.step","title":"step","parent":"series","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options","deprecated":false},{"name":"series--step","fullname":"series.step","title":"step","parent":"series","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options. Stepped, stacked area.","deprecated":false},{"name":"plotOptions-arearange--step","fullname":"plotOptions.arearange.step","title":"step","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options","deprecated":false},{"name":"plotOptions-series--step","fullname":"plotOptions.series.step","title":"step","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options. Stepped, stacked area.","deprecated":false},{"name":"xAxis-labels--step","fullname":"xAxis.labels.step","title":"step","parent":"xAxis-labels","isParent":false,"returnType":"Number","since":"2.1","description":"

To show only every n'th label on the axis, set the step to n. Setting the step to 2 shows every other label.

\r\n\r\n

By default, the step is calculated automatically to avoid overlap. To prevent this, set it to 1. This usually only happens on a category axis, and is often a sign that you have chosen the wrong axis type. Read more at Axis docs => What axis should I use?

","demo":"Showing only every other axis label on a categorized x axis. Auto steps on a category axis.","deprecated":false},{"name":"series--step","fullname":"series.step","title":"step","parent":"series","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","since":"1.2.5","description":"Whether to apply steps to the line. Possible values are left, center and right. Prior to 2.3.5, only left was supported.","demo":"Different step line options","deprecated":false},{"name":"yAxis-labels--step","fullname":"yAxis.labels.step","title":"step","parent":"yAxis-labels","isParent":false,"returnType":"Number","since":"2.1","description":"

To show only every n'th label on the axis, set the step to n. Setting the step to 2 shows every other label.

\r\n\r\n

By default, the step is calculated automatically to avoid overlap. To prevent this, set it to 1. This usually only happens on a category axis, and is often a sign that you have chosen the wrong axis type. Read more at Axis docs => What axis should I use?

","demo":"Showing only every other axis label on a categorized x axis. Auto steps on a category axis.","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--stickyTracking","fullname":"plotOptions.areasplinerange.stickyTracking","title":"stickyTracking","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--stickyTracking","fullname":"plotOptions.bubble.stickyTracking","title":"stickyTracking","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--stickyTracking","fullname":"plotOptions.arearange.stickyTracking","title":"stickyTracking","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-line--stickyTracking","fullname":"plotOptions.line.stickyTracking","title":"stickyTracking","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-pie--stickyTracking","fullname":"plotOptions.pie.stickyTracking","title":"stickyTracking","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge--stickyTracking","fullname":"plotOptions.solidgauge.stickyTracking","title":"stickyTracking","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--stickyTracking","fullname":"plotOptions.boxplot.stickyTracking","title":"stickyTracking","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--stickyTracking","fullname":"plotOptions.columnrange.stickyTracking","title":"stickyTracking","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--stickyTracking","fullname":"plotOptions.funnel.stickyTracking","title":"stickyTracking","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-area--stickyTracking","fullname":"plotOptions.area.stickyTracking","title":"stickyTracking","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap--stickyTracking","fullname":"plotOptions.treemap.stickyTracking","title":"stickyTracking","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--stickyTracking","fullname":"plotOptions.scatter.stickyTracking","title":"stickyTracking","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--stickyTracking","fullname":"plotOptions.bar.stickyTracking","title":"stickyTracking","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--stickyTracking","fullname":"plotOptions.column.stickyTracking","title":"stickyTracking","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--stickyTracking","fullname":"plotOptions.waterfall.stickyTracking","title":"stickyTracking","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--stickyTracking","fullname":"plotOptions.pyramid.stickyTracking","title":"stickyTracking","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap--stickyTracking","fullname":"plotOptions.heatmap.stickyTracking","title":"stickyTracking","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--stickyTracking","fullname":"plotOptions.spline.stickyTracking","title":"stickyTracking","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series--stickyTracking","fullname":"plotOptions.series.stickyTracking","title":"stickyTracking","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--stickyTracking","fullname":"plotOptions.areaspline.stickyTracking","title":"stickyTracking","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--stickyTracking","fullname":"plotOptions.polygon.stickyTracking","title":"stickyTracking","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--stickyTracking","fullname":"plotOptions.gauge.stickyTracking","title":"stickyTracking","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--stickyTracking","fullname":"plotOptions.errorbar.stickyTracking","title":"stickyTracking","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.0","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.","demo":"True by default,\r\n\t\t\tfalse","seeAlso":"","deprecated":false},{"name":"series--stickyTracking","fullname":"series.stickyTracking","title":"stickyTracking","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the mouseOut event\r on a series isn't triggered until the mouse moves over another series, or out\r of the plot area. When false, the mouseOut event on a series is\r triggered when the mouse leaves the area around the series' graph or markers.\r This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--stops","fullname":"yAxis.stops","title":"stops","parent":"yAxis","isParent":false,"returnType":"Array","since":"4.0","description":"

Solid gauge series only. Color stops for the solid gauge. Use this in cases where a linear gradient between a minColor and maxColor is not sufficient. The stops is an array of tuples, where the first item is a float between 0 and 1 assigning the relative position in the gradient, and the second item is the color.

\r\n\r\n

For solid gauges, the Y axis also inherits the concept of data classes from the Highmaps color axis.

\r\n","demo":"True by default","seeAlso":"minColor, maxColor.","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--style","fullname":"plotOptions.solidgauge.dataLabels.style","title":"style","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"xAxis-labels--style","fullname":"xAxis.labels.style","title":"style","parent":"xAxis-labels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\":\"#6D869F\",\"fontWeight\":\"bold\"}","description":"CSS styles for the label. Use whiteSpace: 'nowrap' to prevent wrapping of category labels. Use textOverflow: 'none' to prevent ellipsis (dots).","demo":"Red X axis labels","deprecated":false},{"name":"noData--style","fullname":"noData.style","title":"style","parent":"noData","isParent":false,"returnType":"CSSObject","defaults":"{ \"fontSize\": \"12px\", \"fontWeight\": \"bold\", \"color\": \"#60606a\" }","values":"","since":"3.0.8","description":"CSS styles for the no-data label. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"labels-items--style","fullname":"labels.items.style","title":"style","parent":"labels-items","isParent":false,"returnType":"CSSObject","description":"CSS styles for each label. To position the label, use left and top like this:\n
style: {\n\tleft: '100px',\n\ttop: '100px'\n}
"},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"labels--style","fullname":"labels.style","title":"style","parent":"labels","isParent":false,"returnType":"CSSObject","description":"Shared CSS styles for all labels. Defaults to:\n
style: {\n\tcolor: '#3E576F'\n}
"},{"name":"plotOptions-bar-dataLabels--style","fullname":"plotOptions.bar.dataLabels.style","title":"style","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-pie-dataLabels--style","fullname":"plotOptions.pie.dataLabels.style","title":"style","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"yAxis-plotLines-label--style","fullname":"yAxis.plotLines.label.style","title":"style","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Object","since":"2.1","description":"CSS styles for the text label.","demo":"Blue and bold label"},{"name":"plotOptions-bubble-dataLabels--style","fullname":"plotOptions.bubble.dataLabels.style","title":"style","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-gauge-dataLabels--style","fullname":"plotOptions.gauge.dataLabels.style","title":"style","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-line-dataLabels--style","fullname":"plotOptions.line.dataLabels.style","title":"style","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"legend--style","fullname":"legend.style","title":"style","parent":"legend","isParent":false,"returnType":"CSSObject","description":"CSS styles for the legend area. In the 1.x versions the position of the legend area was determined by CSS. In 2.x, the position is determined by properties like align, verticalAlign, x and y, but the styles are still parsed for backwards compatibility.","deprecated":true},{"name":"plotOptions-polygon-dataLabels--style","fullname":"plotOptions.polygon.dataLabels.style","title":"style","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--style","fullname":"plotOptions.heatmap.dataLabels.style","title":"style","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--style","fullname":"plotOptions.pyramid.dataLabels.style","title":"style","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"yAxis-plotBands-label--style","fullname":"yAxis.plotBands.label.style","title":"style","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Object","since":"2.1","description":"CSS styles for the text label.","demo":"Blue and bold label"},{"name":"xAxis-plotLines-label--style","fullname":"xAxis.plotLines.label.style","title":"style","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Object","since":"2.1","description":"CSS styles for the text label.","demo":"Blue and bold label"},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--style","fullname":"plotOptions.areaspline.dataLabels.style","title":"style","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"xAxis-plotBands-label--style","fullname":"xAxis.plotBands.label.style","title":"style","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Object","since":"2.1","description":"CSS styles for the text label.","demo":"Blue and bold label"},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"yAxis-title--style","fullname":"yAxis.title.style","title":"style","parent":"yAxis-title","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#707070\", \"fontWeight\": \"bold\" }","description":"CSS styles for the title. When titles are rotated they are rendered using vector graphic techniques and not all styles are applicable.","demo":"Red Y axis title","deprecated":false},{"name":"plotOptions-funnel-dataLabels--style","fullname":"plotOptions.funnel.dataLabels.style","title":"style","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"loading--style","fullname":"loading.style","title":"style","parent":"loading","isParent":false,"returnType":"CSSObject","since":"1.2.0","description":"CSS styles for the loading screen that covers the plot area. Defaults to:\n
style: {\n\tposition: 'absolute',\n\tbackgroundColor: 'white',\n\topacity: 0.5,\n\ttextAlign: 'center'\n}
","demo":"Gray plot area, white text"},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-arearange-dataLabels--style","fullname":"plotOptions.arearange.dataLabels.style","title":"style","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"xAxis-title--style","fullname":"xAxis.title.style","title":"style","parent":"xAxis-title","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#707070\", \"fontWeight\": \"bold\" }","description":"CSS styles for the title. When titles are rotated they are rendered using vector graphic techniques and not all styles are applicable.","demo":"Red Y axis title","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-spline-dataLabels--style","fullname":"plotOptions.spline.dataLabels.style","title":"style","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-treemap-dataLabels--style","fullname":"plotOptions.treemap.dataLabels.style","title":"style","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-column-dataLabels--style","fullname":"plotOptions.column.dataLabels.style","title":"style","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--style","fullname":"plotOptions.areasplinerange.dataLabels.style","title":"style","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--style","fullname":"plotOptions.columnrange.dataLabels.style","title":"style","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"subtitle--style","fullname":"subtitle.style","title":"style","parent":"subtitle","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#555555\" }","description":"CSS styles for the title. Exact positioning of the title can be achieved by changing the margin property, or by adding position: \"absolute\" and left and top properties.","demo":"Custom color and weight","deprecated":false},{"name":"plotOptions-scatter-dataLabels--style","fullname":"plotOptions.scatter.dataLabels.style","title":"style","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"chart--style","fullname":"chart.style","title":"style","parent":"chart","isParent":false,"returnType":"CSSObject","defaults":"{\"fontFamily\":\"\\\"Lucida Grande\\\", \\\"Lucida Sans Unicode\\\", Verdana, Arial, Helvetica, sans-serif\",\"fontSize\":\"12px\"}","description":"Additional CSS styles to apply inline to the container div. Note that since the default font styles are applied in the renderer, it is ignorant of the individual chart options and must be set globally. Defaults to:\n
style: {\n\tfontFamily: '\"Lucida Grande\", \"Lucida Sans Unicode\", Verdana, Arial, Helvetica, sans-serif', // default font\n\tfontSize: '12px'\n}
","demo":"Using a serif type font"},{"name":"plotOptions-area-dataLabels--style","fullname":"plotOptions.area.dataLabels.style","title":"style","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--style","fullname":"plotOptions.waterfall.dataLabels.style","title":"style","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"credits--style","fullname":"credits.style","title":"style","parent":"credits","isParent":false,"returnType":"CSSObject","description":"CSS styles for the credits label. Defaults to:\r\n
style: {\r\n\tcursor: 'pointer',\r\n\tcolor: '#909090',\r\n\tfontSize: '10px'\r\n\r\n}
","deprecated":false},{"name":"legend-title--style","fullname":"legend.title.style","title":"style","parent":"legend-title","isParent":false,"returnType":"CSSObject","defaults":"{\"fontWeight\":\"bold\"}","since":"3.0","description":"Generic CSS styles for the legend title.","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"yAxis-labels--style","fullname":"yAxis.labels.style","title":"style","parent":"yAxis-labels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\":\"#6D869F\",\"fontWeight\":\"bold\"}","description":"CSS styles for the label. Use whiteSpace: 'nowrap' to prevent wrapping of category labels. Use textOverflow: 'none' to prevent ellipsis (dots).","demo":"Red X axis labels","deprecated":false},{"name":"tooltip--style","fullname":"tooltip.style","title":"style","parent":"tooltip","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#333333\", \"cursor\": \"default\", \"fontSize\": \"12px\", \"padding\": \"8px\", \"pointerEvents\": \"none\", \"whiteSpace\": \"nowrap\" }","description":"CSS styles for the tooltip. The tooltip can also be styled through the CSS\r\n class .highcharts-tooltip.","demo":"Greater padding, bold text","deprecated":false},{"name":"yAxis-stackLabels--style","fullname":"yAxis.stackLabels.style","title":"style","parent":"yAxis-stackLabels","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#000000\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 00 3px contrast\" }","since":"2.1.5","description":"CSS styles for the label.","demo":"Red stack total labels","deprecated":false},{"name":"series-dataLabels--style","fullname":"series.dataLabels.style","title":"style","parent":"series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"legend-navigation--style","fullname":"legend.navigation.style","title":"style","parent":"legend-navigation","isParent":false,"returnType":"CSSObject","since":"2.2.4","description":"Text styles for the legend page navigation.","demo":"\n\t\t\t\tLegend page navigation demonstrated"},{"name":"title--style","fullname":"title.style","title":"style","parent":"title","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#333333\", \"fontSize\": \"18px\" }","description":"CSS styles for the title. Use this for font styling, but use align, x and y for text alignment.","demo":"Custom color and weight","deprecated":false},{"name":"plotOptions-series-dataLabels--style","fullname":"plotOptions.series.dataLabels.style","title":"style","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\", \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","since":"4.1.0","description":"Styles for the label.","demo":"Bold labels","deprecated":false},{"name":"subtitle","fullname":"subtitle","title":"subtitle","isParent":true,"description":"The chart's subtitle"},{"name":"data--switchRowsAndColumns","fullname":"data.switchRowsAndColumns","title":"switchRowsAndColumns","parent":"data","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"4.0","description":"Switch rows and columns of the input data, so that this.columns effectively becomes the rows of the data set, and the rows are interpreted as series.","demo":"Switch rows and columns","seeAlso":"","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-gauge-states-hover-marker--symbol","fullname":"plotOptions.gauge.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-pyramid-states-hover-marker--symbol","fullname":"plotOptions.pyramid.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-line-states-hover-marker--symbol","fullname":"plotOptions.line.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-spline-marker--symbol","fullname":"plotOptions.spline.marker.symbol","title":"symbol","parent":"plotOptions-spline-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-bubble-marker--symbol","fullname":"plotOptions.bubble.marker.symbol","title":"symbol","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--symbol","fullname":"plotOptions.areaspline.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--symbol","fullname":"plotOptions.scatter.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-polygon-states-hover-marker--symbol","fullname":"plotOptions.polygon.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-marker--symbol","fullname":"plotOptions.areasplinerange.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-series-states-hover-marker--symbol","fullname":"plotOptions.series.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-series-marker--symbol","fullname":"plotOptions.series.marker.symbol","title":"symbol","parent":"plotOptions-series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-line-marker--symbol","fullname":"plotOptions.line.marker.symbol","title":"symbol","parent":"plotOptions-line-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--symbol","fullname":"plotOptions.columnrange.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-areaspline-marker--symbol","fullname":"plotOptions.areaspline.marker.symbol","title":"symbol","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-column-states-hover-marker--symbol","fullname":"plotOptions.column.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-treemap-states-hover-marker--symbol","fullname":"plotOptions.treemap.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-arearange-states-hover-marker--symbol","fullname":"plotOptions.arearange.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--symbol","fullname":"plotOptions.bar.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-area-states-hover-marker--symbol","fullname":"plotOptions.area.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--symbol","fullname":"plotOptions.spline.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-pie-states-hover-marker--symbol","fullname":"plotOptions.pie.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-data-marker--symbol","fullname":"series.data.marker.symbol","title":"symbol","parent":"series-data-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-scatter-marker--symbol","fullname":"plotOptions.scatter.marker.symbol","title":"symbol","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-bubble-states-hover-marker--symbol","fullname":"plotOptions.bubble.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-marker--symbol","fullname":"plotOptions.solidgauge.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-funnel-states-hover-marker--symbol","fullname":"plotOptions.funnel.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-boxplot-states-hover-marker--symbol","fullname":"plotOptions.boxplot.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-polygon-marker--symbol","fullname":"plotOptions.polygon.marker.symbol","title":"symbol","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"exporting-buttons-contextButton--symbol","fullname":"exporting.buttons.contextButton.symbol","title":"symbol","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"menu","values":"[\"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\", \"menu\"]","since":"2.0","description":"The symbol for the button. Points to a definition function in the \r Highcharts.Renderer.symbols collection. The default\r exportIcon function is part of the exporting module.","demo":"Use a circle for symbol","deprecated":false},{"name":"plotOptions-area-marker--symbol","fullname":"plotOptions.area.marker.symbol","title":"symbol","parent":"plotOptions-area-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-states-hover-marker--symbol","fullname":"series.states.hover.marker.symbol","title":"symbol","parent":"series-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-heatmap-states-hover-marker--symbol","fullname":"plotOptions.heatmap.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-errorbar-states-hover-marker--symbol","fullname":"plotOptions.errorbar.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"series-marker--symbol","fullname":"series.marker.symbol","title":"symbol","parent":"series-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"plotOptions-waterfall-states-hover-marker--symbol","fullname":"plotOptions.waterfall.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"String","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"

A predefined shape or symbol for the marker. When null, the symbol is pulled from options.symbols. Other possible values are \"circle\", \"square\", \"diamond\", \"triangle\" and \"triangle-down\".

\r\n\r\n

Additionally, the URL to a graphic can be given on this form: \"url(graphic.png)\". Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.

\r\n\r\n

Custom callbacks for symbol path generation can also be added to Highcharts.SVGRenderer.prototype.symbols. The callback is then used by its method name, as shown in the demo.

","demo":"Predefined, graphic and custom markers","deprecated":false},{"name":"navigation-buttonOptions--symbolFill","fullname":"navigation.buttonOptions.symbolFill","title":"symbolFill","parent":"navigation-buttonOptions","isParent":false,"returnType":"Color","defaults":"#E0E0E0","since":"2.0","description":"Fill color for the symbol within the button.","demo":"Blue symbol stroke for one of the buttons"},{"name":"exporting-buttons-contextButton--symbolFill","fullname":"exporting.buttons.contextButton.symbolFill","title":"symbolFill","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Color","defaults":"#A8BF77","since":"2.0","description":"See navigation.buttonOptions => symbolFill.","deprecated":false},{"name":"legend--symbolHeight","fullname":"legend.symbolHeight","title":"symbolHeight","parent":"legend","isParent":false,"returnType":"Number","since":"3.0.8","description":"The pixel height of the symbol for series types that use a rectangle in the legend. Defaults to the font size of legend items.","deprecated":false},{"name":"legend--symbolPadding","fullname":"legend.symbolPadding","title":"symbolPadding","parent":"legend","isParent":false,"returnType":"Number","defaults":"5","description":"The pixel padding between the legend item symbol and the legend item text.","demo":"Greater symbol width and padding"},{"name":"legend--symbolRadius","fullname":"legend.symbolRadius","title":"symbolRadius","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"3.0.8","description":"The border radius of the symbol for series types that use a rectangle in the legend.","demo":"Round symbols","deprecated":false},{"name":"navigation-buttonOptions--symbolSize","fullname":"navigation.buttonOptions.symbolSize","title":"symbolSize","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"14","since":"2.0","description":"The pixel size of the symbol on the button.","demo":"Bigger buttons","deprecated":false},{"name":"exporting-buttons-contextButton--symbolSize","fullname":"exporting.buttons.contextButton.symbolSize","title":"symbolSize","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"14","since":"2.0","description":"The pixel size of the symbol on the button.","demo":"Bigger buttons","deprecated":false},{"name":"exporting-buttons-contextButton--symbolStroke","fullname":"exporting.buttons.contextButton.symbolStroke","title":"symbolStroke","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Color","defaults":"#666","since":"2.0","description":"The color of the symbol's stroke or line.","demo":"Blue symbol stroke","deprecated":false},{"name":"navigation-buttonOptions--symbolStroke","fullname":"navigation.buttonOptions.symbolStroke","title":"symbolStroke","parent":"navigation-buttonOptions","isParent":false,"returnType":"Color","defaults":"#666","since":"2.0","description":"The color of the symbol's stroke or line.","demo":"Blue symbol stroke","deprecated":false},{"name":"exporting-buttons-contextButton--symbolStrokeWidth","fullname":"exporting.buttons.contextButton.symbolStrokeWidth","title":"symbolStrokeWidth","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"1","since":"2.0","description":"The pixel stroke width of the symbol on the button.","demo":"Bigger buttons"},{"name":"navigation-buttonOptions--symbolStrokeWidth","fullname":"navigation.buttonOptions.symbolStrokeWidth","title":"symbolStrokeWidth","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"1","since":"2.0","description":"The pixel stroke width of the symbol on the button.","demo":"Bigger buttons"},{"name":"legend--symbolWidth","fullname":"legend.symbolWidth","title":"symbolWidth","parent":"legend","isParent":false,"returnType":"Number","defaults":"16","description":"The pixel width of the legend item symbol.","demo":"Greater symbol width and padding","deprecated":false},{"name":"exporting-buttons-contextButton--symbolX","fullname":"exporting.buttons.contextButton.symbolX","title":"symbolX","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"12.5","since":"2.0","description":"The x position of the center of the symbol inside the button.","demo":"Bigger buttons","deprecated":false},{"name":"navigation-buttonOptions--symbolX","fullname":"navigation.buttonOptions.symbolX","title":"symbolX","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"12.5","since":"2.0","description":"The x position of the center of the symbol inside the button.","demo":"Bigger buttons","deprecated":false},{"name":"exporting-buttons-contextButton--symbolY","fullname":"exporting.buttons.contextButton.symbolY","title":"symbolY","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"10.5","since":"2.0","description":"The y position of the center of the symbol inside the button.","demo":"Bigger buttons"},{"name":"navigation-buttonOptions--symbolY","fullname":"navigation.buttonOptions.symbolY","title":"symbolY","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"10.5","since":"2.0","description":"The y position of the center of the symbol inside the button.","demo":"Bigger buttons"},{"name":"data--table","fullname":"data.table","title":"table","parent":"data","isParent":false,"returnType":"String|HTMLElement","defaults":"","values":"","since":"4.0","description":"A HTML table or the id of such to be parsed as input data. Related options are startRow, endRow, startColumn and endColumn to delimit what part of the table is used.","demo":"Parsed table","seeAlso":"","deprecated":false},{"name":"xAxis-title--text","fullname":"xAxis.title.text","title":"text","parent":"xAxis-title","isParent":false,"returnType":"String","description":"The actual text of the axis title. It can contain basic HTML text markup like <b>, <i> and spans with style.","demo":"Custom HTML title for X axis"},{"name":"xAxis-plotLines-label--text","fullname":"xAxis.plotLines.label.text","title":"text","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"","values":"","since":"2.1","description":"The text itself. A subset of HTML is supported.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-title--text","fullname":"yAxis.title.text","title":"text","parent":"yAxis-title","isParent":false,"returnType":"String","defaults":"Values","description":"The actual text of the axis title. Horizontal texts can contain HTML, \r but rotated texts are painted using vector techniques and must be \r clean text. The Y axis title is disabled by setting the text\r option to null.","demo":"Custom HTML title for X axis","deprecated":false},{"name":"yAxis-plotLines-label--text","fullname":"yAxis.plotLines.label.text","title":"text","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"","values":"","since":"2.1","description":"The text itself. A subset of HTML is supported.","demo":"","seeAlso":"","deprecated":false},{"name":"navigation-buttonOptions--text","fullname":"navigation.buttonOptions.text","title":"text","parent":"navigation-buttonOptions","isParent":false,"returnType":"String","defaults":"null","values":"","since":"3.0","description":"A text string to add to the individual button. ","demo":"Full text button, combined symbol and text ","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands-label--text","fullname":"yAxis.plotBands.label.text","title":"text","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","since":"2.1","description":"The string text itself. A subset of HTML is supported."},{"name":"exporting-buttons-contextButton--text","fullname":"exporting.buttons.contextButton.text","title":"text","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"null","values":"","since":"3.0","description":"A text string to add to the individual button. ","demo":"Full text button, combined symbol and text ","seeAlso":"","deprecated":false},{"name":"legend-title--text","fullname":"legend.title.text","title":"text","parent":"legend-title","isParent":false,"returnType":"String","defaults":"null","values":"","since":"3.0","description":"A text or HTML string for the title. ","demo":"","seeAlso":"","deprecated":false},{"name":"subtitle--text","fullname":"subtitle.text","title":"text","parent":"subtitle","isParent":false,"returnType":"String","description":"The subtitle of the chart.","demo":"Custom subtitle,\n\t\t\tformatted and linked text."},{"name":"title--text","fullname":"title.text","title":"text","parent":"title","isParent":false,"returnType":"String","defaults":"Chart title","description":"The title of the chart. To disable the title, set the text to null.","demo":"Custom title"},{"name":"xAxis-plotBands-label--text","fullname":"xAxis.plotBands.label.text","title":"text","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","since":"2.1","description":"The string text itself. A subset of HTML is supported."},{"name":"credits--text","fullname":"credits.text","title":"text","parent":"credits","isParent":false,"returnType":"String","defaults":"Highcharts.com","description":"The text for the credits label.","demo":"Custom URL and text"},{"name":"yAxis-stackLabels--textAlign","fullname":"yAxis.stackLabels.textAlign","title":"textAlign","parent":"yAxis-stackLabels","isParent":false,"returnType":"String","values":"[\"left\", \"center\", \"right\"]","since":"2.1.5","description":"The text alignment for the label. While align determines where the texts anchor point is placed with regards to the stack, textAlign determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". The default value is calculated at runtime and depends on orientation and whether the stack is positive or negative.","demo":"Label in center position but text-aligned left"},{"name":"yAxis-plotBands-label--textAlign","fullname":"yAxis.plotBands.label.textAlign","title":"textAlign","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","since":"2.1","description":"The text alignment for the label. While align determines where the texts anchor point is placed within the plot band, textAlign determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the align option.","demo":"Vertical text in center position but text-aligned left"},{"name":"xAxis-plotBands-label--textAlign","fullname":"xAxis.plotBands.label.textAlign","title":"textAlign","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","since":"2.1","description":"The text alignment for the label. While align determines where the texts anchor point is placed within the plot band, textAlign determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the align option.","demo":"Vertical text in center position but text-aligned left"},{"name":"xAxis-plotLines-label--textAlign","fullname":"xAxis.plotLines.label.textAlign","title":"textAlign","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","since":"2.1","description":"The text alignment for the label. While align determines where the texts anchor point is placed within the plot band, textAlign determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the align option.","demo":"Text label in bottom position"},{"name":"yAxis-plotLines-label--textAlign","fullname":"yAxis.plotLines.label.textAlign","title":"textAlign","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","since":"2.1","description":"The text alignment for the label. While align determines where the texts anchor point is placed within the plot band, textAlign determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the align option.","demo":"Text label in bottom position"},{"name":"drilldown-drillUpButton--theme","fullname":"drilldown.drillUpButton.theme","title":"theme","parent":"drilldown-drillUpButton","isParent":false,"returnType":"Object","defaults":"","values":"","since":"3.0.8","description":"A collection of attributes for the button. The object takes SVG attributes like fill, stroke, stroke-width or r, the border radius. The theme also supports style, a collection of CSS properties for the text. Equivalent attributes for the hover state are given in theme.states.hover.","demo":"Button theming","seeAlso":"","deprecated":false},{"name":"exporting-buttons-contextButton--theme","fullname":"exporting.buttons.contextButton.theme","title":"theme","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Object","defaults":"","values":"","since":"3.0","description":"A configuration object for the button theme. The object accepts SVG properties like stroke-width, stroke and fill. Tri-state button styles are supported by the states.hover and states.select objects.","demo":"Theming the buttons","seeAlso":"","deprecated":false},{"name":"chart-resetZoomButton--theme","fullname":"chart.resetZoomButton.theme","title":"theme","parent":"chart-resetZoomButton","isParent":false,"returnType":"Object","since":"2.2","description":"A collection of attributes for the button. The object takes SVG attributes like fill, stroke, stroke-width or r, the border radius. The theme also supports style, a collection of CSS properties for the text. Equivalent attributes for the hover state are given in theme.states.hover.","demo":"Theming the button"},{"name":"navigation-buttonOptions--theme","fullname":"navigation.buttonOptions.theme","title":"theme","parent":"navigation-buttonOptions","isParent":false,"returnType":"Object","defaults":"","values":"","since":"3.0","description":"A configuration object for the button theme. The object accepts SVG properties like stroke-width, stroke and fill. Tri-state button styles are supported by the states.hover and states.select objects.","demo":"Theming the buttons","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--thickness","fullname":"yAxis.plotBands.thickness","title":"thickness","parent":"yAxis-plotBands","isParent":false,"returnType":"Number|String","defaults":"10","values":"","since":"2.3","description":"In a gauge chart, this option sets the width of the plot band stretching along the perimeter. It can be given as a percentage string, like \"10%\", or as a pixel number, like 10. The default value 10 is the same as the default tickLength, thus making the plot band act as a background for the tick markers. ","demo":"Gauge plot band","seeAlso":"","deprecated":false},{"name":"lang--thousandsSep","fullname":"lang.thousandsSep","title":"thousandsSep","parent":"lang","isParent":false,"returnType":"String","defaults":" ","since":"1.2.2","description":"The default thousands separator used in the Highcharts.numberFormat method unless otherwise specified in the function arguments. Since Highcharts 4.1 it defaults to a single space character, which is compatible with ISO and works across Anglo-American and continental European languages.","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-waterfall--threshold","fullname":"plotOptions.waterfall.threshold","title":"threshold","parent":"plotOptions-waterfall","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-spline--threshold","fullname":"plotOptions.spline.threshold","title":"threshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-line--threshold","fullname":"plotOptions.line.threshold","title":"threshold","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-bar--threshold","fullname":"plotOptions.bar.threshold","title":"threshold","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area--threshold","fullname":"plotOptions.area.threshold","title":"threshold","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If null, the area behaves\r like a line series with fill between the graph and the Y axis minimum.","demo":"A threshold of 100","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-bubble--threshold","fullname":"plotOptions.bubble.threshold","title":"threshold","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If null, the area behaves\r like a line series with fill between the graph and the Y axis minimum.","demo":"A threshold of 100","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--threshold","fullname":"plotOptions.areaspline.threshold","title":"threshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If null, the area behaves\r like a line series with fill between the graph and the Y axis minimum.","demo":"A threshold of 100","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If null, the area behaves\r like a line series with fill between the graph and the Y axis minimum.","demo":"A threshold of 100","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--threshold","fullname":"plotOptions.gauge.threshold","title":"threshold","parent":"plotOptions-gauge","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-scatter--threshold","fullname":"plotOptions.scatter.threshold","title":"threshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-series--threshold","fullname":"plotOptions.series.threshold","title":"threshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","since":"3.0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.","seeAlso":"softThreshold.","deprecated":false},{"name":"plotOptions-column--threshold","fullname":"plotOptions.column.threshold","title":"threshold","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"series--threshold","fullname":"series.threshold","title":"threshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"2.0","description":"The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis--tickAmount","fullname":"xAxis.tickAmount","title":"tickAmount","parent":"xAxis","isParent":false,"returnType":"Number","since":"4.1.0","description":"

The amount of ticks to draw on the axis. This opens up for aligning the ticks of multiple charts or panes within a chart. This option overrides the tickPixelInterval option.

\r\n

This option only has an effect on linear axes. Datetime, logarithmic or category axes are not affected.

","demo":"8 ticks on Y axis","deprecated":false},{"name":"yAxis--tickAmount","fullname":"yAxis.tickAmount","title":"tickAmount","parent":"yAxis","isParent":false,"returnType":"Number","since":"4.1.0","description":"

The amount of ticks to draw on the axis. This opens up for aligning the ticks of multiple charts or panes within a chart. This option overrides the tickPixelInterval option.

\r\n

This option only has an effect on linear axes. Datetime, logarithmic or category axes are not affected.

","demo":"8 ticks on Y axis","deprecated":false},{"name":"yAxis--tickColor","fullname":"yAxis.tickColor","title":"tickColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"Color for the main tick marks.","demo":"Red ticks on X axis"},{"name":"xAxis--tickColor","fullname":"xAxis.tickColor","title":"tickColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"Color for the main tick marks.","demo":"Red ticks on X axis"},{"name":"yAxis--tickInterval","fullname":"yAxis.tickInterval","title":"tickInterval","parent":"yAxis","isParent":false,"returnType":"Number","description":"

The interval of the tick marks in axis units. When null, the tick interval\r\n is computed to approximately follow the tickPixelInterval on linear and datetime axes.\r\n On categorized axes, a null tickInterval will default to 1, one category. \r\n Note that datetime axes are based on milliseconds, so for \r\n example an interval of one day is expressed as 24 * 3600 * 1000.

\r\n

On logarithmic axes, the tickInterval is based on powers, so a tickInterval of 1 means\r\n \tone tick on each of 0.1, 1, 10, 100 etc. A tickInterval of 2 means a tick of 0.1, 10, 1000 etc.\r\n \tA tickInterval of 0.2 puts a tick on 0.1, 0.2, 0.4, 0.6, 0.8, 1, 2, 4, 6, 8, 10, 20, 40 etc.

\r\n

If the tickInterval is too dense for labels to be drawn, Highcharts may remove ticks.

","demo":"Tick interval of 5 on a linear axis","seeAlso":"tickPixelInterval, tickPositions, tickPositioner","deprecated":false},{"name":"xAxis--tickInterval","fullname":"xAxis.tickInterval","title":"tickInterval","parent":"xAxis","isParent":false,"returnType":"Number","description":"

The interval of the tick marks in axis units. When null, the tick interval\r\n is computed to approximately follow the tickPixelInterval on linear and datetime axes.\r\n On categorized axes, a null tickInterval will default to 1, one category. \r\n Note that datetime axes are based on milliseconds, so for \r\n example an interval of one day is expressed as 24 * 3600 * 1000.

\r\n

On logarithmic axes, the tickInterval is based on powers, so a tickInterval of 1 means\r\n \tone tick on each of 0.1, 1, 10, 100 etc. A tickInterval of 2 means a tick of 0.1, 10, 1000 etc.\r\n \tA tickInterval of 0.2 puts a tick on 0.1, 0.2, 0.4, 0.6, 0.8, 1, 2, 4, 6, 8, 10, 20, 40 etc.

\r\n

If the tickInterval is too dense for labels to be drawn, Highcharts may remove ticks.

","demo":"Tick interval of 5 on a linear axis","seeAlso":"tickPixelInterval, tickPositions, tickPositioner","deprecated":false},{"name":"yAxis--tickLength","fullname":"yAxis.tickLength","title":"tickLength","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"10","description":"The pixel length of the main tick marks.","demo":"20 px tick length on the X axis","deprecated":false},{"name":"xAxis--tickLength","fullname":"xAxis.tickLength","title":"tickLength","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"10","description":"The pixel length of the main tick marks.","demo":"20 px tick length on the X axis","deprecated":false},{"name":"yAxis--tickPixelInterval","fullname":"yAxis.tickPixelInterval","title":"tickPixelInterval","parent":"yAxis","isParent":false,"returnType":"Number","description":"If tickInterval is null this option sets the approximate pixel interval of the\r tick marks. Not applicable to categorized axis. Defaults to 72 \r for the Y axis and 100 for\tthe X axis.","demo":"50 px on X axis","seeAlso":"tickInterval, tickPositioner, tickPositions-","deprecated":false},{"name":"xAxis--tickPixelInterval","fullname":"xAxis.tickPixelInterval","title":"tickPixelInterval","parent":"xAxis","isParent":false,"returnType":"Number","description":"If tickInterval is null this option sets the approximate pixel interval of the\r tick marks. Not applicable to categorized axis. Defaults to 72 \r for the Y axis and 100 for\tthe X axis.","demo":"50 px on X axis","seeAlso":"tickInterval, tickPositioner, tickPositions-","deprecated":false},{"name":"yAxis--tickPosition","fullname":"yAxis.tickPosition","title":"tickPosition","parent":"yAxis","isParent":false,"returnType":"String","defaults":"outside","values":"[\"inside\", \"outside\"]","description":"The position of the major tick marks relative to the axis line. Can be one of inside and outside.","demo":"\"outside\" by default, \n\t\t\t\"inside\" on X axis"},{"name":"xAxis--tickPosition","fullname":"xAxis.tickPosition","title":"tickPosition","parent":"xAxis","isParent":false,"returnType":"String","defaults":"outside","values":"[\"inside\", \"outside\"]","description":"The position of the major tick marks relative to the axis line. Can be one of inside and outside.","demo":"\"outside\" by default, \n\t\t\t\"inside\" on X axis"},{"name":"xAxis--tickPositioner","fullname":"xAxis.tickPositioner","title":"tickPositioner","parent":"xAxis","isParent":false,"returnType":"Function","description":"A callback function returning array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval. The automatic tick positions are accessible through this.tickPositions and can be modified by the callback.","demo":"Demo of tickPositions and tickPositioner","seeAlso":"tickPositions","deprecated":false},{"name":"yAxis--tickPositioner","fullname":"yAxis.tickPositioner","title":"tickPositioner","parent":"yAxis","isParent":false,"returnType":"Function","description":"A callback function returning array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval. The automatic tick positions are accessible through this.tickPositions and can be modified by the callback.","demo":"Demo of tickPositions and tickPositioner","seeAlso":"tickPositions","deprecated":false},{"name":"yAxis--tickPositions","fullname":"yAxis.tickPositions","title":"tickPositions","parent":"yAxis","isParent":false,"returnType":"Array","description":"An array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval.","demo":"Demo of tickPositions and tickPositioner","seeAlso":"tickPositioner","deprecated":false},{"name":"xAxis--tickPositions","fullname":"xAxis.tickPositions","title":"tickPositions","parent":"xAxis","isParent":false,"returnType":"Array","description":"An array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval.","demo":"Demo of tickPositions and tickPositioner","seeAlso":"tickPositioner","deprecated":false},{"name":"xAxis--tickWidth","fullname":"xAxis.tickWidth","title":"tickWidth","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the major tick marks.","demo":"10 px width"},{"name":"yAxis--tickWidth","fullname":"yAxis.tickWidth","title":"tickWidth","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0","description":"The pixel width of the major tick marks.","demo":"10 px width"},{"name":"xAxis--tickmarkPlacement","fullname":"xAxis.tickmarkPlacement","title":"tickmarkPlacement","parent":"xAxis","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"on\", \"between\"]","description":"For categorized axes only. If on the tick mark is placed in the center of the category, if between the tick mark is placed between categories. The default is between if the tickInterval is 1, else on.","demo":"\"between\" by default, \r\n\t\t\t\"on\"","deprecated":false},{"name":"yAxis--tickmarkPlacement","fullname":"yAxis.tickmarkPlacement","title":"tickmarkPlacement","parent":"yAxis","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"on\", \"between\"]","description":"For categorized axes only. If on the tick mark is placed in the center of the category, if between the tick mark is placed between categories. The default is between if the tickInterval is 1, else on.","demo":"\"between\" by default, \r\n\t\t\t\"on\"","deprecated":false},{"name":"global--timezoneOffset","fullname":"global.timezoneOffset","title":"timezoneOffset","parent":"global","isParent":false,"returnType":"Number","defaults":"0","since":"3.0.8","description":"The timezone offset in minutes. Positive values are west, negative values are east of UTC, as in the ECMAScript getTimezoneOffset method. Use this to display UTC based data in a predefined time zone. ","demo":"Timezone offset","seeAlso":"global.getTimezoneOffset","deprecated":false},{"name":"title","fullname":"title","title":"title","isParent":true,"description":"The chart's main title."},{"name":"yAxis-title","fullname":"yAxis.title","title":"title","parent":"yAxis","isParent":true},{"name":"xAxis-title","fullname":"xAxis.title","title":"title","parent":"xAxis","isParent":true,"description":"The axis title, showing next to the axis line."},{"name":"legend-title","fullname":"legend.title","title":"title","parent":"legend","isParent":true,"returnType":"","defaults":"","values":"","since":"3.0","description":"A title to be added on top of the legend.","demo":"Legend title","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands--to","fullname":"xAxis.plotBands.to","title":"to","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","description":"The end position of the plot band in axis units.","demo":"Datetime axis,\n\t\t\tcategorized axis,"},{"name":"yAxis-plotBands--to","fullname":"yAxis.plotBands.to","title":"to","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","description":"The end position of the plot band in axis units.","demo":"Datetime axis,\n\t\t\tcategorized axis,"},{"name":"xAxis-breaks--to","fullname":"xAxis.breaks.to","title":"to","parent":"xAxis-breaks","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.0","description":"The point where the break ends.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-breaks--to","fullname":"yAxis.breaks.to","title":"to","parent":"yAxis-breaks","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1.0","description":"The point where the break ends.","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-areaspline-tooltip","fullname":"plotOptions.areaspline.tooltip","title":"tooltip","parent":"plotOptions-areaspline","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-bubble-tooltip","fullname":"plotOptions.bubble.tooltip","title":"tooltip","parent":"plotOptions-bubble","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-bar-tooltip","fullname":"plotOptions.bar.tooltip","title":"tooltip","parent":"plotOptions-bar","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-funnel-tooltip","fullname":"plotOptions.funnel.tooltip","title":"tooltip","parent":"plotOptions-funnel","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"","context":"","defaults":"","values":"","since":"4.1.0","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-waterfall-tooltip","fullname":"plotOptions.waterfall.tooltip","title":"tooltip","parent":"plotOptions-waterfall","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-spline-tooltip","fullname":"plotOptions.spline.tooltip","title":"tooltip","parent":"plotOptions-spline","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-treemap-tooltip","fullname":"plotOptions.treemap.tooltip","title":"tooltip","parent":"plotOptions-treemap","isParent":true,"returnType":"","context":"","defaults":"","values":"","since":"4.1.0","description":"","demo":"","seeAlso":"","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-solidgauge-tooltip","fullname":"plotOptions.solidgauge.tooltip","title":"tooltip","parent":"plotOptions-solidgauge","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-columnrange-tooltip","fullname":"plotOptions.columnrange.tooltip","title":"tooltip","parent":"plotOptions-columnrange","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-arearange-tooltip","fullname":"plotOptions.arearange.tooltip","title":"tooltip","parent":"plotOptions-arearange","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-gauge-tooltip","fullname":"plotOptions.gauge.tooltip","title":"tooltip","parent":"plotOptions-gauge","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-pyramid-tooltip","fullname":"plotOptions.pyramid.tooltip","title":"tooltip","parent":"plotOptions-pyramid","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-line-tooltip","fullname":"plotOptions.line.tooltip","title":"tooltip","parent":"plotOptions-line","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-scatter-tooltip","fullname":"plotOptions.scatter.tooltip","title":"tooltip","parent":"plotOptions-scatter","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-column-tooltip","fullname":"plotOptions.column.tooltip","title":"tooltip","parent":"plotOptions-column","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-heatmap-tooltip","fullname":"plotOptions.heatmap.tooltip","title":"tooltip","parent":"plotOptions-heatmap","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"tooltip","fullname":"tooltip","title":"tooltip","isParent":true,"description":"Options for the tooltip that appears when the user hovers over a series or point."},{"name":"plotOptions-series-tooltip","fullname":"plotOptions.series.tooltip","title":"tooltip","parent":"plotOptions-series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-errorbar-tooltip","fullname":"plotOptions.errorbar.tooltip","title":"tooltip","parent":"plotOptions-errorbar","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-boxplot-tooltip","fullname":"plotOptions.boxplot.tooltip","title":"tooltip","parent":"plotOptions-boxplot","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-area-tooltip","fullname":"plotOptions.area.tooltip","title":"tooltip","parent":"plotOptions-area","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-pie-tooltip","fullname":"plotOptions.pie.tooltip","title":"tooltip","parent":"plotOptions-pie","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-polygon-tooltip","fullname":"plotOptions.polygon.tooltip","title":"tooltip","parent":"plotOptions-polygon","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"series-tooltip","fullname":"series.tooltip","title":"tooltip","parent":"series","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip","fullname":"plotOptions.areasplinerange.tooltip","title":"tooltip","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Object","since":"2.3","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.","deprecated":false},{"name":"plotOptions-gauge-dial--topWidth","fullname":"plotOptions.gauge.dial.topWidth","title":"topWidth","parent":"plotOptions-gauge-dial","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The width of the top of the dial, closest to the perimeter. The pivot narrows in from the base to the top.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"series-dial--topWidth","fullname":"series.dial.topWidth","title":"topWidth","parent":"series-dial","isParent":false,"returnType":"Number","defaults":"1","since":"2.3.0","description":"The width of the top of the dial, closest to the perimeter. The pivot narrows in from the base to the top.","demo":"Dial options demonstrated","seeAlso":"","deprecated":false},{"name":"plotOptions-area--trackByArea","fullname":"plotOptions.area.trackByArea","title":"trackByArea","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.1.6","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"Display the tooltip when the\n\t\t\t\tarea is hovered"},{"name":"plotOptions-arearange--trackByArea","fullname":"plotOptions.arearange.trackByArea","title":"trackByArea","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"","seeAlso":"","deprecated":false},{"name":"series--trackByArea","fullname":"series.trackByArea","title":"trackByArea","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"","seeAlso":"","deprecated":false},{"name":"series--trackByArea","fullname":"series.trackByArea","title":"trackByArea","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.1.6","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"Display the tooltip when the\n\t\t\t\tarea is hovered"},{"name":"plotOptions-areaspline--trackByArea","fullname":"plotOptions.areaspline.trackByArea","title":"trackByArea","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.1.6","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"Display the tooltip when the\n\t\t\t\tarea is hovered"},{"name":"series--trackByArea","fullname":"series.trackByArea","title":"trackByArea","parent":"series","isParent":false,"returnType":"Boolean","defaults":"false","since":"1.1.6","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"Display the tooltip when the\n\t\t\t\tarea is hovered"},{"name":"plotOptions-areasplinerange--trackByArea","fullname":"plotOptions.areasplinerange.trackByArea","title":"trackByArea","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"","seeAlso":"","deprecated":false},{"name":"series--trackByArea","fullname":"series.trackByArea","title":"trackByArea","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.3.0","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap","fullname":"plotOptions.treemap","title":"treemap","parent":"plotOptions","isParent":true,"returnType":"Object","since":"4.1.0","description":"The size of the point shape is determined by its value relative to its siblings values.\r\nRequires the module heatmap.js as well, if functionality such as the colorAxis is to be used.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-boxplot--turboThreshold","fullname":"plotOptions.boxplot.turboThreshold","title":"turboThreshold","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-line--turboThreshold","fullname":"plotOptions.line.turboThreshold","title":"turboThreshold","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-scatter--turboThreshold","fullname":"plotOptions.scatter.turboThreshold","title":"turboThreshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-heatmap--turboThreshold","fullname":"plotOptions.heatmap.turboThreshold","title":"turboThreshold","parent":"plotOptions-heatmap","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-spline--turboThreshold","fullname":"plotOptions.spline.turboThreshold","title":"turboThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-areaspline--turboThreshold","fullname":"plotOptions.areaspline.turboThreshold","title":"turboThreshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-treemap--turboThreshold","fullname":"plotOptions.treemap.turboThreshold","title":"turboThreshold","parent":"plotOptions-treemap","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-columnrange--turboThreshold","fullname":"plotOptions.columnrange.turboThreshold","title":"turboThreshold","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-errorbar--turboThreshold","fullname":"plotOptions.errorbar.turboThreshold","title":"turboThreshold","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-series--turboThreshold","fullname":"plotOptions.series.turboThreshold","title":"turboThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-area--turboThreshold","fullname":"plotOptions.area.turboThreshold","title":"turboThreshold","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-bar--turboThreshold","fullname":"plotOptions.bar.turboThreshold","title":"turboThreshold","parent":"plotOptions-bar","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-column--turboThreshold","fullname":"plotOptions.column.turboThreshold","title":"turboThreshold","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-areasplinerange--turboThreshold","fullname":"plotOptions.areasplinerange.turboThreshold","title":"turboThreshold","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-arearange--turboThreshold","fullname":"plotOptions.arearange.turboThreshold","title":"turboThreshold","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"series--turboThreshold","fullname":"series.turboThreshold","title":"turboThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"plotOptions-polygon--turboThreshold","fullname":"plotOptions.polygon.turboThreshold","title":"turboThreshold","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"1000","since":"2.2","description":"When a series contains a data array that is longer than this, only one dimensional arrays of numbers,\r or two dimensional arrays with x and y values are allowed. Also, only the first\r point is tested, and the rest are assumed to be the same format. This saves expensive\r data checking and indexing in long series. Set it to 0 disable.","deprecated":false},{"name":"xAxis--type","fullname":"xAxis.type","title":"type","parent":"xAxis","isParent":false,"returnType":"String","defaults":"linear","values":"[\"linear\", \"logarithmic\", \"datetime\", \"category\"]","description":"The type of axis. Can be one of \"linear\", \"logarithmic\", \"datetime\" or \"category\". In a datetime axis, the numbers are given in milliseconds, and tick marks are placed \t\ton appropriate values like full hours or days. In a category axis, the point names of the chart's series are used for categories, if not a categories array is defined.","demo":"\"linear\", \r\n\t\t\t\"datetime\" with regular intervals,\r\n\t\t\t\"datetime\" with irregular intervals,\r\n\t\t\t\"logarithmic\",\r\n\t\t\t\"logarithmic\" with minor grid lines,\r\n\t\t\t\"logarithmic\" on two axes.","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"chart--type","fullname":"chart.type","title":"type","parent":"chart","isParent":false,"returnType":"String","defaults":"line","values":"[\"line\", \"spline\", \"column\", \"bar\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"heatmap\", \"polygon\", \"pyramid\", \"scatter\", \"solidgauge\", \"treemap\", \"waterfall\"]","since":"2.1.0","description":"The default series type for the chart. Can be any of the chart types listed under plotOptions.","demo":"Bar","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"exporting--type","fullname":"exporting.type","title":"type","parent":"exporting","isParent":false,"returnType":"String","defaults":"image/png","values":"[\"image/png\", \"image/jpeg\", \"application/pdf\", \"image/svg+xml\"]","since":"2.0","description":"Default MIME type for exporting if chart.exportChart() is called without specifying a type option. Possible values are image/png, image/jpeg, application/pdf and image/svg+xml.","demo":"Default type set to image/jpeg"},{"name":"yAxis--type","fullname":"yAxis.type","title":"type","parent":"yAxis","isParent":false,"returnType":"String","defaults":"linear","values":"[\"linear\", \"logarithmic\", \"datetime\", \"category\"]","description":"The type of axis. Can be one of \"linear\", \"logarithmic\", \"datetime\" or \"category\". In a datetime axis, the numbers are given in milliseconds, and tick marks are placed \t\ton appropriate values like full hours or days. In a category axis, the point names of the chart's series are used for categories, if not a categories array is defined.","demo":"\"linear\", \r\n\t\t\t\"datetime\" with regular intervals,\r\n\t\t\t\"datetime\" with irregular intervals,\r\n\t\t\t\"logarithmic\",\r\n\t\t\t\"logarithmic\" with minor grid lines,\r\n\t\t\t\"logarithmic\" on two axes.","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"series--type","fullname":"series.type","title":"type","parent":"series","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","since":"","description":"The type of series. Can be one of area, areaspline,\r bar, column, line, pie,\r scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.","demo":"Line and column in the same chart","seeAlso":"","deprecated":false},{"name":"xAxis--units","fullname":"xAxis.units","title":"units","parent":"xAxis","isParent":false,"returnType":"Array","defaults":"","values":"","since":"","description":"Datetime axis only. An array determining what time intervals the ticks are allowed to fall on. Each array item is an array where the first value is the time unit and the second value another array of allowed multiples. Defaults to:\r\n
units: [[\r\n\t'millisecond', // unit name\r\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\r\n], [\r\n\t'second',\r\n\t[1, 2, 5, 10, 15, 30]\r\n], [\r\n\t'minute',\r\n\t[1, 2, 5, 10, 15, 30]\r\n], [\r\n\t'hour',\r\n\t[1, 2, 3, 4, 6, 8, 12]\r\n], [\r\n\t'day',\r\n\t[1]\r\n], [\r\n\t'week',\r\n\t[1]\r\n], [\r\n\t'month',\r\n\t[1, 3, 6]\r\n], [\r\n\t'year',\r\n\tnull\r\n]]
","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--units","fullname":"yAxis.units","title":"units","parent":"yAxis","isParent":false,"returnType":"Array","defaults":"","values":"","since":"","description":"Datetime axis only. An array determining what time intervals the ticks are allowed to fall on. Each array item is an array where the first value is the time unit and the second value another array of allowed multiples. Defaults to:\r\n
units: [[\r\n\t'millisecond', // unit name\r\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\r\n], [\r\n\t'second',\r\n\t[1, 2, 5, 10, 15, 30]\r\n], [\r\n\t'minute',\r\n\t[1, 2, 5, 10, 15, 30]\r\n], [\r\n\t'hour',\r\n\t[1, 2, 3, 4, 6, 8, 12]\r\n], [\r\n\t'day',\r\n\t[1]\r\n], [\r\n\t'week',\r\n\t[1]\r\n], [\r\n\t'month',\r\n\t[1, 3, 6]\r\n], [\r\n\t'year',\r\n\tnull\r\n]]
","demo":"","seeAlso":"","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-areaspline-point-events--unselect","fullname":"plotOptions.areaspline.point.events.unselect","title":"unselect","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-solidgauge-point-events--unselect","fullname":"plotOptions.solidgauge.point.events.unselect","title":"unselect","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-area-point-events--unselect","fullname":"plotOptions.area.point.events.unselect","title":"unselect","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-series-point-events--unselect","fullname":"plotOptions.series.point.events.unselect","title":"unselect","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--unselect","fullname":"plotOptions.areasplinerange.point.events.unselect","title":"unselect","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-arearange-point-events--unselect","fullname":"plotOptions.arearange.point.events.unselect","title":"unselect","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-errorbar-point-events--unselect","fullname":"plotOptions.errorbar.point.events.unselect","title":"unselect","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-column-point-events--unselect","fullname":"plotOptions.column.point.events.unselect","title":"unselect","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-gauge-point-events--unselect","fullname":"plotOptions.gauge.point.events.unselect","title":"unselect","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-waterfall-point-events--unselect","fullname":"plotOptions.waterfall.point.events.unselect","title":"unselect","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-scatter-point-events--unselect","fullname":"plotOptions.scatter.point.events.unselect","title":"unselect","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-boxplot-point-events--unselect","fullname":"plotOptions.boxplot.point.events.unselect","title":"unselect","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-heatmap-point-events--unselect","fullname":"plotOptions.heatmap.point.events.unselect","title":"unselect","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-treemap-point-events--unselect","fullname":"plotOptions.treemap.point.events.unselect","title":"unselect","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-spline-point-events--unselect","fullname":"plotOptions.spline.point.events.unselect","title":"unselect","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-polygon-point-events--unselect","fullname":"plotOptions.polygon.point.events.unselect","title":"unselect","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-columnrange-point-events--unselect","fullname":"plotOptions.columnrange.point.events.unselect","title":"unselect","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-line-point-events--unselect","fullname":"plotOptions.line.point.events.unselect","title":"unselect","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-bubble-point-events--unselect","fullname":"plotOptions.bubble.point.events.unselect","title":"unselect","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-bar-point-events--unselect","fullname":"plotOptions.bar.point.events.unselect","title":"unselect","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-pyramid-point-events--unselect","fullname":"plotOptions.pyramid.point.events.unselect","title":"unselect","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-funnel-point-events--unselect","fullname":"plotOptions.funnel.point.events.unselect","title":"unselect","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"plotOptions-pie-point-events--unselect","fullname":"plotOptions.pie.point.events.unselect","title":"unselect","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-point-events--unselect","fullname":"series.point.events.unselect","title":"unselect","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series-data-events--unselect","fullname":"series.data.events.unselect","title":"unselect","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, event, is passed to the function. Returning false cancels the operation.","demo":"Report the last unselected point","deprecated":false},{"name":"series--upColor","fullname":"series.upColor","title":"upColor","parent":"series","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The color used specifically for positive point columns. When not specified, the general series color is used.","demo":"Waterfall","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall--upColor","fullname":"plotOptions.waterfall.upColor","title":"upColor","parent":"plotOptions-waterfall","isParent":false,"returnType":"Color","defaults":"","values":"","since":"","description":"The color used specifically for positive point columns. When not specified, the general series color is used.","demo":"Waterfall","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-point-events--update","fullname":"plotOptions.areaspline.point.events.update","title":"update","parent":"plotOptions-areaspline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-spline-point-events--update","fullname":"plotOptions.spline.point.events.update","title":"update","parent":"plotOptions-spline-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-heatmap-point-events--update","fullname":"plotOptions.heatmap.point.events.update","title":"update","parent":"plotOptions-heatmap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-area-point-events--update","fullname":"plotOptions.area.point.events.update","title":"update","parent":"plotOptions-area-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-pyramid-point-events--update","fullname":"plotOptions.pyramid.point.events.update","title":"update","parent":"plotOptions-pyramid-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-solidgauge-point-events--update","fullname":"plotOptions.solidgauge.point.events.update","title":"update","parent":"plotOptions-solidgauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-funnel-point-events--update","fullname":"plotOptions.funnel.point.events.update","title":"update","parent":"plotOptions-funnel-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-columnrange-point-events--update","fullname":"plotOptions.columnrange.point.events.update","title":"update","parent":"plotOptions-columnrange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-polygon-point-events--update","fullname":"plotOptions.polygon.point.events.update","title":"update","parent":"plotOptions-polygon-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-arearange-point-events--update","fullname":"plotOptions.arearange.point.events.update","title":"update","parent":"plotOptions-arearange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-gauge-point-events--update","fullname":"plotOptions.gauge.point.events.update","title":"update","parent":"plotOptions-gauge-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-pie-point-events--update","fullname":"plotOptions.pie.point.events.update","title":"update","parent":"plotOptions-pie-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-column-point-events--update","fullname":"plotOptions.column.point.events.update","title":"update","parent":"plotOptions-column-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-areasplinerange-point-events--update","fullname":"plotOptions.areasplinerange.point.events.update","title":"update","parent":"plotOptions-areasplinerange-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-scatter-point-events--update","fullname":"plotOptions.scatter.point.events.update","title":"update","parent":"plotOptions-scatter-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-bubble-point-events--update","fullname":"plotOptions.bubble.point.events.update","title":"update","parent":"plotOptions-bubble-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-bar-point-events--update","fullname":"plotOptions.bar.point.events.update","title":"update","parent":"plotOptions-bar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-series-point-events--update","fullname":"plotOptions.series.point.events.update","title":"update","parent":"plotOptions-series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-boxplot-point-events--update","fullname":"plotOptions.boxplot.point.events.update","title":"update","parent":"plotOptions-boxplot-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-errorbar-point-events--update","fullname":"plotOptions.errorbar.point.events.update","title":"update","parent":"plotOptions-errorbar-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-treemap-point-events--update","fullname":"plotOptions.treemap.point.events.update","title":"update","parent":"plotOptions-treemap-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-line-point-events--update","fullname":"plotOptions.line.point.events.update","title":"update","parent":"plotOptions-line-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-data-events--update","fullname":"series.data.events.update","title":"update","parent":"series-data-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"series-point-events--update","fullname":"series.point.events.update","title":"update","parent":"series-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"plotOptions-waterfall-point-events--update","fullname":"plotOptions.waterfall.point.events.update","title":"update","parent":"plotOptions-waterfall-point-events","isParent":false,"returnType":"Function","context":"Point","since":"1.2.0","description":"Fires when the point is updated programmatically through the .update() method. One parameter, event, is passed to the function. The new point options can be accessed through event.options. Returning false cancels the operation.","demo":"Confirm point updating","deprecated":false},{"name":"exporting--url","fullname":"exporting.url","title":"url","parent":"exporting","isParent":false,"returnType":"String","defaults":"http://export.highcharts.com","since":"2.0","description":"The URL for the server module converting the SVG string to an image format. By default this points to Highslide Software's free web service."},{"name":"plotOptions-column-dataLabels--useHTML","fullname":"plotOptions.column.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-gauge-dataLabels--useHTML","fullname":"plotOptions.gauge.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"tooltip--useHTML","fullname":"tooltip.useHTML","title":"useHTML","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2","description":"Use HTML to render the contents of the tooltip instead of SVG. Using HTML allows advanced formatting like tables and images in the tooltip. It is also recommended for rtl languages as it works around rtl bugs in early Firefox.","demo":"A table for value alignment. Full HTML tooltip.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"yAxis-labels--useHTML","fullname":"yAxis.labels.useHTML","title":"useHTML","parent":"yAxis-labels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-line-dataLabels--useHTML","fullname":"plotOptions.line.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-scatter-dataLabels--useHTML","fullname":"plotOptions.scatter.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"yAxis-stackLabels--useHTML","fullname":"yAxis.stackLabels.useHTML","title":"useHTML","parent":"yAxis-stackLabels","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0","description":"Whether to use HTML to render the labels.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--useHTML","fullname":"plotOptions.waterfall.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"title--useHTML","fullname":"title.useHTML","title":"useHTML","parent":"title","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the text.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"legend--useHTML","fullname":"legend.useHTML","title":"useHTML","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","description":"

Whether to use HTML to render the legend item texts. Prior to 4.1.7, when using HTML, legend.navigation was disabled.

","deprecated":false},{"name":"xAxis-labels--useHTML","fullname":"xAxis.labels.useHTML","title":"useHTML","parent":"xAxis-labels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"yAxis-plotLines-label--useHTML","fullname":"yAxis.plotLines.label.useHTML","title":"useHTML","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0.3","description":"

Whether to use HTML to render the labels.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--useHTML","fullname":"plotOptions.heatmap.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-bubble-dataLabels--useHTML","fullname":"plotOptions.bubble.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"yAxis-plotBands-label--useHTML","fullname":"yAxis.plotBands.label.useHTML","title":"useHTML","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Boolean","defaults":"false","since":"3.0.3","description":"

Whether to use HTML to render the labels.","deprecated":false},{"name":"noData--useHTML","fullname":"noData.useHTML","title":"useHTML","parent":"noData","isParent":false,"returnType":"Boolean","context":"","defaults":"false","values":"","since":"4.1.10","description":"Whether to insert the label as HTML, or as pseudo-HTML rendered with SVG.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--useHTML","fullname":"plotOptions.bar.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-polygon-dataLabels--useHTML","fullname":"plotOptions.polygon.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-area-dataLabels--useHTML","fullname":"plotOptions.area.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--useHTML","fullname":"plotOptions.pyramid.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-spline-dataLabels--useHTML","fullname":"plotOptions.spline.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-funnel-dataLabels--useHTML","fullname":"plotOptions.funnel.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"xAxis-plotLines-label--useHTML","fullname":"xAxis.plotLines.label.useHTML","title":"useHTML","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"3.0.3","description":"

Whether to use HTML to render the labels.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands-label--useHTML","fullname":"xAxis.plotBands.label.useHTML","title":"useHTML","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Boolean","defaults":"false","since":"3.0.3","description":"

Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-treemap-dataLabels--useHTML","fullname":"plotOptions.treemap.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"subtitle--useHTML","fullname":"subtitle.useHTML","title":"useHTML","parent":"subtitle","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the text.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--useHTML","fullname":"plotOptions.areaspline.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--useHTML","fullname":"plotOptions.solidgauge.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-pie-dataLabels--useHTML","fullname":"plotOptions.pie.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--useHTML","fullname":"plotOptions.areasplinerange.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-series-dataLabels--useHTML","fullname":"plotOptions.series.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--useHTML","fullname":"plotOptions.columnrange.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"plotOptions-arearange-dataLabels--useHTML","fullname":"plotOptions.arearange.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"series-dataLabels--useHTML","fullname":"series.dataLabels.useHTML","title":"useHTML","parent":"series-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to use HTML to render the labels.","deprecated":false},{"name":"global--useUTC","fullname":"global.useUTC","title":"useUTC","parent":"global","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to use UTC time for axis scaling, tickmark placement and time display in Highcharts.dateFormat. Advantages of using UTC is that the time displays equally regardless of the user agent's time zone settings. Local time can be used when the data is loaded in real time or when correct Daylight Saving Time transitions are required.","demo":"True by default - the starting point which is \n\t\t\tat 00:00 UTC, is displayed as 00:00 in the axis labels and in the tooltip. \n\t\t\tFalse - the starting point which is \n\t\t\tat 00:00 UTC, is displayed as your local browser time in the axis labels and in \n\t\t\tthe tooltip."},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-zones--value","fullname":"plotOptions.arearange.zones.value","title":"value","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-zones--value","fullname":"plotOptions.boxplot.zones.value","title":"value","parent":"plotOptions-boxplot-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-zones--value","fullname":"plotOptions.waterfall.zones.value","title":"value","parent":"plotOptions-waterfall-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar-zones--value","fullname":"plotOptions.errorbar.zones.value","title":"value","parent":"plotOptions-errorbar-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-zones--value","fullname":"plotOptions.polygon.zones.value","title":"value","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--value","fullname":"series.data.value","title":"value","parent":"series-data","isParent":false,"returnType":"Number","description":"The value of the point, resulting in a color controled by options as set in the colorAxis configuration."},{"name":"plotOptions-bar-zones--value","fullname":"plotOptions.bar.zones.value","title":"value","parent":"plotOptions-bar-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-zones--value","fullname":"plotOptions.columnrange.zones.value","title":"value","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-zones--value","fullname":"plotOptions.pie.zones.value","title":"value","parent":"plotOptions-pie-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-zones--value","fullname":"plotOptions.funnel.zones.value","title":"value","parent":"plotOptions-funnel-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-zones--value","fullname":"plotOptions.bubble.zones.value","title":"value","parent":"plotOptions-bubble-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-zones--value","fullname":"plotOptions.areaspline.zones.value","title":"value","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-zones--value","fullname":"plotOptions.area.zones.value","title":"value","parent":"plotOptions-area-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-zones--value","fullname":"plotOptions.pyramid.zones.value","title":"value","parent":"plotOptions-pyramid-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-zones--value","fullname":"plotOptions.gauge.zones.value","title":"value","parent":"plotOptions-gauge-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-zones--value","fullname":"plotOptions.column.zones.value","title":"value","parent":"plotOptions-column-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-zones--value","fullname":"plotOptions.areasplinerange.zones.value","title":"value","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-zones--value","fullname":"plotOptions.line.zones.value","title":"value","parent":"plotOptions-line-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-zones--value","fullname":"plotOptions.treemap.zones.value","title":"value","parent":"plotOptions-treemap-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-data--value","fullname":"series.data.value","title":"value","parent":"series-data","isParent":false,"returnType":"Number","description":"The value of the point, resulting in a relative area of the point in the treemap."},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-zones--value","fullname":"plotOptions.solidgauge.zones.value","title":"value","parent":"plotOptions-solidgauge-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-zones--value","fullname":"plotOptions.heatmap.zones.value","title":"value","parent":"plotOptions-heatmap-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines--value","fullname":"yAxis.plotLines.value","title":"value","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","description":"The position of the line in axis units.","demo":"Between two categories on X axis"},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-zones--value","fullname":"plotOptions.series.zones.value","title":"value","parent":"plotOptions-series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-zones--value","fullname":"plotOptions.spline.zones.value","title":"value","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotLines--value","fullname":"xAxis.plotLines.value","title":"value","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","description":"The position of the line in axis units.","demo":"Between two categories on X axis"},{"name":"plotOptions-scatter-zones--value","fullname":"plotOptions.scatter.zones.value","title":"value","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-zones--value","fullname":"series.zones.value","title":"value","parent":"series-zones","isParent":false,"returnType":"Number","context":"","defaults":"undefined","values":"","since":"4.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-tooltip--valueDecimals","fullname":"plotOptions.bar.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-funnel-tooltip--valueDecimals","fullname":"plotOptions.funnel.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-gauge-tooltip--valueDecimals","fullname":"plotOptions.gauge.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pyramid-tooltip--valueDecimals","fullname":"plotOptions.pyramid.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-heatmap-tooltip--valueDecimals","fullname":"plotOptions.heatmap.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-area-tooltip--valueDecimals","fullname":"plotOptions.area.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-scatter-tooltip--valueDecimals","fullname":"plotOptions.scatter.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-columnrange-tooltip--valueDecimals","fullname":"plotOptions.columnrange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areasplinerange-tooltip--valueDecimals","fullname":"plotOptions.areasplinerange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"tooltip--valueDecimals","fullname":"tooltip.valueDecimals","title":"valueDecimals","parent":"tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-polygon-tooltip--valueDecimals","fullname":"plotOptions.polygon.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-bubble-tooltip--valueDecimals","fullname":"plotOptions.bubble.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-waterfall-tooltip--valueDecimals","fullname":"plotOptions.waterfall.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-line-tooltip--valueDecimals","fullname":"plotOptions.line.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-solidgauge-tooltip--valueDecimals","fullname":"plotOptions.solidgauge.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-boxplot-tooltip--valueDecimals","fullname":"plotOptions.boxplot.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-series-tooltip--valueDecimals","fullname":"plotOptions.series.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areaspline-tooltip--valueDecimals","fullname":"plotOptions.areaspline.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-column-tooltip--valueDecimals","fullname":"plotOptions.column.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-treemap-tooltip--valueDecimals","fullname":"plotOptions.treemap.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pie-tooltip--valueDecimals","fullname":"plotOptions.pie.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-errorbar-tooltip--valueDecimals","fullname":"plotOptions.errorbar.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-spline-tooltip--valueDecimals","fullname":"plotOptions.spline.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-arearange-tooltip--valueDecimals","fullname":"plotOptions.arearange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueDecimals","fullname":"series.tooltip.valueDecimals","title":"valueDecimals","parent":"series-tooltip","isParent":false,"returnType":"Number","since":"2.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object. The default is to preserve all decimals.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-area-tooltip--valuePrefix","fullname":"plotOptions.area.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-bubble-tooltip--valuePrefix","fullname":"plotOptions.bubble.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pie-tooltip--valuePrefix","fullname":"plotOptions.pie.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-series-tooltip--valuePrefix","fullname":"plotOptions.series.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-solidgauge-tooltip--valuePrefix","fullname":"plotOptions.solidgauge.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"tooltip--valuePrefix","fullname":"tooltip.valuePrefix","title":"valuePrefix","parent":"tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-polygon-tooltip--valuePrefix","fullname":"plotOptions.polygon.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-funnel-tooltip--valuePrefix","fullname":"plotOptions.funnel.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-treemap-tooltip--valuePrefix","fullname":"plotOptions.treemap.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-gauge-tooltip--valuePrefix","fullname":"plotOptions.gauge.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-spline-tooltip--valuePrefix","fullname":"plotOptions.spline.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-heatmap-tooltip--valuePrefix","fullname":"plotOptions.heatmap.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areaspline-tooltip--valuePrefix","fullname":"plotOptions.areaspline.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-waterfall-tooltip--valuePrefix","fullname":"plotOptions.waterfall.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-line-tooltip--valuePrefix","fullname":"plotOptions.line.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pyramid-tooltip--valuePrefix","fullname":"plotOptions.pyramid.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-scatter-tooltip--valuePrefix","fullname":"plotOptions.scatter.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-column-tooltip--valuePrefix","fullname":"plotOptions.column.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areasplinerange-tooltip--valuePrefix","fullname":"plotOptions.areasplinerange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-boxplot-tooltip--valuePrefix","fullname":"plotOptions.boxplot.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-errorbar-tooltip--valuePrefix","fullname":"plotOptions.errorbar.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-bar-tooltip--valuePrefix","fullname":"plotOptions.bar.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-columnrange-tooltip--valuePrefix","fullname":"plotOptions.columnrange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-arearange-tooltip--valuePrefix","fullname":"plotOptions.arearange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valuePrefix","fullname":"series.tooltip.valuePrefix","title":"valuePrefix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-spline-tooltip--valueSuffix","fullname":"plotOptions.spline.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areaspline-tooltip--valueSuffix","fullname":"plotOptions.areaspline.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-arearange-tooltip--valueSuffix","fullname":"plotOptions.arearange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-area-tooltip--valueSuffix","fullname":"plotOptions.area.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-areasplinerange-tooltip--valueSuffix","fullname":"plotOptions.areasplinerange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-bubble-tooltip--valueSuffix","fullname":"plotOptions.bubble.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-waterfall-tooltip--valueSuffix","fullname":"plotOptions.waterfall.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-heatmap-tooltip--valueSuffix","fullname":"plotOptions.heatmap.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pie-tooltip--valueSuffix","fullname":"plotOptions.pie.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-column-tooltip--valueSuffix","fullname":"plotOptions.column.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-line-tooltip--valueSuffix","fullname":"plotOptions.line.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-scatter-tooltip--valueSuffix","fullname":"plotOptions.scatter.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-treemap-tooltip--valueSuffix","fullname":"plotOptions.treemap.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-errorbar-tooltip--valueSuffix","fullname":"plotOptions.errorbar.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pyramid-tooltip--valueSuffix","fullname":"plotOptions.pyramid.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-columnrange-tooltip--valueSuffix","fullname":"plotOptions.columnrange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-polygon-tooltip--valueSuffix","fullname":"plotOptions.polygon.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-boxplot-tooltip--valueSuffix","fullname":"plotOptions.boxplot.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-series-tooltip--valueSuffix","fullname":"plotOptions.series.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-gauge-tooltip--valueSuffix","fullname":"plotOptions.gauge.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-solidgauge-tooltip--valueSuffix","fullname":"plotOptions.solidgauge.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-bar-tooltip--valueSuffix","fullname":"plotOptions.bar.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"series-tooltip--valueSuffix","fullname":"series.tooltip.valueSuffix","title":"valueSuffix","parent":"series-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"tooltip--valueSuffix","fullname":"tooltip.valueSuffix","title":"valueSuffix","parent":"tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-funnel-tooltip--valueSuffix","fullname":"plotOptions.funnel.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","since":"2.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"Set decimals, prefix and suffix for the value"},{"name":"plotOptions-pie-dataLabels--verticalAlign","fullname":"plotOptions.pie.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"top","since":"","description":"The vertical alignment of the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands-label--verticalAlign","fullname":"xAxis.plotBands.label.verticalAlign","title":"verticalAlign","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"top","since":"2.1","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Vertically centered label"},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--verticalAlign","fullname":"plotOptions.areaspline.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--verticalAlign","fullname":"plotOptions.polygon.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"title--verticalAlign","fullname":"title.verticalAlign","title":"verticalAlign","parent":"title","isParent":false,"returnType":"String","defaults":" ","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.1","description":"The vertical alignment of the title. Can be one of \"top\", \"middle\" and \"bottom\". When a value is given, the title behaves as floating.","demo":"Chart title in bottom right corner","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--verticalAlign","fullname":"plotOptions.gauge.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"String","defaults":"top","since":"","description":"The vertical alignment of the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","context":"","defaults":"middle","values":"","since":"4.1.0","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--verticalAlign","fullname":"plotOptions.solidgauge.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"String","defaults":"top","since":"","description":"The vertical alignment of the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--verticalAlign","fullname":"plotOptions.series.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--verticalAlign","fullname":"plotOptions.waterfall.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"exporting-buttons-contextButton--verticalAlign","fullname":"exporting.buttons.contextButton.verticalAlign","title":"verticalAlign","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"top","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.0","description":"The vertical alignment of the buttons. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Buttons at lower right"},{"name":"plotOptions-area-dataLabels--verticalAlign","fullname":"plotOptions.area.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--verticalAlign","fullname":"plotOptions.arearange.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","defaults":"top","since":"","description":"The vertical alignment of the data label.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--verticalAlign","fullname":"plotOptions.treemap.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"String","context":"","defaults":"middle","values":"","since":"4.1.0","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"legend--verticalAlign","fullname":"legend.verticalAlign","title":"verticalAlign","parent":"legend","isParent":false,"returnType":"String","defaults":"bottom","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.0","description":"

The vertical alignment of the legend box. Can be one of top, middle or bottom. Vertical position can be further determined by the y option.

\r\n\r\n

In the case that the legend is aligned in a corner position, the layout option will determine whether to place it above/below or on the side of the plot area.

","demo":"Legend 100px from the top of the chart","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--verticalAlign","fullname":"plotOptions.areasplinerange.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-stackLabels--verticalAlign","fullname":"yAxis.stackLabels.verticalAlign","title":"verticalAlign","parent":"yAxis-stackLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.1.5","description":"Defines the vertical alignment of the stack total label. Can be one of \"top\", \"middle\" or \"bottom\". The default value is calculated at runtime and depends on orientation and whether the stack is positive or negative.","demo":"\"Vertically aligned top\",\n\t\t\t\"Vertically aligned middle\",\n\t\t\t\"Vertically aligned bottom\""},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands-label--verticalAlign","fullname":"yAxis.plotBands.label.verticalAlign","title":"verticalAlign","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"top","since":"2.1","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Vertically centered label"},{"name":"plotOptions-spline-dataLabels--verticalAlign","fullname":"plotOptions.spline.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"subtitle--verticalAlign","fullname":"subtitle.verticalAlign","title":"verticalAlign","parent":"subtitle","isParent":false,"returnType":"String","defaults":" ","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.1","description":"The vertical alignment of the title. Can be one of \"top\", \"middle\" and \"bottom\". When a value is given, the title behaves as floating.","demo":"Footnote at the bottom right of plot area","deprecated":false},{"name":"plotOptions-bar-dataLabels--verticalAlign","fullname":"plotOptions.bar.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--verticalAlign","fullname":"plotOptions.pyramid.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--verticalAlign","fullname":"plotOptions.heatmap.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--verticalAlign","fullname":"plotOptions.line.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--verticalAlign","fullname":"plotOptions.funnel.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--verticalAlign","fullname":"plotOptions.column.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--verticalAlign","fullname":"plotOptions.columnrange.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--verticalAlign","fullname":"plotOptions.bubble.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines-label--verticalAlign","fullname":"yAxis.plotLines.label.verticalAlign","title":"verticalAlign","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"top","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.1","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Vertically centered label","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--verticalAlign","fullname":"series.dataLabels.verticalAlign","title":"verticalAlign","parent":"series-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotLines-label--verticalAlign","fullname":"xAxis.plotLines.label.verticalAlign","title":"verticalAlign","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"top","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.1","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Vertically centered label","deprecated":false},{"name":"navigation-buttonOptions--verticalAlign","fullname":"navigation.buttonOptions.verticalAlign","title":"verticalAlign","parent":"navigation-buttonOptions","isParent":false,"returnType":"String","defaults":"top","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.0","description":"The vertical alignment of the buttons. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"Buttons at lower right"},{"name":"plotOptions-scatter-dataLabels--verticalAlign","fullname":"plotOptions.scatter.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"2.3.3","description":"The vertical alignment of a data label. Can be one of top, middle or bottom. The default value depends on the data, for instance in a column chart, the label is above positive values and below negative values.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-options3d--viewDistance","fullname":"chart.options3d.viewDistance","title":"viewDistance","parent":"chart-options3d","isParent":false,"returnType":"Number","defaults":"100","values":"","since":"4.0","description":"Defines the distance the viewer is standing in front of the chart, this setting is important to calculate the perspective effect in column and scatter charts.\r\nIt is not used for 3D pie charts.","demo":"","seeAlso":"","deprecated":false},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-areaspline--visible","fullname":"plotOptions.areaspline.visible","title":"visible","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-arearange--visible","fullname":"plotOptions.arearange.visible","title":"visible","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-spline--visible","fullname":"plotOptions.spline.visible","title":"visible","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-bar--visible","fullname":"plotOptions.bar.visible","title":"visible","parent":"plotOptions-bar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-column--visible","fullname":"plotOptions.column.visible","title":"visible","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-line--visible","fullname":"plotOptions.line.visible","title":"visible","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-areasplinerange--visible","fullname":"plotOptions.areasplinerange.visible","title":"visible","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-solidgauge--visible","fullname":"plotOptions.solidgauge.visible","title":"visible","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-scatter--visible","fullname":"plotOptions.scatter.visible","title":"visible","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-treemap--visible","fullname":"plotOptions.treemap.visible","title":"visible","parent":"plotOptions-treemap","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-pyramid--visible","fullname":"plotOptions.pyramid.visible","title":"visible","parent":"plotOptions-pyramid","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"xAxis--visible","fullname":"xAxis.visible","title":"visible","parent":"xAxis","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"Whether axis, including axis title, line, ticks and labels, should be visible.","demo":"Toggle axis visibility.","seeAlso":"","deprecated":false},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-series--visible","fullname":"plotOptions.series.visible","title":"visible","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-polygon--visible","fullname":"plotOptions.polygon.visible","title":"visible","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"yAxis--visible","fullname":"yAxis.visible","title":"visible","parent":"yAxis","isParent":false,"returnType":"Boolean","context":"","defaults":"true","values":"","since":"4.1.9","description":"Whether axis, including axis title, line, ticks and labels, should be visible.","demo":"Toggle axis visibility.","seeAlso":"","deprecated":false},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-waterfall--visible","fullname":"plotOptions.waterfall.visible","title":"visible","parent":"plotOptions-waterfall","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-columnrange--visible","fullname":"plotOptions.columnrange.visible","title":"visible","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-funnel--visible","fullname":"plotOptions.funnel.visible","title":"visible","parent":"plotOptions-funnel","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-boxplot--visible","fullname":"plotOptions.boxplot.visible","title":"visible","parent":"plotOptions-boxplot","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-bubble--visible","fullname":"plotOptions.bubble.visible","title":"visible","parent":"plotOptions-bubble","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-area--visible","fullname":"plotOptions.area.visible","title":"visible","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-pie--visible","fullname":"plotOptions.pie.visible","title":"visible","parent":"plotOptions-pie","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-gauge--visible","fullname":"plotOptions.gauge.visible","title":"visible","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-heatmap--visible","fullname":"plotOptions.heatmap.visible","title":"visible","parent":"plotOptions-heatmap","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-errorbar--visible","fullname":"plotOptions.errorbar.visible","title":"visible","parent":"plotOptions-errorbar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"series--visible","fullname":"series.visible","title":"visible","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"Two series, one hidden and one visible"},{"name":"plotOptions-waterfall","fullname":"plotOptions.waterfall","title":"waterfall","parent":"plotOptions","isParent":true,"returnType":"Object","defaults":"","values":"","since":"3.0","description":"Options for the waterfall series type.","demo":"Waterfall chart","seeAlso":"","deprecated":false},{"name":"lang--weekdays","fullname":"lang.weekdays","title":"weekdays","parent":"lang","isParent":false,"returnType":"Array","defaults":"[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]","since":"","description":"An array containing the weekday names.\t\t ","demo":"","seeAlso":"","deprecated":false},{"name":"series--whiskerColor","fullname":"series.whiskerColor","title":"whiskerColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the whiskers, the horizontal lines marking low and high values. When null, the general series color is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--whiskerColor","fullname":"plotOptions.boxplot.whiskerColor","title":"whiskerColor","parent":"plotOptions-boxplot","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the whiskers, the horizontal lines marking low and high values. When null, the general series color is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--whiskerColor","fullname":"plotOptions.errorbar.whiskerColor","title":"whiskerColor","parent":"plotOptions-errorbar","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the whiskers, the horizontal lines marking low and high values. When null, the general series color is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"series--whiskerColor","fullname":"series.whiskerColor","title":"whiskerColor","parent":"series","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"3.0","description":"The color of the whiskers, the horizontal lines marking low and high values. When null, the general series color is used.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"series--whiskerLength","fullname":"series.whiskerLength","title":"whiskerLength","parent":"series","isParent":false,"returnType":"Number|String","defaults":"50%","values":"","since":"3.0","description":"The length of the whiskers, the horizontal lines marking low and high values. It can be a numerical pixel value, or a percentage value of the box width. Set 0 to disable whiskers.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--whiskerLength","fullname":"plotOptions.boxplot.whiskerLength","title":"whiskerLength","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number|String","defaults":"50%","values":"","since":"3.0","description":"The length of the whiskers, the horizontal lines marking low and high values. It can be a numerical pixel value, or a percentage value of the box width. Set 0 to disable whiskers.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"series--whiskerLength","fullname":"series.whiskerLength","title":"whiskerLength","parent":"series","isParent":false,"returnType":"Number|String","defaults":"50%","values":"","since":"3.0","description":"The length of the whiskers, the horizontal lines marking low and high values. It can be a numerical pixel value, or a percentage value of the box width. Set 0 to disable whiskers.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--whiskerLength","fullname":"plotOptions.errorbar.whiskerLength","title":"whiskerLength","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number|String","defaults":"50%","values":"","since":"3.0","description":"The length of the whiskers, the horizontal lines marking low and high values. It can be a numerical pixel value, or a percentage value of the box width. Set 0 to disable whiskers.","demo":"True by default","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot--whiskerWidth","fullname":"plotOptions.boxplot.whiskerWidth","title":"whiskerWidth","parent":"plotOptions-boxplot","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"3.0","description":"The line width of the whiskers, the horizontal lines marking low and high values. When null, the general lineWidth applies.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"series--whiskerWidth","fullname":"series.whiskerWidth","title":"whiskerWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The line width of the whiskers, the horizontal lines marking low and high values. When null, the general lineWidth applies.","demo":" Error bar styling","seeAlso":"","deprecated":false},{"name":"plotOptions-errorbar--whiskerWidth","fullname":"plotOptions.errorbar.whiskerWidth","title":"whiskerWidth","parent":"plotOptions-errorbar","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"3.0","description":"The line width of the whiskers, the horizontal lines marking low and high values. When null, the general lineWidth applies.","demo":" Error bar styling","seeAlso":"","deprecated":false},{"name":"series--whiskerWidth","fullname":"series.whiskerWidth","title":"whiskerWidth","parent":"series","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"3.0","description":"The line width of the whiskers, the horizontal lines marking low and high values. When null, the general lineWidth applies.","demo":"Box plot styling","seeAlso":"","deprecated":false},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"exporting--width","fullname":"exporting.width","title":"width","parent":"exporting","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.0","description":"The pixel width of charts exported to PNG or JPG. As of Highcharts 3.0, the default pixel width is a function of the chart.width or exporting.sourceWidth and the exporting.scale.","demo":"Export to 200px wide images","deprecated":false},{"name":"plotOptions-errorbar-states-hover-marker--width","fullname":"plotOptions.errorbar.states.hover.marker.width","title":"width","parent":"plotOptions-errorbar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series--width","fullname":"series.width","title":"width","parent":"series","isParent":false,"returnType":"Number|String","defaults":"90%","values":"","since":"3.0","description":"The width of the funnel compared to the width of the plot area, or the pixel width if it is a number.","demo":"","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series--width","fullname":"series.width","title":"width","parent":"series","isParent":false,"returnType":"Number|String","defaults":"90%","values":"","since":"3.0","description":"The width of the funnel compared to the width of the plot area, or the pixel width if it is a number.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-states-hover-marker--width","fullname":"plotOptions.columnrange.states.hover.marker.width","title":"width","parent":"plotOptions-columnrange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid--width","fullname":"plotOptions.pyramid.width","title":"width","parent":"plotOptions-pyramid","isParent":false,"returnType":"Number|String","defaults":"90%","values":"","since":"3.0","description":"The width of the funnel compared to the width of the plot area, or the pixel width if it is a number.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-states-hover-marker--width","fullname":"plotOptions.solidgauge.states.hover.marker.width","title":"width","parent":"plotOptions-solidgauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"yAxis-crosshair--width","fullname":"yAxis.crosshair.width","title":"width","parent":"yAxis-crosshair","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1","description":"The pixel width of the crosshair. Defaults to 1 for numeric or datetime axes, and for one category width for category axes.","demo":"Customized crosshairs.","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-marker--width","fullname":"plotOptions.polygon.marker.width","title":"width","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"exporting-buttons-contextButton--width","fullname":"exporting.buttons.contextButton.width","title":"width","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"24","since":"2.0","description":"The pixel width of the button.","demo":"Bigger buttons"},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-states-hover-marker--width","fullname":"plotOptions.arearange.states.hover.marker.width","title":"width","parent":"plotOptions-arearange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-states-hover-marker--width","fullname":"plotOptions.areasplinerange.states.hover.marker.width","title":"width","parent":"plotOptions-areasplinerange-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-states-hover-marker--width","fullname":"plotOptions.pyramid.states.hover.marker.width","title":"width","parent":"plotOptions-pyramid-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-series-states-hover-marker--width","fullname":"plotOptions.series.states.hover.marker.width","title":"width","parent":"plotOptions-series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-states-hover-marker--width","fullname":"plotOptions.bar.states.hover.marker.width","title":"width","parent":"plotOptions-bar-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-states-hover-marker--width","fullname":"plotOptions.waterfall.states.hover.marker.width","title":"width","parent":"plotOptions-waterfall-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines--width","fullname":"yAxis.plotLines.width","title":"width","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","description":"The width or thickness of the plot line.","demo":"2px wide line from X axis"},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel--width","fullname":"plotOptions.funnel.width","title":"width","parent":"plotOptions-funnel","isParent":false,"returnType":"Number|String","defaults":"90%","values":"","since":"3.0","description":"The width of the funnel compared to the width of the plot area, or the pixel width if it is a number.","demo":"","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-states-hover-marker--width","fullname":"plotOptions.areaspline.states.hover.marker.width","title":"width","parent":"plotOptions-areaspline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"chart--width","fullname":"chart.width","title":"width","parent":"chart","isParent":false,"returnType":"Number","description":"An explicit width for the chart. By default the width is calculated from the offset width of the containing element.","demo":"800px wide"},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-boxplot-states-hover-marker--width","fullname":"plotOptions.boxplot.states.hover.marker.width","title":"width","parent":"plotOptions-boxplot-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-states-hover-marker--width","fullname":"plotOptions.gauge.states.hover.marker.width","title":"width","parent":"plotOptions-gauge-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair--width","fullname":"xAxis.crosshair.width","title":"width","parent":"xAxis-crosshair","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"4.1","description":"The pixel width of the crosshair. Defaults to 1 for numeric or datetime axes, and for one category width for category axes.","demo":"Customized crosshairs.","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-states-hover-marker--width","fullname":"plotOptions.scatter.states.hover.marker.width","title":"width","parent":"plotOptions-scatter-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-states-hover-marker--width","fullname":"plotOptions.pie.states.hover.marker.width","title":"width","parent":"plotOptions-pie-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-line-states-hover-marker--width","fullname":"plotOptions.line.states.hover.marker.width","title":"width","parent":"plotOptions-line-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-column-states-hover-marker--width","fullname":"plotOptions.column.states.hover.marker.width","title":"width","parent":"plotOptions-column-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"navigation-buttonOptions--width","fullname":"navigation.buttonOptions.width","title":"width","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"24","since":"2.0","description":"The pixel width of the button.","demo":"Bigger buttons"},{"name":"plotOptions-area-states-hover-marker--width","fullname":"plotOptions.area.states.hover.marker.width","title":"width","parent":"plotOptions-area-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"legend--width","fullname":"legend.width","title":"width","parent":"legend","isParent":false,"returnType":"Number","since":"2.0","description":"The width of the legend box.","demo":"Aligned to the plot area","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-marker--width","fullname":"plotOptions.bubble.marker.width","title":"width","parent":"plotOptions-bubble-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-data-marker--width","fullname":"series.data.marker.width","title":"width","parent":"series-data-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-area-marker--width","fullname":"plotOptions.area.marker.width","title":"width","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-marker--width","fullname":"plotOptions.areaspline.marker.width","title":"width","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-states-hover-marker--width","fullname":"plotOptions.bubble.states.hover.marker.width","title":"width","parent":"plotOptions-bubble-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-marker--width","fullname":"series.marker.width","title":"width","parent":"series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-states-hover-marker--width","fullname":"plotOptions.spline.states.hover.marker.width","title":"width","parent":"plotOptions-spline-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-series-marker--width","fullname":"plotOptions.series.marker.width","title":"width","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-marker--width","fullname":"plotOptions.spline.marker.width","title":"width","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-states-hover-marker--width","fullname":"plotOptions.treemap.states.hover.marker.width","title":"width","parent":"plotOptions-treemap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-states-hover-marker--width","fullname":"plotOptions.polygon.states.hover.marker.width","title":"width","parent":"plotOptions-polygon-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-marker--width","fullname":"plotOptions.scatter.marker.width","title":"width","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-states-hover-marker--width","fullname":"plotOptions.heatmap.states.hover.marker.width","title":"width","parent":"plotOptions-heatmap-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"xAxis-plotLines--width","fullname":"xAxis.plotLines.width","title":"width","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","description":"The width or thickness of the plot line.","demo":"2px wide line from X axis"},{"name":"plotOptions-funnel-states-hover-marker--width","fullname":"plotOptions.funnel.states.hover.marker.width","title":"width","parent":"plotOptions-funnel-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"series-states-hover-marker--width","fullname":"series.states.hover.marker.width","title":"width","parent":"series-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-line-marker--width","fullname":"plotOptions.line.marker.width","title":"width","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a height must also be set.","demo":"Fixed width and height","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge--wrap","fullname":"plotOptions.gauge.wrap","title":"wrap","parent":"plotOptions-gauge","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0","description":"When this option is true, the dial will wrap around the axes. For instance, in a full-range gauge going from 0 to 360, a value of 400 will point to 40. When wrap is false, the dial stops at 360.","seeAlso":"overshoot","deprecated":false},{"name":"series--wrap","fullname":"series.wrap","title":"wrap","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0","description":"When this option is true, the dial will wrap around the axes. For instance, in a full-range gauge going from 0 to 360, a value of 400 will point to 40. When wrap is false, the dial stops at 360.","seeAlso":"overshoot","deprecated":false},{"name":"plotOptions-solidgauge--wrap","fullname":"plotOptions.solidgauge.wrap","title":"wrap","parent":"plotOptions-solidgauge","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0","description":"When this option is true, the dial will wrap around the axes. For instance, in a full-range gauge going from 0 to 360, a value of 400 will point to 40. When wrap is false, the dial stops at 360.","seeAlso":"overshoot","deprecated":false},{"name":"series--wrap","fullname":"series.wrap","title":"wrap","parent":"series","isParent":false,"returnType":"Boolean","defaults":"true","since":"3.0","description":"When this option is true, the dial will wrap around the axes. For instance, in a full-range gauge going from 0 to 360, a value of 400 will point to 40. When wrap is false, the dial stops at 360.","seeAlso":"overshoot","deprecated":false},{"name":"xAxis-plotBands-label--x","fullname":"xAxis.plotBands.label.x","title":"x","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"Aligned 10px from the right edge"},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"5","description":"The x position of the data label relative to the data point.","demo":"Data labels inside the bar"},{"name":"xAxis-plotLines-label--x","fullname":"xAxis.plotLines.label.x","title":"x","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"Aligned 10px from the right edge"},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"yAxis-title--x","fullname":"yAxis.title.x","title":"x","parent":"yAxis-title","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.6","description":"Horizontal pixel offset of the title position.","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--x","fullname":"plotOptions.pyramid.dataLabels.x","title":"x","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-area-dataLabels--x","fullname":"plotOptions.area.dataLabels.x","title":"x","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-scatter-dataLabels--x","fullname":"plotOptions.scatter.dataLabels.x","title":"x","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"title--x","fullname":"title.x","title":"x","parent":"title","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The x position of the title relative to the alignment within chart.spacingLeft and chart.spacingRight.","demo":"Aligned to the plot area (x = 70px \n\t\t\t= margin left - spacing left)"},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"yAxis-plotLines-label--x","fullname":"yAxis.plotLines.label.x","title":"x","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"Aligned 10px from the right edge"},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"yAxis-plotBands-label--x","fullname":"yAxis.plotBands.label.x","title":"x","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","since":"2.1","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"Aligned 10px from the right edge"},{"name":"plotOptions-series-dataLabels--x","fullname":"plotOptions.series.dataLabels.x","title":"x","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-polygon-dataLabels--x","fullname":"plotOptions.polygon.dataLabels.x","title":"x","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-gauge-dataLabels--x","fullname":"plotOptions.gauge.dataLabels.x","title":"x","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"subtitle--x","fullname":"subtitle.x","title":"x","parent":"subtitle","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The x position of the subtitle relative to the alignment within chart.spacingLeft and chart.spacingRight.","demo":"Footnote at right of plot area"},{"name":"xAxis-labels--x","fullname":"xAxis.labels.x","title":"x","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the tick position on the axis.","demo":"Y axis labels placed on grid lines"},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"legend--x","fullname":"legend.x","title":"x","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The x offset of the legend relative to its horizontal alignment align within chart.spacingLeft and chart.spacingRight. Negative x moves it to the left, positive x moves it to the right. ","demo":"Aligned to the plot area","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-pie-dataLabels--x","fullname":"plotOptions.pie.dataLabels.x","title":"x","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-bar-dataLabels--x","fullname":"plotOptions.bar.dataLabels.x","title":"x","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"5","description":"The x position of the data label relative to the data point.","demo":"Data labels inside the bar"},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-treemap-dataLabels--x","fullname":"plotOptions.treemap.dataLabels.x","title":"x","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-line-dataLabels--x","fullname":"plotOptions.line.dataLabels.x","title":"x","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--x","fullname":"plotOptions.heatmap.dataLabels.x","title":"x","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"yAxis-stackLabels--x","fullname":"yAxis.stackLabels.x","title":"x","parent":"yAxis-stackLabels","isParent":false,"returnType":"Number","since":"2.1.5","description":"The x position offset of the label relative to the left of the stacked bar. The default value is calculated at runtime and depends on orientation and whether the stack is positive or negative.","demo":"Stack total labels with x offset"},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-spline-dataLabels--x","fullname":"plotOptions.spline.dataLabels.x","title":"x","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"xAxis-title--x","fullname":"xAxis.title.x","title":"x","parent":"xAxis-title","isParent":false,"returnType":"Number","defaults":"0","since":"4.1.6","description":"Horizontal pixel offset of the title position.","deprecated":false},{"name":"yAxis-labels--x","fullname":"yAxis.labels.x","title":"x","parent":"yAxis-labels","isParent":false,"returnType":"Number","description":"The x position offset of the label relative to the tick position on the axis. Defaults to -15 for left axis, 15 for right axis.","demo":"Y axis labels placed on grid lines","deprecated":false},{"name":"series-dataLabels--x","fullname":"series.dataLabels.x","title":"x","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-column-dataLabels--x","fullname":"plotOptions.column.dataLabels.x","title":"x","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-funnel-dataLabels--x","fullname":"plotOptions.funnel.dataLabels.x","title":"x","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--x","fullname":"plotOptions.solidgauge.dataLabels.x","title":"x","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--x","fullname":"plotOptions.areaspline.dataLabels.x","title":"x","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"exporting-buttons-contextButton--x","fullname":"exporting.buttons.contextButton.x","title":"x","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"-10","since":"2.0","description":"The horizontal position of the button relative to the align\r\n option.","demo":" ","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--x","fullname":"plotOptions.waterfall.dataLabels.x","title":"x","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"plotOptions-bubble-dataLabels--x","fullname":"plotOptions.bubble.dataLabels.x","title":"x","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","demo":"Vertical and positioned","deprecated":false},{"name":"series-data--x","fullname":"series.data.x","title":"x","parent":"series-data","isParent":false,"returnType":"Number","description":"The x value of the point. For datetime axes, the X value is the timestamp in milliseconds since 1970.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"xAxis","fullname":"xAxis","title":"xAxis","isParent":true,"description":"

The X axis or category axis. Normally this is the horizontal axis, though if the \r\n\tchart is inverted this is the vertical axis. In case of multiple axes, the xAxis\r\n\tnode is an array of configuration objects.

\r\n\t

See the Axis object for programmatic\r\n\taccess to the axis.

","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series--xAxis","fullname":"series.xAxis","title":"xAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"plotOptions-treemap-tooltip--xDateFormat","fullname":"plotOptions.treemap.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-treemap-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-funnel-tooltip--xDateFormat","fullname":"plotOptions.funnel.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-funnel-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-gauge-tooltip--xDateFormat","fullname":"plotOptions.gauge.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-gauge-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-errorbar-tooltip--xDateFormat","fullname":"plotOptions.errorbar.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-errorbar-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-solidgauge-tooltip--xDateFormat","fullname":"plotOptions.solidgauge.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-solidgauge-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-spline-tooltip--xDateFormat","fullname":"plotOptions.spline.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-series-tooltip--xDateFormat","fullname":"plotOptions.series.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-areasplinerange-tooltip--xDateFormat","fullname":"plotOptions.areasplinerange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-line-tooltip--xDateFormat","fullname":"plotOptions.line.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-heatmap-tooltip--xDateFormat","fullname":"plotOptions.heatmap.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-heatmap-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"tooltip--xDateFormat","fullname":"tooltip.xDateFormat","title":"xDateFormat","parent":"tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-arearange-tooltip--xDateFormat","fullname":"plotOptions.arearange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-bubble-tooltip--xDateFormat","fullname":"plotOptions.bubble.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-bubble-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-column-tooltip--xDateFormat","fullname":"plotOptions.column.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-pie-tooltip--xDateFormat","fullname":"plotOptions.pie.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-pie-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-polygon-tooltip--xDateFormat","fullname":"plotOptions.polygon.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-polygon-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-boxplot-tooltip--xDateFormat","fullname":"plotOptions.boxplot.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-boxplot-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-columnrange-tooltip--xDateFormat","fullname":"plotOptions.columnrange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-areaspline-tooltip--xDateFormat","fullname":"plotOptions.areaspline.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-area-tooltip--xDateFormat","fullname":"plotOptions.area.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-waterfall-tooltip--xDateFormat","fullname":"plotOptions.waterfall.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-waterfall-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-bar-tooltip--xDateFormat","fullname":"plotOptions.bar.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-bar-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-pyramid-tooltip--xDateFormat","fullname":"plotOptions.pyramid.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-pyramid-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"plotOptions-scatter-tooltip--xDateFormat","fullname":"plotOptions.scatter.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-scatter-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-tooltip--xDateFormat","fullname":"series.tooltip.xDateFormat","title":"xDateFormat","parent":"series-tooltip","isParent":false,"returnType":"String","description":"The format for the date in the tooltip header if the X axis is a datetime axis. The default is a best guess based on the smallest distance between points in the chart.","demo":"A different format"},{"name":"series-dataLabels--xHigh","fullname":"series.dataLabels.xHigh","title":"xHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--xHigh","fullname":"plotOptions.arearange.dataLabels.xHigh","title":"xHigh","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--xHigh","fullname":"plotOptions.areasplinerange.dataLabels.xHigh","title":"xHigh","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--xHigh","fullname":"series.dataLabels.xHigh","title":"xHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--xHigh","fullname":"series.dataLabels.xHigh","title":"xHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--xHigh","fullname":"plotOptions.columnrange.dataLabels.xHigh","title":"xHigh","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--xLow","fullname":"plotOptions.arearange.dataLabels.xLow","title":"xLow","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--xLow","fullname":"series.dataLabels.xLow","title":"xLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--xLow","fullname":"series.dataLabels.xLow","title":"xLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--xLow","fullname":"series.dataLabels.xLow","title":"xLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--xLow","fullname":"plotOptions.columnrange.dataLabels.xLow","title":"xLow","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--xLow","fullname":"plotOptions.areasplinerange.dataLabels.xLow","title":"xLow","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"2.3.0","description":"X offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands-label--y","fullname":"xAxis.plotBands.label.y","title":"y","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","since":"2.1","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"Label on x axis"},{"name":"xAxis-plotLines-label--y","fullname":"xAxis.plotLines.label.y","title":"y","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"Label below the plot line"},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"plotOptions-area-dataLabels--y","fullname":"plotOptions.area.dataLabels.y","title":"y","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"yAxis-title--y","fullname":"yAxis.title.y","title":"y","parent":"yAxis-title","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"Vertical pixel offset of the title position.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--y","fullname":"plotOptions.polygon.dataLabels.y","title":"y","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"subtitle--y","fullname":"subtitle.y","title":"y","parent":"subtitle","isParent":false,"returnType":"Number","defaults":" null","since":"2.0","description":"The y position of the subtitle relative to the alignment within chart.spacingTop and chart.spacingBottom. By default the subtitle is laid out below the title unless the title is floating.","demo":"Footnote at the bottom right of plot area","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"xAxis-title--y","fullname":"xAxis.title.y","title":"y","parent":"xAxis-title","isParent":false,"returnType":"Number","context":"","defaults":"","values":"","since":"","description":"Vertical pixel offset of the title position.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--y","fullname":"plotOptions.column.dataLabels.y","title":"y","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--y","fullname":"plotOptions.bubble.dataLabels.y","title":"y","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"xAxis-labels--y","fullname":"xAxis.labels.y","title":"y","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"null","description":"The y position offset of the label relative to the tick position on the axis. The default makes it adapt to the font size on bottom axis.","demo":"Y axis labels placed on grid lines","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"15","since":"2.3.0","description":"The y position offset of the label relative to the center of the gauge. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--y","fullname":"plotOptions.line.dataLabels.y","title":"y","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--y","fullname":"plotOptions.scatter.dataLabels.y","title":"y","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--y","fullname":"plotOptions.pie.dataLabels.y","title":"y","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"plotOptions-areaspline-dataLabels--y","fullname":"plotOptions.areaspline.dataLabels.y","title":"y","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"plotOptions-series-dataLabels--y","fullname":"plotOptions.series.dataLabels.y","title":"y","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"plotOptions-solidgauge-dataLabels--y","fullname":"plotOptions.solidgauge.dataLabels.y","title":"y","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"15","since":"2.3.0","description":"The y position offset of the label relative to the center of the gauge. ","demo":"","seeAlso":"","deprecated":false},{"name":"title--y","fullname":"title.y","title":"y","parent":"title","isParent":false,"returnType":"Number","since":"2.0","description":"The y position of the title relative to the alignment within chart.spacingTop and chart.spacingBottom. By default it depends on the font size.","demo":"Title inside the plot area","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"exporting-buttons-contextButton--y","fullname":"exporting.buttons.contextButton.y","title":"y","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The vertical offset of the button's position relative to its verticalAlign.\t\t\t .","demo":"Buttons at lower right","deprecated":false},{"name":"plotOptions-gauge-dataLabels--y","fullname":"plotOptions.gauge.dataLabels.y","title":"y","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"15","since":"2.3.0","description":"The y position offset of the label relative to the center of the gauge. ","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"yAxis-stackLabels--y","fullname":"yAxis.stackLabels.y","title":"y","parent":"yAxis-stackLabels","isParent":false,"returnType":"Number","since":"2.1.5","description":"The y position offset of the label relative to the tick position on the axis. The default value is calculated at runtime and depends on orientation and whether the stack is positive or negative.","demo":"Stack total labels with y offset"},{"name":"plotOptions-waterfall-dataLabels--y","fullname":"plotOptions.waterfall.dataLabels.y","title":"y","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--y","fullname":"plotOptions.funnel.dataLabels.y","title":"y","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands-label--y","fullname":"yAxis.plotBands.label.y","title":"y","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","since":"2.1","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"Label on x axis"},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"yAxis-plotLines-label--y","fullname":"yAxis.plotLines.label.y","title":"y","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","since":"2.1","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"Label below the plot line"},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"yAxis-labels--y","fullname":"yAxis.labels.y","title":"y","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"3","description":"The y position offset of the label relative to the tick position on the axis.","demo":"Y axis labels placed on grid lines"},{"name":"plotOptions-treemap-dataLabels--y","fullname":"plotOptions.treemap.dataLabels.y","title":"y","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--y","fullname":"plotOptions.pyramid.dataLabels.y","title":"y","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"legend--y","fullname":"legend.y","title":"y","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The vertical offset of the legend relative to it's vertical alignment verticalAlign within chart.spacingTop and chart.spacingBottom. Negative y moves it up, positive y moves it down.","demo":"Legend 100px from the top of the chart"},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--y","fullname":"plotOptions.heatmap.dataLabels.y","title":"y","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"navigation-buttonOptions--y","fullname":"navigation.buttonOptions.y","title":"y","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"0","since":"2.0","description":"The vertical offset of the button's position relative to its verticalAlign.\t\t\t .","demo":"Buttons at lower right","deprecated":false},{"name":"plotOptions-spline-dataLabels--y","fullname":"plotOptions.spline.dataLabels.y","title":"y","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-data--y","fullname":"series.data.y","title":"y","parent":"series-data","isParent":false,"returnType":"Number","description":"The y value of the point."},{"name":"plotOptions-bar-dataLabels--y","fullname":"plotOptions.bar.dataLabels.y","title":"y","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"","description":"The y position offset of the label relative to the point. ","demo":"Vertical and positioned","seeAlso":"","deprecated":false},{"name":"series-dataLabels--y","fullname":"series.dataLabels.y","title":"y","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"15","since":"2.3.0","description":"The y position offset of the label relative to the center of the gauge. ","demo":"","seeAlso":"","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"yAxis","fullname":"yAxis","title":"yAxis","isParent":true,"description":"

The Y axis or value axis. Normally this is the vertical axis, though if the \r\n\tchart is inverted this is the horizontal axis. In case of multiple axes, the yAxis\r\n\tnode is an array of configuration objects.

\r\n\t

See the Axis object for programmatic\r\n\taccess to the axis.

","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"series--yAxis","fullname":"series.yAxis","title":"yAxis","parent":"series","isParent":false,"returnType":"Number|String","defaults":"0","description":"When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.","demo":"Apply the column series to the secondary Y axis","deprecated":false},{"name":"plotOptions-arearange-dataLabels--yHigh","fullname":"plotOptions.arearange.dataLabels.yHigh","title":"yHigh","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--yHigh","fullname":"plotOptions.columnrange.dataLabels.yHigh","title":"yHigh","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--yHigh","fullname":"plotOptions.areasplinerange.dataLabels.yHigh","title":"yHigh","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yHigh","fullname":"series.dataLabels.yHigh","title":"yHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yHigh","fullname":"series.dataLabels.yHigh","title":"yHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yHigh","fullname":"series.dataLabels.yHigh","title":"yHigh","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"2.3.0","description":"Y offset of the higher data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--yLow","fullname":"plotOptions.arearange.dataLabels.yLow","title":"yLow","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--yLow","fullname":"plotOptions.columnrange.dataLabels.yLow","title":"yLow","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--yLow","fullname":"plotOptions.areasplinerange.dataLabels.yLow","title":"yLow","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yLow","fullname":"series.dataLabels.yLow","title":"yLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yLow","fullname":"series.dataLabels.yLow","title":"yLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-dataLabels--yLow","fullname":"series.dataLabels.yLow","title":"yLow","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"2.3.0","description":"Y offset of the lower data labels relative to the point value.","demo":"Data labels on range series","seeAlso":"","deprecated":false},{"name":"series-data--z","fullname":"series.data.z","title":"z","parent":"series-data","isParent":false,"returnType":"Number","description":"The size value for each bubble. The bubbles' diameters are computed based on the z, and controlled by series options like minSize, maxSize, sizeBy, zMin and zMax."},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-treemap-dataLabels--zIndex","fullname":"plotOptions.treemap.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-treemap-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-waterfall-dataLabels--zIndex","fullname":"plotOptions.waterfall.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-waterfall-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair--zIndex","fullname":"xAxis.crosshair.zIndex","title":"zIndex","parent":"xAxis-crosshair","isParent":false,"returnType":"Number","context":"","defaults":"2","values":"","since":"4.1","description":"The Z index of the crosshair. Higher Z indices allow drawing the crosshair on top of the series or behind the grid lines.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--zIndex","fullname":"plotOptions.arearange.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataLabels--zIndex","fullname":"plotOptions.scatter.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--zIndex","fullname":"plotOptions.area.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--zIndex","fullname":"plotOptions.polygon.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pyramid-dataLabels--zIndex","fullname":"plotOptions.pyramid.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-pyramid-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"plotOptions-gauge-dataLabels--zIndex","fullname":"plotOptions.gauge.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-gauge-dataLabels","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"2.1.5","description":"The Z index of the data labels. A value of 2 display them behind the dial.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble-dataLabels--zIndex","fullname":"plotOptions.bubble.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-bubble-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--zIndex","fullname":"plotOptions.columnrange.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-labels--zIndex","fullname":"yAxis.labels.zIndex","title":"zIndex","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"7","values":"","since":"","description":"The Z index for the axis labels.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--zIndex","fullname":"plotOptions.series.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--zIndex","fullname":"plotOptions.areasplinerange.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"2.1.5","description":"The Z index of the data labels. A value of 2 display them behind the dial.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-funnel-dataLabels--zIndex","fullname":"plotOptions.funnel.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-funnel-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines--zIndex","fullname":"yAxis.plotLines.zIndex","title":"zIndex","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","since":"1.2","description":"The z index of the plot line within the chart.","demo":"Behind plot lines by default,\n\t\t\tabove plot lines,\n\t\t\tabove plot lines and series."},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--zIndex","fullname":"plotOptions.column.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataLabels--zIndex","fullname":"plotOptions.spline.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"xAxis-plotLines--zIndex","fullname":"xAxis.plotLines.zIndex","title":"zIndex","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","since":"1.2","description":"The z index of the plot line within the chart.","demo":"Behind plot lines by default,\n\t\t\tabove plot lines,\n\t\t\tabove plot lines and series."},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--zIndex","fullname":"plotOptions.line.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands--zIndex","fullname":"xAxis.plotBands.zIndex","title":"zIndex","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","since":"1.2","description":"The z index of the plot band within the chart, relative to other elements. Using the same z index as another element may give unpredictable results, as the last rendered element will be on top. Values from 0 to 20 make sense.","demo":"Behind plot lines by default,\r\n\t\t\tabove plot lines,\r\n\t\t\tabove plot lines and series.","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-pie-dataLabels--zIndex","fullname":"plotOptions.pie.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-pie-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--zIndex","fullname":"yAxis.plotBands.zIndex","title":"zIndex","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","since":"1.2","description":"The z index of the plot band within the chart, relative to other elements. Using the same z index as another element may give unpredictable results, as the last rendered element will be on top. Values from 0 to 20 make sense.","demo":"Behind plot lines by default,\r\n\t\t\tabove plot lines,\r\n\t\t\tabove plot lines and series.","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"2.1.5","description":"The Z index of the data labels. A value of 2 display them behind the dial.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-heatmap-dataLabels--zIndex","fullname":"plotOptions.heatmap.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-heatmap-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-solidgauge-dataLabels--zIndex","fullname":"plotOptions.solidgauge.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-solidgauge-dataLabels","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"2.1.5","description":"The Z index of the data labels. A value of 2 display them behind the dial.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-crosshair--zIndex","fullname":"yAxis.crosshair.zIndex","title":"zIndex","parent":"yAxis-crosshair","isParent":false,"returnType":"Number","context":"","defaults":"2","values":"","since":"4.1","description":"The Z index of the crosshair. Higher Z indices allow drawing the crosshair on top of the series or behind the grid lines.","demo":"","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"series--zIndex","fullname":"series.zIndex","title":"zIndex","parent":"series","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"With no z index, the series defined last are on top,\r\n\t\t\twith a z index, the series with the highest z index is on top.","seeAlso":"","deprecated":false},{"name":"series-dataLabels--zIndex","fullname":"series.dataLabels.zIndex","title":"zIndex","parent":"series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bar-dataLabels--zIndex","fullname":"plotOptions.bar.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-bar-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels--zIndex","fullname":"xAxis.labels.zIndex","title":"zIndex","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"7","values":"","since":"","description":"The Z index for the axis labels.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--zIndex","fullname":"plotOptions.areaspline.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"2.3.5","description":"The Z index of the data labels. The default Z index puts it above the series. Use a Z index of 2 to display it behind the series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--zMax","fullname":"plotOptions.bubble.zMax","title":"zMax","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"null","since":"4.0.3","description":"The minimum for the Z value range. Defaults to the highest Z value in the data.","demo":"Z has a possible range of 0-100","seeAlso":"zMax","deprecated":false},{"name":"series--zMax","fullname":"series.zMax","title":"zMax","parent":"series","isParent":false,"returnType":"Number","defaults":"null","since":"4.0.3","description":"The minimum for the Z value range. Defaults to the highest Z value in the data.","demo":"Z has a possible range of 0-100","seeAlso":"zMax","deprecated":false},{"name":"series--zMin","fullname":"series.zMin","title":"zMin","parent":"series","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.3","description":"The minimum for the Z value range. Defaults to the lowest Z value in the data.","demo":"Z has a possible range of 0-100","seeAlso":"zMax","deprecated":false},{"name":"plotOptions-bubble--zMin","fullname":"plotOptions.bubble.zMin","title":"zMin","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"null","values":"","since":"4.0.3","description":"The minimum for the Z value range. Defaults to the lowest Z value in the data.","demo":"Z has a possible range of 0-100","seeAlso":"zMax","deprecated":false},{"name":"series--zThreshold","fullname":"series.zThreshold","title":"zThreshold","parent":"series","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0","description":"When displayNegative is false, bubbles with lower Z values are skipped. When displayNegative is true and a negativeColor is given, points with lower Z is colored.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"plotOptions-bubble--zThreshold","fullname":"plotOptions.bubble.zThreshold","title":"zThreshold","parent":"plotOptions-bubble","isParent":false,"returnType":"Number","defaults":"0","values":"","since":"3.0","description":"When displayNegative is false, bubbles with lower Z values are skipped. When displayNegative is true and a negativeColor is given, points with lower Z is colored.","demo":"Negative bubbles","seeAlso":"","deprecated":false},{"name":"plotOptions-bar--zoneAxis","fullname":"plotOptions.bar.zoneAxis","title":"zoneAxis","parent":"plotOptions-bar","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-scatter--zoneAxis","fullname":"plotOptions.scatter.zoneAxis","title":"zoneAxis","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-areaspline--zoneAxis","fullname":"plotOptions.areaspline.zoneAxis","title":"zoneAxis","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-series--zoneAxis","fullname":"plotOptions.series.zoneAxis","title":"zoneAxis","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-treemap--zoneAxis","fullname":"plotOptions.treemap.zoneAxis","title":"zoneAxis","parent":"plotOptions-treemap","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-columnrange--zoneAxis","fullname":"plotOptions.columnrange.zoneAxis","title":"zoneAxis","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-pie--zoneAxis","fullname":"plotOptions.pie.zoneAxis","title":"zoneAxis","parent":"plotOptions-pie","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-solidgauge--zoneAxis","fullname":"plotOptions.solidgauge.zoneAxis","title":"zoneAxis","parent":"plotOptions-solidgauge","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-polygon--zoneAxis","fullname":"plotOptions.polygon.zoneAxis","title":"zoneAxis","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-funnel--zoneAxis","fullname":"plotOptions.funnel.zoneAxis","title":"zoneAxis","parent":"plotOptions-funnel","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-waterfall--zoneAxis","fullname":"plotOptions.waterfall.zoneAxis","title":"zoneAxis","parent":"plotOptions-waterfall","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-errorbar--zoneAxis","fullname":"plotOptions.errorbar.zoneAxis","title":"zoneAxis","parent":"plotOptions-errorbar","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-arearange--zoneAxis","fullname":"plotOptions.arearange.zoneAxis","title":"zoneAxis","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-gauge--zoneAxis","fullname":"plotOptions.gauge.zoneAxis","title":"zoneAxis","parent":"plotOptions-gauge","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-bubble--zoneAxis","fullname":"plotOptions.bubble.zoneAxis","title":"zoneAxis","parent":"plotOptions-bubble","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-area--zoneAxis","fullname":"plotOptions.area.zoneAxis","title":"zoneAxis","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-areasplinerange--zoneAxis","fullname":"plotOptions.areasplinerange.zoneAxis","title":"zoneAxis","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-heatmap--zoneAxis","fullname":"plotOptions.heatmap.zoneAxis","title":"zoneAxis","parent":"plotOptions-heatmap","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-boxplot--zoneAxis","fullname":"plotOptions.boxplot.zoneAxis","title":"zoneAxis","parent":"plotOptions-boxplot","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-column--zoneAxis","fullname":"plotOptions.column.zoneAxis","title":"zoneAxis","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-pyramid--zoneAxis","fullname":"plotOptions.pyramid.zoneAxis","title":"zoneAxis","parent":"plotOptions-pyramid","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series--zoneAxis","fullname":"series.zoneAxis","title":"zoneAxis","parent":"series","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-line--zoneAxis","fullname":"plotOptions.line.zoneAxis","title":"zoneAxis","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"plotOptions-spline--zoneAxis","fullname":"plotOptions.spline.zoneAxis","title":"zoneAxis","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"y","since":"4.1.0","description":"Defines the Axis on which the zones are applied.","demo":"Zones on the X-Axis","seeAlso":"zones","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-solidgauge-zones","fullname":"plotOptions.solidgauge.zones","title":"zones","parent":"plotOptions-solidgauge","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-arearange-zones","fullname":"plotOptions.arearange.zones","title":"zones","parent":"plotOptions-arearange","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-spline-zones","fullname":"plotOptions.spline.zones","title":"zones","parent":"plotOptions-spline","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-scatter-zones","fullname":"plotOptions.scatter.zones","title":"zones","parent":"plotOptions-scatter","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-column-zones","fullname":"plotOptions.column.zones","title":"zones","parent":"plotOptions-column","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-funnel-zones","fullname":"plotOptions.funnel.zones","title":"zones","parent":"plotOptions-funnel","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-waterfall-zones","fullname":"plotOptions.waterfall.zones","title":"zones","parent":"plotOptions-waterfall","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-heatmap-zones","fullname":"plotOptions.heatmap.zones","title":"zones","parent":"plotOptions-heatmap","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-bar-zones","fullname":"plotOptions.bar.zones","title":"zones","parent":"plotOptions-bar","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-pyramid-zones","fullname":"plotOptions.pyramid.zones","title":"zones","parent":"plotOptions-pyramid","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-bubble-zones","fullname":"plotOptions.bubble.zones","title":"zones","parent":"plotOptions-bubble","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-areaspline-zones","fullname":"plotOptions.areaspline.zones","title":"zones","parent":"plotOptions-areaspline","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-area-zones","fullname":"plotOptions.area.zones","title":"zones","parent":"plotOptions-area","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-pie-zones","fullname":"plotOptions.pie.zones","title":"zones","parent":"plotOptions-pie","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-errorbar-zones","fullname":"plotOptions.errorbar.zones","title":"zones","parent":"plotOptions-errorbar","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-line-zones","fullname":"plotOptions.line.zones","title":"zones","parent":"plotOptions-line","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-gauge-zones","fullname":"plotOptions.gauge.zones","title":"zones","parent":"plotOptions-gauge","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-areasplinerange-zones","fullname":"plotOptions.areasplinerange.zones","title":"zones","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-boxplot-zones","fullname":"plotOptions.boxplot.zones","title":"zones","parent":"plotOptions-boxplot","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-polygon-zones","fullname":"plotOptions.polygon.zones","title":"zones","parent":"plotOptions-polygon","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-series-zones","fullname":"plotOptions.series.zones","title":"zones","parent":"plotOptions-series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-treemap-zones","fullname":"plotOptions.treemap.zones","title":"zones","parent":"plotOptions-treemap","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"series-zones","fullname":"series.zones","title":"zones","parent":"series","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"plotOptions-columnrange-zones","fullname":"plotOptions.columnrange.zones","title":"zones","parent":"plotOptions-columnrange","isParent":true,"returnType":"Array","since":"4.1.0","description":"An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.","demo":"Color zones","seeAlso":"zoneAxis","deprecated":false},{"name":"chart--zoomType","fullname":"chart.zoomType","title":"zoomType","parent":"chart","isParent":false,"returnType":"String","values":"[null, \"x\", \"y\", \"xy\"]","description":"Decides in what dimensions the user can zoom by dragging the mouse. Can be one of x, y or xy.","demo":"None by default,\r\n\t\t\tx,\r\n\t\t\ty,\r\n\t\t\txy","seeAlso":"panKey","deprecated":false}]; diff --git a/js/lib/highcharts/api/js/jquery-1.11.3.min.js b/js/lib/highcharts/api/js/jquery-1.11.3.min.js new file mode 100755 index 0000000..0f60b7b --- /dev/null +++ b/js/lib/highcharts/api/js/jquery-1.11.3.min.js @@ -0,0 +1,5 @@ +/*! jQuery v1.11.3 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.3",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b="length"in a&&a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);m.find=s,m.expr=s.selectors,m.expr[":"]=m.expr.pseudos,m.unique=s.uniqueSort,m.text=s.getText,m.isXMLDoc=s.isXML,m.contains=s.contains;var t=m.expr.match.needsContext,u=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,v=/^.[^:#\[\.,]*$/;function w(a,b,c){if(m.isFunction(b))return m.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return m.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(v.test(b))return m.filter(b,a,c);b=m.filter(b,a)}return m.grep(a,function(a){return m.inArray(a,b)>=0!==c})}m.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?m.find.matchesSelector(d,a)?[d]:[]:m.find.matches(a,m.grep(b,function(a){return 1===a.nodeType}))},m.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(m(a).filter(function(){for(b=0;e>b;b++)if(m.contains(d[b],this))return!0}));for(b=0;e>b;b++)m.find(a,d[b],c);return c=this.pushStack(e>1?m.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(w(this,a||[],!1))},not:function(a){return this.pushStack(w(this,a||[],!0))},is:function(a){return!!w(this,"string"==typeof a&&t.test(a)?m(a):a||[],!1).length}});var x,y=a.document,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=m.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||x).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof m?b[0]:b,m.merge(this,m.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:y,!0)),u.test(c[1])&&m.isPlainObject(b))for(c in b)m.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=y.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return x.find(a);this.length=1,this[0]=d}return this.context=y,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):m.isFunction(a)?"undefined"!=typeof x.ready?x.ready(a):a(m):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),m.makeArray(a,this))};A.prototype=m.fn,x=m(y);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};m.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!m(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),m.fn.extend({has:function(a){var b,c=m(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(m.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=t.test(a)||"string"!=typeof a?m(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&m.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?m.unique(f):f)},index:function(a){return a?"string"==typeof a?m.inArray(this[0],m(a)):m.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(m.unique(m.merge(this.get(),m(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}m.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return m.dir(a,"parentNode")},parentsUntil:function(a,b,c){return m.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return m.dir(a,"nextSibling")},prevAll:function(a){return m.dir(a,"previousSibling")},nextUntil:function(a,b,c){return m.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return m.dir(a,"previousSibling",c)},siblings:function(a){return m.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return m.sibling(a.firstChild)},contents:function(a){return m.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:m.merge([],a.childNodes)}},function(a,b){m.fn[a]=function(c,d){var e=m.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=m.filter(d,e)),this.length>1&&(C[a]||(e=m.unique(e)),B.test(a)&&(e=e.reverse())),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return m.each(a.match(E)||[],function(a,c){b[c]=!0}),b}m.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):m.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){m.each(b,function(b,c){var d=m.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&m.each(arguments,function(a,c){var d;while((d=m.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?m.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},m.extend({Deferred:function(a){var b=[["resolve","done",m.Callbacks("once memory"),"resolved"],["reject","fail",m.Callbacks("once memory"),"rejected"],["notify","progress",m.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return m.Deferred(function(c){m.each(b,function(b,f){var g=m.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&m.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?m.extend(a,d):d}},e={};return d.pipe=d.then,m.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&m.isFunction(a.promise)?e:0,g=1===f?a:m.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&m.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;m.fn.ready=function(a){return m.ready.promise().done(a),this},m.extend({isReady:!1,readyWait:1,holdReady:function(a){a?m.readyWait++:m.ready(!0)},ready:function(a){if(a===!0?!--m.readyWait:!m.isReady){if(!y.body)return setTimeout(m.ready);m.isReady=!0,a!==!0&&--m.readyWait>0||(H.resolveWith(y,[m]),m.fn.triggerHandler&&(m(y).triggerHandler("ready"),m(y).off("ready")))}}});function I(){y.addEventListener?(y.removeEventListener("DOMContentLoaded",J,!1),a.removeEventListener("load",J,!1)):(y.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(y.addEventListener||"load"===event.type||"complete"===y.readyState)&&(I(),m.ready())}m.ready.promise=function(b){if(!H)if(H=m.Deferred(),"complete"===y.readyState)setTimeout(m.ready);else if(y.addEventListener)y.addEventListener("DOMContentLoaded",J,!1),a.addEventListener("load",J,!1);else{y.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&y.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!m.isReady){try{c.doScroll("left")}catch(a){return setTimeout(e,50)}I(),m.ready()}}()}return H.promise(b)};var K="undefined",L;for(L in m(k))break;k.ownLast="0"!==L,k.inlineBlockNeedsLayout=!1,m(function(){var a,b,c,d;c=y.getElementsByTagName("body")[0],c&&c.style&&(b=y.createElement("div"),d=y.createElement("div"),d.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(d).appendChild(b),typeof b.style.zoom!==K&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",k.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(d))}),function(){var a=y.createElement("div");if(null==k.deleteExpando){k.deleteExpando=!0;try{delete a.test}catch(b){k.deleteExpando=!1}}a=null}(),m.acceptData=function(a){var b=m.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b};var M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:M.test(c)?m.parseJSON(c):c}catch(e){}m.data(a,b,c)}else c=void 0}return c}function P(a){var b;for(b in a)if(("data"!==b||!m.isEmptyObject(a[b]))&&"toJSON"!==b)return!1; + +return!0}function Q(a,b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||m.guid++:h),j[k]||(j[k]=i?{}:{toJSON:m.noop}),("object"==typeof b||"function"==typeof b)&&(e?j[k]=m.extend(j[k],b):j[k].data=m.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[m.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[m.camelCase(b)])):f=g,f}}function R(a,b,c){if(m.acceptData(a)){var d,e,f=a.nodeType,g=f?m.cache:a,h=f?a[m.expando]:m.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){m.isArray(b)?b=b.concat(m.map(b,m.camelCase)):b in d?b=[b]:(b=m.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!m.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?m.cleanData([a],!0):k.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}m.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?m.cache[a[m.expando]]:a[m.expando],!!a&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),m.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=m.data(f),1===f.nodeType&&!m._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=m.camelCase(d.slice(5)),O(f,d,e[d])));m._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){m.data(this,a)}):arguments.length>1?this.each(function(){m.data(this,a,b)}):f?O(f,a,m.data(f,a)):void 0},removeData:function(a){return this.each(function(){m.removeData(this,a)})}}),m.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=m._data(a,b),c&&(!d||m.isArray(c)?d=m._data(a,b,m.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=m.queue(a,b),d=c.length,e=c.shift(),f=m._queueHooks(a,b),g=function(){m.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return m._data(a,c)||m._data(a,c,{empty:m.Callbacks("once memory").add(function(){m._removeData(a,b+"queue"),m._removeData(a,c)})})}}),m.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},W=/^(?:checkbox|radio)$/i;!function(){var a=y.createElement("input"),b=y.createElement("div"),c=y.createDocumentFragment();if(b.innerHTML="
a",k.leadingWhitespace=3===b.firstChild.nodeType,k.tbody=!b.getElementsByTagName("tbody").length,k.htmlSerialize=!!b.getElementsByTagName("link").length,k.html5Clone="<:nav>"!==y.createElement("nav").cloneNode(!0).outerHTML,a.type="checkbox",a.checked=!0,c.appendChild(a),k.appendChecked=a.checked,b.innerHTML="",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,c.appendChild(b),b.innerHTML="",k.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,k.noCloneEvent=!0,b.attachEvent&&(b.attachEvent("onclick",function(){k.noCloneEvent=!1}),b.cloneNode(!0).click()),null==k.deleteExpando){k.deleteExpando=!0;try{delete b.test}catch(d){k.deleteExpando=!1}}}(),function(){var b,c,d=y.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(k[b+"Bubbles"]=c in a)||(d.setAttribute(c,"t"),k[b+"Bubbles"]=d.attributes[c].expando===!1);d=null}();var X=/^(?:input|select|textarea)$/i,Y=/^key/,Z=/^(?:mouse|pointer|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=/^([^.]*)(?:\.(.+)|)$/;function aa(){return!0}function ba(){return!1}function ca(){try{return y.activeElement}catch(a){}}m.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=m.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof m===K||a&&m.event.triggered===a.type?void 0:m.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(E)||[""],h=b.length;while(h--)f=_.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=m.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=m.event.special[o]||{},l=m.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&m.expr.match.needsContext.test(e),namespace:p.join(".")},i),(n=g[o])||(n=g[o]=[],n.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?n.splice(n.delegateCount++,0,l):n.push(l),m.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,n,o,p,q,r=m.hasData(a)&&m._data(a);if(r&&(k=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=_.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=m.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,n=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=n.length;while(f--)g=n[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(n.splice(f,1),g.selector&&n.delegateCount--,l.remove&&l.remove.call(a,g));i&&!n.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||m.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)m.event.remove(a,o+b[j],c,d,!0);m.isEmptyObject(k)&&(delete r.handle,m._removeData(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,n,o=[d||y],p=j.call(b,"type")?b.type:b,q=j.call(b,"namespace")?b.namespace.split("."):[];if(h=l=d=d||y,3!==d.nodeType&&8!==d.nodeType&&!$.test(p+m.event.triggered)&&(p.indexOf(".")>=0&&(q=p.split("."),p=q.shift(),q.sort()),g=p.indexOf(":")<0&&"on"+p,b=b[m.expando]?b:new m.Event(p,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:m.makeArray(c,[b]),k=m.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!m.isWindow(d)){for(i=k.delegateType||p,$.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||y)&&o.push(l.defaultView||l.parentWindow||a)}n=0;while((h=o[n++])&&!b.isPropagationStopped())b.type=n>1?i:k.bindType||p,f=(m._data(h,"events")||{})[b.type]&&m._data(h,"handle"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&m.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&m.acceptData(d)&&g&&d[p]&&!m.isWindow(d)){l=d[g],l&&(d[g]=null),m.event.triggered=p;try{d[p]()}catch(r){}m.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=m.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(m._data(this,"events")||{})[a.type]||[],k=m.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=m.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((m.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+" ",void 0===e[c]&&(e[c]=d.needsContext?m(c,this).index(i)>=0:m.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]","i"),ha=/^\s+/,ia=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,ja=/<([\w:]+)/,ka=/\s*$/g,ra={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:k.htmlSerialize?[0,"",""]:[1,"X
","
"]},sa=da(y),ta=sa.appendChild(y.createElement("div"));ra.optgroup=ra.option,ra.tbody=ra.tfoot=ra.colgroup=ra.caption=ra.thead,ra.th=ra.td;function ua(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==K?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==K?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||m.nodeName(d,b)?f.push(d):m.merge(f,ua(d,b));return void 0===b||b&&m.nodeName(a,b)?m.merge([a],f):f}function va(a){W.test(a.type)&&(a.defaultChecked=a.checked)}function wa(a,b){return m.nodeName(a,"table")&&m.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function xa(a){return a.type=(null!==m.find.attr(a,"type"))+"/"+a.type,a}function ya(a){var b=pa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function za(a,b){for(var c,d=0;null!=(c=a[d]);d++)m._data(c,"globalEval",!b||m._data(b[d],"globalEval"))}function Aa(a,b){if(1===b.nodeType&&m.hasData(a)){var c,d,e,f=m._data(a),g=m._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)m.event.add(b,c,h[c][d])}g.data&&(g.data=m.extend({},g.data))}}function Ba(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!k.noCloneEvent&&b[m.expando]){e=m._data(b);for(d in e.events)m.removeEvent(b,d,e.handle);b.removeAttribute(m.expando)}"script"===c&&b.text!==a.text?(xa(b).text=a.text,ya(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),k.html5Clone&&a.innerHTML&&!m.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&W.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}}m.extend({clone:function(a,b,c){var d,e,f,g,h,i=m.contains(a.ownerDocument,a);if(k.html5Clone||m.isXMLDoc(a)||!ga.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(ta.innerHTML=a.outerHTML,ta.removeChild(f=ta.firstChild)),!(k.noCloneEvent&&k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||m.isXMLDoc(a)))for(d=ua(f),h=ua(a),g=0;null!=(e=h[g]);++g)d[g]&&Ba(e,d[g]);if(b)if(c)for(h=h||ua(a),d=d||ua(f),g=0;null!=(e=h[g]);g++)Aa(e,d[g]);else Aa(a,f);return d=ua(f,"script"),d.length>0&&za(d,!i&&ua(a,"script")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,l,n=a.length,o=da(b),p=[],q=0;n>q;q++)if(f=a[q],f||0===f)if("object"===m.type(f))m.merge(p,f.nodeType?[f]:f);else if(la.test(f)){h=h||o.appendChild(b.createElement("div")),i=(ja.exec(f)||["",""])[1].toLowerCase(),l=ra[i]||ra._default,h.innerHTML=l[1]+f.replace(ia,"<$1>")+l[2],e=l[0];while(e--)h=h.lastChild;if(!k.leadingWhitespace&&ha.test(f)&&p.push(b.createTextNode(ha.exec(f)[0])),!k.tbody){f="table"!==i||ka.test(f)?""!==l[1]||ka.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)m.nodeName(j=f.childNodes[e],"tbody")&&!j.childNodes.length&&f.removeChild(j)}m.merge(p,h.childNodes),h.textContent="";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),k.appendChecked||m.grep(ua(p,"input"),va),q=0;while(f=p[q++])if((!d||-1===m.inArray(f,d))&&(g=m.contains(f.ownerDocument,f),h=ua(o.appendChild(f),"script"),g&&za(h),c)){e=0;while(f=h[e++])oa.test(f.type||"")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=m.expando,j=m.cache,l=k.deleteExpando,n=m.event.special;null!=(d=a[h]);h++)if((b||m.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)n[e]?m.event.remove(d,e):m.removeEvent(d,e,g.handle);j[f]&&(delete j[f],l?delete d[i]:typeof d.removeAttribute!==K?d.removeAttribute(i):d[i]=null,c.push(f))}}}),m.fn.extend({text:function(a){return V(this,function(a){return void 0===a?m.text(this):this.empty().append((this[0]&&this[0].ownerDocument||y).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=wa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?m.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||m.cleanData(ua(c)),c.parentNode&&(b&&m.contains(c.ownerDocument,c)&&za(ua(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&m.cleanData(ua(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&m.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return m.clone(this,a,b)})},html:function(a){return V(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(fa,""):void 0;if(!("string"!=typeof a||ma.test(a)||!k.htmlSerialize&&ga.test(a)||!k.leadingWhitespace&&ha.test(a)||ra[(ja.exec(a)||["",""])[1].toLowerCase()])){a=a.replace(ia,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(m.cleanData(ua(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,m.cleanData(ua(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,n=this,o=l-1,p=a[0],q=m.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&na.test(p))return this.each(function(c){var d=n.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(i=m.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=m.map(ua(i,"script"),xa),f=g.length;l>j;j++)d=i,j!==o&&(d=m.clone(d,!0,!0),f&&m.merge(g,ua(d,"script"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,m.map(g,ya),j=0;f>j;j++)d=g[j],oa.test(d.type||"")&&!m._data(d,"globalEval")&&m.contains(h,d)&&(d.src?m._evalUrl&&m._evalUrl(d.src):m.globalEval((d.text||d.textContent||d.innerHTML||"").replace(qa,"")));i=c=null}return this}}),m.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){m.fn[a]=function(a){for(var c,d=0,e=[],g=m(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),m(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Ca,Da={};function Ea(b,c){var d,e=m(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:m.css(e[0],"display");return e.detach(),f}function Fa(a){var b=y,c=Da[a];return c||(c=Ea(a,b),"none"!==c&&c||(Ca=(Ca||m("