offline.highstock.object = [{"name":"Axis","fullname":"Axis","returnType":"","description":"<p>A chart can have from 0 axes to multiples. In a normal, single series cartesian chart, there is one X axis and one Y axis.</p><p>The X axis or axes are referenced by <code>chart.xAxis</code>, which is an array of Axis objects. If there is only one axis, it can be referenced through <code>chart.xAxis[0]</code>, and multiple axes have increasing indices. The same pattern goes for Y axes.</p><p>If you need to get the axes from a series object, use the <code>series.xAxis</code> and <code>series.yAxis</code> properties. These are not arrays, as one series can only be associated to one X and one Y axis.</p><p>A third way to reference the axis programmatically is by id. Add an id in the axis configuration options, and get the axis by <code>chart.get(id)</code>.</p> <p>Configuration options for the axes are given in <a class=\"internal\" href=\"#xAxis\">options.xAxis</a> and <a class=\"internal\" href=\"#yAxis\">options.yAxis</a>.</p>","title":"Axis","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Axis--setCompare","fullname":"Axis.setCompare","type":"method","returnType":"","description":"Set the <a href=\"#plotOptions.series.compare\">compare</a> mode on all series belonging to an Y axis after render time. ","title":"setCompare","isParent":false,"parent":"Axis","params":"(String compare, [Boolean redraw])","paramsDescription":"compare: String<br>\r\nThe compare mode, can be one of <code>null</code>, <code>\"value\"</code> or <code>\"percent\"</code>.||\r\n\r\nredraw: Boolean<br>\r\nWhether to redraw the chart or wait for a later call to Chart.redraw().","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/axis-setcompare/\" target=\"_blank\">Set compare</a>","since":"1.3","deprecated":false},{"name":"Axis--setExtremes","fullname":"Axis.setExtremes","type":"method","returnType":"","description":"Set the minimum and maximum of the axes after render time. If the <code>startOnTick</code> and <code>endOnTick</code> 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, <code>setExtremes</code> will not allow a range lower than the <a href=\"#xAxis.minRange\">minRange</a> 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<br>The new minimum value||max: Number<br>The new maximum value||redraw: Boolean<br>Defaults to <code>true</code>. Whether to redraw the chart or wait for an explicit call to <code>chart.redraw()</code>.||animation: Mixed<br>Defaults to true. When true, the resize will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/axis-setextremes/\" target=\"_blank\">Set extremes from button</a>","since":"","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<br>\r\nA value in terms of axis units.||\r\n\r\npaneCoordinates: Boolean<br>\r\nWhether to return the pixel coordinate relative to the chart or just the axis/pane itself.","demo":"","since":"1.3","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<br>\r\nA pixel position along the axis.||\r\n\r\npaneCoordinates: Boolean<br>\r\nWhether the input pixel position is relative to the chart or just the axis/pane itself.","demo":"","since":"1.3","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<br>\r\nThe new options that will be merged in with existing options on the axis.||\r\n\r\nredraw: Boolean<br>\r\nDefaults to <code>true</code>. Whether to redraw the chart after the new options are set. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/axis-update/\" target=\"_blank\">Axis update demo</a>","since":"3.0","deprecated":false},{"name":"Chart","fullname":"Chart","returnType":"","description":"<p>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 <code>Highcharts.Chart()</code> constructor:</p><pre>var chart1 = new Highcharts.Chart(options);</pre>","title":"Chart","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","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. In a StockChart with the navigator enabled, the base series can't be added dynamically.","title":"addSeries","isParent":false,"parent":"Chart","params":"(Object options, [Boolean redraw], [Mixed animation])","paramsDescription":"options: Object<br>The series options, as documented under <a class=\"internal\" href=\"#plotOptions.series\">plotOptions.series</a> and under the plotOptions for each series type.||\r\n\r\nredraw: Boolean<bcalr>Defaults to <code>true</code>. Whether to redraw the chart after the series is added. See the <code>redraw()</code> method below.||animation: Mixed<br>Defaults to true. When true, the series' updating will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-addseries/\" target=\"_blank\">Add series from a button</a>","since":"","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<br>Exporting options. Out of the <a class=\"internal\" href=\"#exporting\">exporting</a> 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\n<code>filename</code>: the filename for the export without extension, \r\n<code>url</code>: the URL for the server module to do the conversion, \r\n<code>width</code>: the width of the PNG or JPEG image generated on the server, \r\n<code>type</code>: the MIME type of the converted image, \r\n<code>sourceWidth</code>: the width of the source (in-page) chart, \r\n<code>sourceHeight</code>: the height of the source chart.||\r\n\r\nchartOptions: Object<br>Additional chart options for the exported chart. For example a different background color can be added here.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-exportchart/\" target=\"_blank\">Export chart</a>","since":"","deprecated":false},{"name":"Chart--get","fullname":"Chart.get","type":"method","returnType":"Axis|Series|Point","description":"Get an axis, series or point by its <code>id</code> as given in the configuration options.","title":"get","isParent":false,"parent":"Chart","params":"(String id)","paramsDescription":"id: String<br>The id of the axis, series or point to get."},{"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<br>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":"","since":"","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<br>The new pixel width of the chart.||height: Number<br>The new pixel height of the chart.||animation: Mixed<br>Defaults to true. When true, the resize will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-setsize/\" target=\"_blank\">Set the size from a jQuery UI resizable</a>","since":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-destroy/\" target=\"_blank\">Destroy the chart from a button</a>","since":"","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":"","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<br>A configuration object consisting of the same members as <a class=\"internal\" href=\"#xAxis.plotLines\">options.xAxis.plotLines</a>","demo":"","since":"","deprecated":false},{"name":"Chart--xAxis","fullname":"Chart.xAxis","type":"property","returnType":"Array<Axis>","description":"An array of the chart's x axes. If only one x axis, it is referenced by <code>chart.xAxis[0]</code>.","title":"xAxis","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Chart--yAxis","fullname":"Chart.yAxis","type":"property","returnType":"Array<Axis>","description":"An array of the chart's y axes. If only one y axis, it is referenced by <code>chart.yAxis[0]</code>.","title":"yAxis","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"","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 <code>chart.renderTo</code>.","title":"container","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Chart--getSelectedPoints","fullname":"Chart.getSelectedPoints","type":"method","returnType":"Array<Point>","description":"Returns an array of all currently selected points in the chart. Points can be selected either programmatically by the <code>point.select()</code> method or by clicking.","title":"getSelectedPoints","isParent":false,"parent":"Chart","params":"()","paramsDescription":"An array of the selected points.","demo":"","since":"","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":"","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":"","deprecated":false},{"name":"Series--data","fullname":"Series.data","type":"property","returnType":"Array<Point>","description":"Read only. An array with the series' data point objects. In case the series data length exceeds the cropThreshold, or if the data is grouped, series.data doesn't contain all the points. It only contains the points that have been created on demand. In these cases, all original X and Y values can be read from <code>series.xData</code> and <code>series.yData</code>. Additionally, <code>series.options.data</code> contains all configuration objects for the points, whether they be numbers, arrays or objects.","title":"data","isParent":false,"parent":"Series","params":"","paramsDescription":"","demo":"","since":"","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":"","deprecated":false},{"name":"Axis--setDataGrouping","fullname":"Axis.setDataGrouping","type":"","returnType":"","description":"Set the data grouping and optionally redraw all series belonging to this axis.","title":"setDataGrouping","isParent":false,"parent":"Axis","params":"(Object dataGrouping, [Boolean redraw])","paramsDescription":"dataGrouping: Object<br>\r\nA dataGrouping configuration like shown at <a href=\"#plotOptions.series.dataGrouping\">series.dataGrouping</a>. Use <code>false</code> to disable data grouping dynamically.||\r\n\r\nredraw: Boolean<br>\r\nWhether to redraw the chart or wait for a later call to Chart.redraw().","demo":"","since":"2.1.6","deprecated":false},{"name":"Highcharts--chart","fullname":"Highcharts.chart","type":"","returnType":"Chart","description":"As <code>Highcharts.Chart</code>, but without need for the <code>new</code> 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--stockChart","fullname":"Highcharts.stockChart","type":"","returnType":"Chart","description":"As <code>Highcharts.StockChart</code>, but without need for the <code>new</code> keyword.","title":"stockChart","isParent":false,"parent":"Highcharts","params":"([String|Object renderTo], Object options, Function callback)","paramsDescription":"","demo":"","since":"4.2.0","deprecated":false},{"name":"Element","fullname":"Element","returnType":"","description":"<p>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.</p>","title":"Element","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Highcharts","fullname":"Highcharts","returnType":"","description":"<p>The namespace under which all other Highcharts variables are assembled is called <code>Highcharts</code>. </p><pre>var chart1 = new Highcharts.Chart(options);</pre>","title":"Highcharts","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"name":"Highcharts--charts","fullname":"Highcharts.charts","type":"Array<Object>","returnType":"Array<Chart>","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 <code>undefined</code>.","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 <a href=\"http://php.net/manual/en/function.strftime.php\">PHP's strftime function</a>.","title":"dateFormat","isParent":false,"parent":"Highcharts","params":"(String format, [Number time], [Boolean capitalize])","paramsDescription":"format: String<br>A string containing some of the formats above.||time: Number<br>The JavaScript time to format.||capitalize: Boolean<br>Whether to capitalize words in the return string."},{"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<br>The chart configuration object."},{"name":"Point","fullname":"Point","returnType":"","description":"<p>The Point object is the JavaScript representation of each data point</p><p>The object can be accessed in a number of ways. In all point event handlers the point object is <code>this</code>. In the <code>series</code> object all the point sare accessed by the <code>series.data</code> array.</p><p>Another way to reference the point programmatically is by id. Add an id in the point configuration options, and get the point object by <code>chart.get(id)</code>.</p>","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.","title":"percentage","isParent":false,"parent":"Point"},{"name":"Point--selected","fullname":"Point.selected","type":"property","returnType":"Boolean","description":"Whether the point is selected or not.","title":"selected","isParent":false,"parent":"Point"},{"name":"Point--x","fullname":"Point.x","type":"property","returnType":"Number","description":"The x value for the point.","title":"x","isParent":false,"parent":"Point"},{"name":"Point--y","fullname":"Point.y","type":"property","returnType":"Number","description":"The y value for the point.","title":"y","isParent":false,"parent":"Point"},{"name":"Series","fullname":"Series","returnType":"","description":"<p>The Series object is the JavaScript representation of each line, area series, pie etc.</p><p>The object can be accessed in a number of ways. All series and point event handlers give a reference to the series object. The <code>chart</code> object has a <code>series</code> property that is a collection of all the chart's series. The <code>point</code> objects also have the same reference.</p><p>Another way to reference the series programmatically is by id. Add an id in the series configuration options, and get the series object by <code>chart.get(id)</code>.</p><p>Configuration options for the series are given in three levels. Options for all series in a chart are given in the <a class=\"internal\" href=\"#plotOptions.series\">plotOptions.series</a> 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 <a class=\"internal\" href=\"#series\">the series array</a>.</p>","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<br>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, or in the case of OHLC or candlestick, as <code>[x, open, high, low, close]</code>. If it is an object, advanced options as outlined under <a class=\"internal\" href=\"#series.data\">series.data</a> are applied.||\r\nredraw: Boolean<br>Defaults to <code>true</code>. Whether to redraw the chart after the point is added. When adding more than one point, it is highly recommended that the <code>redraw</code> option be set to false, and instead <code>chart.redraw()</code> is explicitly called after the adding of points is finished.||shift: Boolean<br>Defaults to <code>false</code>. 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<br>Defaults to true. When true, the graph will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-addpoint/\" target=\"_blank\">Append 100 points</a>,<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-addpoint-shift/\" target=\"_blank\">append and shift</a>","since":"","deprecated":false},{"name":"Series--hide","fullname":"Series.hide","type":"method","description":"Hides the series if visible. If the <code>chart.ignoreHiddenSeries</code> option is true,the chart is redrawn without this series.","title":"hide","isParent":false,"parent":"Series","params":"()","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-show-hide/\" target=\"_blank\">Toggle visibility from a button</a>"},{"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"},{"name":"Series--options","fullname":"Series.options","type":"property","returnType":"Object","description":"Read only. The series' options.","title":"options","isParent":false,"parent":"Series"},{"name":"Series--selected","fullname":"Series.selected","type":"property","returnType":"Boolean","description":"Read only. The series' selected state as set by <code>series.select()</code>.","title":"selected","isParent":false,"parent":"Series"},{"name":"Series--setCompare","fullname":"Series.setCompare","type":"method","returnType":"","description":"Set the <a href=\"#plotOptions.series.compare\">compare</a> mode of the series after render time. In most cases it is more useful running <a href=\"#Axis.setCompare\">Axis.setCompare</a> on the X axis to update all its series.","title":"setCompare","isParent":false,"parent":"Series","params":"(String compare)","paramsDescription":"compare: String<br>\r\nCan be one of <code>null</code>, <code>\"percent\"</code> or <code>\"value\"</code>.","demo":"","since":"1.3","deprecated":false},{"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<br>Whether to show or hide the series. If undefined, the visibility is toggled.||redraw: Boolean<br>Defaults to <code>true</code>. 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 <code>chart.redraw()</code> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-show-hide/\" target=\"_blank\">Toggle visibility from a button</a>"},{"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"},{"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 <code>setData</code> or <code>setVisible</code>.","title":"update","isParent":false,"parent":"Series","params":"(Object options, [Boolean redraw])","paramsDescription":"options: Boolean<br>\r\nNew options that will be merged into the series' existing options.\r\n\r\n||\r\n\r\nredraw: Boolean<br>\r\nDefaults to <code>true</code>. 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 <code>chart.redraw()</code> after.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/series-update/\" target=\"_blank\">Updating series options</a>","since":"1.3","deprecated":false},{"name":"Series--visible","fullname":"Series.visible","type":"property","returnType":"Boolean","description":"Read only. The series' visibility state as set by <code>series.show()</code>, <code>series.hide()</code>, or the initial configuration.","title":"visible","isParent":false,"parent":"Series"},{"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<br>A configuration object for the new title as defined at <a class=\"internal\" href=\"#title\">#title</a>.||\r\nsubtitle: Object<br>A configuration object for the new subtitle as defined at <a class=\"internal\" href=\"#subtitle\">#subtitle</a>.||\r\nredraw: Boolean<br>Whether to redraw the chart. Defaults to true.","demo":"","since":"","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<br>The URL of the image.||x: String<br>The x position of the image's upper left corner.||y: String<br>The y position of the image's upper left corner.||width: String<br>The width of the image.||height: String<br>The height of the image.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-image-on-chart/\" target=\"_blank\">Add an image in a chart</a>,<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-image/\" target=\"_blank\">add an image independent from chart</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-on-chart/\" target=\"_blank\">Draw a rectangle based on a text's bounding box</a>.","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<br>The x position of the arc's center in the SVG element.||centerY: Number<br>The y position of the arc's center in the SVG element.||outerRadius: Number<br>The outer radius of the arc.||innerRadius: Number<br>The inner radius of the arc.||start: Number<br>The starting angle of the arc in radians, where 0 is to the right and -Math.PI/2 is up.||end: Number<br>The ending angle of the arc in radians, where 0 is to the right and -Math.PI/2 is up.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-arc/\" target=\"_blank\">Drawing an arc</a>","since":"","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<br>The x position of the rectangle's upper left corner.||y: Number<br>The y position of the rectangle's upper left corner.||width: Number<br>The width of the rectangle.||height: Number<br>The height of the rectangle.||cornerRadius: Number<br>The corner radius of all the rectangle's corners.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-rect-on-chart/\" target=\"_blank\">Draw a rectangle in a chart</a>,<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-rect/\" target=\"_blank\">draw a rectangle independent from a chart</a>","since":"","deprecated":false},{"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<br>The event type to attach, for example 'click', 'mouseover', 'touch'.||handler: Function<br>The event handler function.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/element-on/\" target=\"_blank\">A clickable rectangle</a>.","since":"","deprecated":false},{"name":"Renderer--path","fullname":"Renderer.path","type":"method","returnType":"Element","description":"Add a path based on <a href=\"http://www.w3.org/TR/SVG/paths.html\">SVG's path commands</a>. 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<br>An SVG path split up in array form.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-path-on-chart/\" target=\"_blank\">Draw a path in a chart</a>,<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-path/\" target=\"_blank\">draw a path independent from a chart</a>","since":"","deprecated":false},{"name":"Renderer","fullname":"Renderer","returnType":"","description":"<p>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 &lt; 8.</p><p>An existing chart's renderer can be accessed through <code>chart.renderer</code>. To create a renderer independent from a chart, use <code>var renderer = new Highcharts.Renderer(parentNode, width, height);</code> where parentNode is the HTML element where you want to add it.</p><p>The Renderer's methods are chained wherever possible, so you can initiate an element then call for example <code>attr</code> and <code>css</code> and <code>add</code> on that element in one statement.</p><div class=\"demo\"><a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-on-chart/\">Annotating a chart programmatically</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-basic/\">independent SVG/VML drawing</a></div>","title":"Renderer","isParent":true,"params":"","paramsDescription":"","demo":"","since":"","deprecated":false},{"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","params":"","paramsDescription":"The element object","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/element-tofront/\" target=\"_blank\">Click an element to bring it to front</a>.","since":"","deprecated":false},{"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<br>The x position of the circle's center in the SVG element.||centerY: Number<br>The y position of the circle's center in the SVG element.||radius: Number<br>The radius of the circle.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-circle/\" target=\"_blank\">Drawing a circle</a>","since":"","deprecated":false},{"name":"Element--attr","fullname":"Element.attr","type":"method","returnType":"Element","description":"<p>Apply attributes to the SVG/VML elements. These attributes for the most parts correspond to SVG, but some are specific to Highcharts, like <code>zIndex</code> and <code>rotation</code>.</p>\r\n\r\n<p>In order to set the rotation center for <code>rotation</code>, set x and y to 0 and use <code>translateX</code> and <code>translateY</code> attributes to position the element instead.</p>\r\n\r\n<p>Attributes frequently used in Highcharts are <code>fill</code>, <code>stroke</code>, <code>stroke-width</code>.</p>","title":"attr","isParent":false,"parent":"Element","params":"Object hash","paramsDescription":"hash: Object<br>A set of attributes to apply.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-rect/\" target=\"_blank\">Setting some attributes</a>","since":"","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<br>The object literal of CSS properties to apply. Properties should be hyphenated, not camelCased.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-text-on-chart/\" target=\"_blank\">Styled text</a>","since":"","deprecated":false},{"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<br>The name of the group. This will be used in the class name, which will be <code>\"highcharts-\"+ name</code>. Other Element objects are added to the group by using the group as the first parameter in .add() for the wrappers.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-g/\" target=\"_blank\">Show and hide grouped objects</a>","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<br>The element can be added to a <code>g</code> (group) element.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-g/\" target=\"_blank\">Elements added to a group</a>","since":"","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 right calls this method.","title":"print","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/chart-print/\" target=\"_blank\">Print from a HTML button</a>","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 <a class=\"internal\" href=\"#loading\">options.loading</a>. A custom text can be given as a parameter for loading.","title":"showLoading","isParent":false,"parent":"Chart","params":"(String str)","paramsDescription":"","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-show-hide-loading/\" target=\"_blank\">Show and hide loading from a button</a>","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 <code>max</code> option is not set and <code>maxPadding</code> is 0, this value will be the same as <code>dataMax</code>.||min: The minimum axis value, either automatic or set manually. If the <code>min</code> option is not set and <code>minPadding</code> is 0, this value will be the same as <code>dataMin</code>.","demo":"","since":"","deprecated":false},{"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<br>Defaults to <code>true</code>. 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 <code>chart.redraw()</code> after.||animation: Mixed<br>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 <code>duration</code> and <code>easing</code>.","demo":"","since":"","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<br>When <code>true</code>, the point is selected. When <code>false</code>, the point is unselected. When <code>null</code> or <code>undefined</code>, the selection state is toggled.||accumulate: Boolean<br>When <code>true</code>, the selection is added to other selected points. When <code>false</code>, other selected points are deselected. Internally in Highcharts,selected points are accumulated on Control, Shift or Cmd clicking the point.","demo":"","since":"","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<br>Defaults to <code>true</code>. 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 <code>chart.redraw()</code> after.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-remove/\" target=\"_blank\">Remove first series from a button</a>","since":"","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":"","deprecated":false},{"name":"Axis--removePlotBand","fullname":"Axis.removePlotBand","type":"method","returnType":"","description":"Remove a plot band by its <code>id</code>.","title":"removePlotBand","isParent":false,"parent":"Axis","params":"(String id)","paramsDescription":"id: String<br>The plot band's <code>id</code> as given in the original configuration object or in the addPlotBand method.","demo":"","since":"","deprecated":false},{"name":"Axis--removePlotLine","fullname":"Axis.removePlotLine","type":"method","returnType":"","description":"Remove a plot line by its <code>id</code>.","title":"removePlotLine","isParent":false,"parent":"Axis","params":"(String id)","paramsDescription":"id: String<br>The plot line's <code>id</code> as given in the original configuration object or in the addPlotLine method.","demo":"","since":"","deprecated":false},{"name":"Chart--getSelectedSeries","fullname":"Chart.getSelectedSeries","type":"method","returnType":"Array<Series>","description":"Returns an array of all currently selected series in the chart. Series can be selected either programmatically by the <code>series.select()</code> method or by checking the checkbox next to the legend item if <code>series.showCheckBox</code> is true.","title":"getSelectedSeries","isParent":false,"parent":"Chart","params":"()","paramsDescription":"An array of the selected Series items.","demo":"","since":"","deprecated":false},{"name":"Series--select","fullname":"Series.select","type":"method","returnType":"","description":"Select or unselect the series. This means its <code>selected</code> property is set,the checkbox in the legend is toggled and when selected, the series is returned in the <code>chart.getSelectedSeries()</code> method.","title":"select","isParent":false,"parent":"Series","params":"([Boolean selected|null])","paramsDescription":"selected: Boolean|null<br>When <code>true</code>, the series is selected. When <code>false</code> it is unselected. When <code>null</code> or <code>undefined</code>, the series' selection state is toggled.","demo":"","since":"","deprecated":false},{"name":"Chart--hideLoading","fullname":"Chart.hideLoading","type":"method","returnType":"","description":"Hide the loading screen. Options for the loading screen are defined at <a class=\"internal\" href=\"#loading\">options.loading</a>.","title":"hideLoading","isParent":false,"parent":"Chart","params":"()","paramsDescription":"","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/chart-show-hide-loading/\" target=\"_blank\">Show and hide loading from a button</a>","since":"","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<br>A configuration object consisting of the same members as <a class=\"internal\" href=\"#xAxis.plotBands\">options.xAxis.plotBands</a>","demo":"","since":"","deprecated":false},{"name":"Chart--series","fullname":"Chart.series","type":"property","returnType":"Array<Series>","description":"An array of all the chart's series.","title":"series","isParent":false,"parent":"Chart","params":"","paramsDescription":"","demo":"","since":"","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":"","deprecated":false},{"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 <a href=\"#Renderer.label\">label</a> instead.","title":"text","isParent":false,"parent":"Renderer","params":"(String str, Number x, Number y)","paramsDescription":"str: String<br>The text or HTML to draw||x: Number<br>The x position of the text's lower left corner.||y: Number<br>The y position of the text's lower left corner.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-text-on-chart/\" target=\"_blank\">Annotate the chart freely</a>; <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-on-chart/\" target=\"_blank\">annotate with a border and in response to the data</a>; <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-text/\" target=\"_blank\">formatted text</a>.","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 <code>window.resize</code> event, as per the <a href=\"#chart.reflow\">chart.reflow</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/chart-reflow/\" target=\"_blank\">Resize div and reflow</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/events-container/\" target=\"_blank\">pop up and reflow</a>","since":"","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":"","deprecated":false},{"name":"Series--removePoint","fullname":"Series.removePoint","type":"method","returnType":"","description":"Remove a point from the series. Unlike the <a href=\"#Point.remove\">Point.remove</a> 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<br>The index of the point in the data array.||\r\nredraw: Boolean<br>Defaults to <code>true</code>. Whether to redraw the chart after the point is added. When adding more than one point, it is highly recommended that the <code>redraw</code> option be set to false, and instead <code>chart.redraw()</code> is explicitly called after the adding of points is finished.||\r\nanimation: Mixed<br>Defaults to true. When true, the graph will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/series-removepoint/\" target=\"_blank\">Remove cropped point</a>","since":"2.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 <a href=\"http://php.net/manual/en/function.number-format.php\">PHP number_format</a> 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<br>The raw number to format.||decimals: Number<br>The desired number of decimals.||decimalPoint: String<br>The decimal point. Defaults to \".\" or to the string specified globally in options.lang.decimalPoint.||thousandsSep: String<br>The thousands separator. Defaults to \" \" or to the string specified globally in options.lang.thousandsSep.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/highcharts-numberformat/\" target=\"_blank\">Custom number format</a>","since":"","deprecated":false},{"name":"Renderer--label","fullname":"Renderer.label","type":"method","returnType":"Element","description":"Draw a label, which is an extended <code>text</code> element with support for border and background. Highcharts creates a <code>g</code> element with a <code>text</code> and a <code>path</code> or <code>rect</code> inside, to make it behave somewhat like a HTML <code>div</code>. Border and background are set through <code>stroke</code>, <code>stroke-width</code> and <code>fill</code> attributes using the <a href=\"#Element.attr\">attr</a> method. This must be done before calling <a href=\"#Element.add\">add</a>.","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<br>\r\nThe text or HTML to draw||\r\n\r\nx: Number<br>\r\nThe x position of the label's left side.||\r\n\r\ny: Number<br>\r\nThe y position of the label's top side or baseline, depending on the <code>baseline</code> parameter.||\r\n\r\nshape: String<br>\r\nThe shape of the label's border/background, if any. Defaults to <code>rect</code>.||\r\n\r\nanchorX: Number<br>\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<br>\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<br>\r\nUse HTML to render the text of the label.||\r\n\r\nbaseline: Boolean<br>\r\nWhether the label should be vertically aligned by the text baseline, which makes it behave like the <code>text</code> element, or by the top left side, which makes it behave like a HTML <code>div</code>.||\r\n\r\nclassName: String<br>\r\nA class name for the <code>g</code> element surrounding the label.\r\n\r\n","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/renderer-label-on-chart/\" target=\"_blank\">A label on the chart</a>","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 <code>true</code> 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 <code>chart.redraw()</code> after.","title":"redraw","isParent":false,"parent":"Chart","params":"([Mixed animation])","paramsDescription":"animation: Mixed<br>Defaults to true. When true, the update will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"","since":"","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<br>The point options. Point options are handled as described under the <code>series&lt;type&gt;.data</code> 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 <code>y</code> 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<br>Defaults to <code>true</code>. 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 <code>chart.redraw()</code> after.\r\n\r\n||animation: Mixed<br>Defaults to true. When true, the update will be animated with default animation options. The animation can also be a configuration object with properties <code>duration</code> and <code>easing</code>.","demo":"","since":"","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 <a href=\"#Point.update()\">Point.update()</a> 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 <code>setData</code>.","title":"setData","isParent":false,"parent":"Series","params":"(Array&lt;Mixed&gt; data, [Boolean redraw], [Mixed animation], [Boolean updatePoints])","paramsDescription":"data: Array&lt;Number&gt;|Array&lt;Array&gt;|Array&lt;Object&gt;<br>Takes an array of data in the same format as described under <code>series&lt;type&gt;data</code> for the given series type.||\r\n\r\nredraw: Boolean<br>Defaults to <code>true</code>. 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 <code>chart.redraw()</code> after.||\r\n\r\nanimation: Mixed<br>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\nupdatePoints: Boolean<br>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 Highstock 1.3.10.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/members/series-setdata/\" target=\"_blank\">Set new data from a button</a>","since":"","deprecated":false},{"name":"Highcharts--Chart","fullname":"Highcharts.Chart","type":"method","returnType":"Chart","description":"This is the constructor for creating a new basic chart object (not Stock chart).","title":"Chart","isParent":false,"parent":"Highcharts","params":"([String|Object renderTo], Object options, Function callback)","paramsDescription":"renderTo: String[Object<br>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<br>The chart options, as documented under the heading \"The options object\"in the left menu.||\r\n\r\ncallback: Function<br>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 <code>chart</code> object will not be finished directly after calling<code>new Highcharts.Chart()</code>. As a consequence, code that relies on the newly built Chart object should always run in the callback. Defining a <code>chart.event.load</code> handler is equivalent.","demo":"","since":"","deprecated":false},{"name":"Highcharts--StockChart","fullname":"Highcharts.StockChart","type":"method","returnType":"Chart","description":"This is the constructor for creating a new stock chart object. Basically a stock chart object is the same as a Chart object with some different default options.","title":"StockChart","isParent":false,"parent":"Highcharts","params":"([String|Object renderTo], Object options, Function callback)","paramsDescription":"renderTo: String[Object<br>The id or a reference to a DOM element where the chart should be rendered (since v4.2.0).||\r\n\r\noptions: Object<br>The chart options, as documented under the heading \"The options object\"in the left menu.||\r\n\r\ncallback: Function<br>A function to execute when the chart object is finished loading and rendering. 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 <code>chart</code> object will not be finished directly after calling<code>new Highcharts.Chart()</code>. As a consequence, code that relies on the newly built Chart object should always run in the callback. Defining a <code>chart.event.load</code> handler is equivalent.","demo":"","since":"","deprecated":false}];
offline.highstock.option = [{"name":"global--Date","fullname":"global.Date","title":"Date","parent":"global","isParent":false,"returnType":"Object","since":"2.0.4","description":"A custom <code>Date</code> class for advanced date handling. For example, <a href=\"https://github.com/tahajahangir/jdate\">JDate</a> 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/highstock/{version}/gfx/vml-radial-gradient.png","since":"1.2.0","description":"Path to the pattern image required by VML browsers in order to draw radial gradients.","demo":"","seeAlso":"","deprecated":false},{"name":"legend-navigation--activeColor","fullname":"legend.navigation.activeColor","title":"activeColor","parent":"legend-navigation","isParent":false,"returnType":"Color","defaults":"#274b6d","since":"1.1.5","description":"The color for the active up or down arrow in the legend page navigation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/navigation/\" target=\"_blank\">\r\n\t\t\t\tLegend page navigation demonstrated</a>","deprecated":false},{"name":"navigator--adaptToUpdatedData","fullname":"navigator.adaptToUpdatedData","title":"adaptToUpdatedData","parent":"navigator","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"","description":"Whether the navigator and scrollbar should adapt to updated data in the base X axis. This should be false when loading data asynchronously, to prevent circular loading.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/lazy-loading/\" target=\"_blank\">Set to false with async data loading</a>","seeAlso":"","deprecated":false},{"name":"chart-events--addSeries","fullname":"chart.events.addSeries","title":"addSeries","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","description":"Fires when a series is added to the chart after load time, using the <code>addSeries</code> method. One parameter, <code>event</code>, is passed 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 <code>event.options</code> you can access the series options that was passed to the <code>addSeries</code>  method. Returning false prevents the series from being added.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/events-addseries/\" target=\"_blank\">Alert on add series</a>","deprecated":false},{"name":"plotOptions-candlestick-events--afterAnimate","fullname":"plotOptions.candlestick.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<scatter>-events--afterAnimate","fullname":"series<scatter>.events.afterAnimate","title":"afterAnimate","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<spline>-events--afterAnimate","fullname":"series<spline>.events.afterAnimate","title":"afterAnimate","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<areaspline>-events--afterAnimate","fullname":"series<areaspline>.events.afterAnimate","title":"afterAnimate","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<area>-events--afterAnimate","fullname":"series<area>.events.afterAnimate","title":"afterAnimate","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<columnrange>-events--afterAnimate","fullname":"series<columnrange>.events.afterAnimate","title":"afterAnimate","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<column>-events--afterAnimate","fullname":"series<column>.events.afterAnimate","title":"afterAnimate","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<arearange>-events--afterAnimate","fullname":"series<arearange>.events.afterAnimate","title":"afterAnimate","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<ohlc>-events--afterAnimate","fullname":"series<ohlc>.events.afterAnimate","title":"afterAnimate","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<polygon>-events--afterAnimate","fullname":"series<polygon>.events.afterAnimate","title":"afterAnimate","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<areasplinerange>-events--afterAnimate","fullname":"series<areasplinerange>.events.afterAnimate","title":"afterAnimate","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<line>-events--afterAnimate","fullname":"series<line>.events.afterAnimate","title":"afterAnimate","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"plotOptions-ohlc-events--afterAnimate","fullname":"plotOptions.ohlc.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<flags>-events--afterAnimate","fullname":"series<flags>.events.afterAnimate","title":"afterAnimate","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","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":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"series<candlestick>-events--afterAnimate","fullname":"series<candlestick>.events.afterAnimate","title":"afterAnimate","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"plotOptions-flags-events--afterAnimate","fullname":"plotOptions.flags.events.afterAnimate","title":"afterAnimate","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","since":"2.0","description":"Fires after the series has finished its initial animation, or in case animation is disabled, immediately as the series is displayed.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-events-afteranimate/\" target=\"_blank\">Show label after animate</a>","deprecated":false},{"name":"chart-events--afterPrint","fullname":"chart.events.afterPrint","title":"afterPrint","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","defaults":"","values":"","since":"2.1.0","description":"Fires after a chart is printed through the context menu item or the <code>Chart.print</code> method. Requires the exporting module.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/events-beforeprint-afterprint/\" target=\"_blank\">Rescale the chart to print</a>","seeAlso":"","deprecated":false},{"name":"xAxis-events--afterSetExtremes","fullname":"xAxis.events.afterSetExtremes","title":"afterSetExtremes","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"1.2","description":"As opposed to the <code>setExtremes</code> event, this event fires after the final min and max values are computed and corrected for <code>minRange</code>.","deprecated":false},{"name":"yAxis-events--afterSetExtremes","fullname":"yAxis.events.afterSetExtremes","title":"afterSetExtremes","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","since":"1.2","description":"As opposed to the <code>setExtremes</code> event, this event fires after the final min and max values are computed and corrected for <code>minRange</code>.","deprecated":false},{"name":"series<arearange>-dataLabels--align","fullname":"series<arearange>.dataLabels.align","title":"align","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<line>-dataLabels--align","fullname":"series<line>.dataLabels.align","title":"align","parent":"series<line>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"xAxis-plotBands-label--align","fullname":"xAxis.plotBands.label.align","title":"align","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"\"center\"","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"series<areaspline>-dataLabels--align","fullname":"series<areaspline>.dataLabels.align","title":"align","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>\"left\"</code>, <code>\"center\"</code> or <code>\"right\"</code>. Defaults to an intelligent guess based on which side of the chart the axis is on and the rotation of the label.","deprecated":false},{"name":"yAxis-labels--align","fullname":"yAxis.labels.align","title":"align","parent":"yAxis-labels","isParent":false,"returnType":"String","defaults":"\"left\"","description":"What part of the string the given position is anchored to.  Can be one of <code>\"left\"</code>, <code>\"center\"</code> or <code>\"right\"</code>."},{"name":"series<columnrange>-dataLabels--align","fullname":"series<columnrange>.dataLabels.align","title":"align","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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\"]","description":"Alignment for the buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-align/\" target=\"_blank\">Center aligned</a>","deprecated":false},{"name":"yAxis-plotBands-label--align","fullname":"yAxis.plotBands.label.align","title":"align","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"\"center\"","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<candlestick>-dataLabels--align","fullname":"series<candlestick>.dataLabels.align","title":"align","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<areasplinerange>-dataLabels--align","fullname":"series<areasplinerange>.dataLabels.align","title":"align","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 are \"low\", \"middle\" or \"high\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/title-align/\" target=\"_blank\">Aligned to \"high\" value</a>"},{"name":"series<ohlc>-dataLabels--align","fullname":"series<ohlc>.dataLabels.align","title":"align","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<polygon>-dataLabels--align","fullname":"series<polygon>.dataLabels.align","title":"align","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<area>-dataLabels--align","fullname":"series<area>.dataLabels.align","title":"align","parent":"series<area>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--align","fullname":"plotOptions.candlestick.dataLabels.align","title":"align","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"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\"]","description":"Alignment for the buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-align/\" target=\"_blank\">Center aligned</a>","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 are \"low\", \"middle\" or \"high\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/title-align/\" target=\"_blank\">Aligned to \"high\" value</a>"},{"name":"yAxis-plotLines-label--align","fullname":"yAxis.plotLines.label.align","title":"align","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"left","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--align","fullname":"plotOptions.flags.dataLabels.align","title":"align","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"yAxis-crosshair-label--align","fullname":"yAxis.crosshair.label.align","title":"align","parent":"yAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"","values":"","since":"2.1","description":"Alignment of the label compared to the axis. Defaults to <code>left</code> for right-side axes, <code>right</code> for left-side axes and <code>center</code> for horizontal axes.","demo":"","seeAlso":"","deprecated":false},{"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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<scatter>-dataLabels--align","fullname":"series<scatter>.dataLabels.align","title":"align","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--align","fullname":"plotOptions.ohlc.dataLabels.align","title":"align","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"series<flags>-dataLabels--align","fullname":"series<flags>.dataLabels.align","title":"align","parent":"series<flags>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"title--align","fullname":"title.align","title":"align","parent":"title","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The horizontal alignment of the title. Can be one of \"left\", \"center\" and \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-align/\" target=\"_blank\">Aligned to the plot area (x = 50px \r\n\t\t\t= margin left - spacing left)</a>","deprecated":false},{"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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"xAxis-plotLines-label--align","fullname":"xAxis.plotLines.label.align","title":"align","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"left","description":"Horizontal alignment of the label. Can be one of \"left\", \"center\" or \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>","deprecated":false},{"name":"series<column>-dataLabels--align","fullname":"series<column>.dataLabels.align","title":"align","parent":"series<column>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"subtitle--align","fullname":"subtitle.align","title":"align","parent":"subtitle","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The horizontal alignment of the subtitle. Can be one of \"left\", \"center\" and \"right\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-footnote\" target=\"_blank\">Footnote at bottom right of plot area</a>","deprecated":false},{"name":"series<spline>-dataLabels--align","fullname":"series<spline>.dataLabels.align","title":"align","parent":"series<spline>-dataLabels","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"The alignment of the data label compared to the point.  If <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"xAxis-crosshair-label--align","fullname":"xAxis.crosshair.label.align","title":"align","parent":"xAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"","values":"","since":"2.1","description":"Alignment of the label compared to the axis. Defaults to <code>left</code> for right-side axes, <code>right</code> for left-side axes and <code>center</code> for horizontal axes.","demo":"","seeAlso":"","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","deprecated":false},{"name":"legend--align","fullname":"legend.align","title":"align","parent":"legend","isParent":false,"returnType":"String","defaults":"center","values":"[\"left\", \"center\", \"right\"]","description":"<p>The horizontal alignment of the legend box within the chart area. Valid values are <code>left</code>, <code>center</code> and <code>right</code>.</p>\r\n\r\n<p>In the case that the legend is aligned in a corner position, the <code>layout</code> option will determine whether to place it above/below or on the side of the plot area.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>","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 <code>right</code>, 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 <a href=\"#plotOptions.column.dataLabels.inside\">inside</a> option. Can be one of \"left\", \"center\" or \"right\".","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 <code>alignTicks</code> to false. If the grid lines look messy, it's a good idea to hide them for the secondary axis by setting <code>gridLineWidth</code> to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/alignticks-true/\" target=\"_blank\">True by default</a>, \n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/alignticks-false/\" target=\"_blank\">false</a>."},{"name":"rangeSelector--allButtonsEnabled","fullname":"rangeSelector.allButtonsEnabled","title":"allButtonsEnabled","parent":"rangeSelector","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"2.0.3","description":"Whether to enable all buttons from the start. By default buttons are only enabled if the corresponding time range exists on the X axis, but enabling all buttons allows for dynamically loading different time ranges.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/allbuttonsenabled-true/\" target=\"_blank\">All buttons enabled</a>","seeAlso":"","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/allowdecimals-true/\" target=\"_blank\">True by default</a> (unwanted for this\r\n\t\t\ttype of data), \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/allowdecimals-false/\" target=\"_blank\">false</a>","seeAlso":"<a href=\"#xAxis.minTickInterval\">minTickInterval</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/allowdecimals-true/\" target=\"_blank\">True by default</a> (unwanted for this\r\n\t\t\ttype of data), \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/allowdecimals-false/\" target=\"_blank\">false</a>","seeAlso":"<a href=\"#xAxis.minTickInterval\">minTickInterval</a>","deprecated":false},{"name":"exporting--allowHTML","fullname":"exporting.allowHTML","title":"allowHTML","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.8","description":"<p>Experimental setting to allow HTML inside the chart (added through the <code>useHTML</code> options), directly in the exported image. This allows you to preserve complicated HTML structures like tables or bi-directional text in exported charts.</p>\r\n\r\n<p>Disclaimer: The HTML is rendered in a <code>foreignObject</code> 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.</p>","deprecated":false},{"name":"series<polygon>-dataLabels--allowOverlap","fullname":"series<polygon>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<arearange>-dataLabels--allowOverlap","fullname":"series<arearange>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--allowOverlap","fullname":"plotOptions.flags.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<flags>-dataLabels--allowOverlap","fullname":"series<flags>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<column>-dataLabels--allowOverlap","fullname":"series<column>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<column>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<columnrange>-dataLabels--allowOverlap","fullname":"series<columnrange>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--allowOverlap","fullname":"plotOptions.candlestick.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<candlestick>-dataLabels--allowOverlap","fullname":"series<candlestick>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--allowOverlap","fullname":"plotOptions.ohlc.dataLabels.allowOverlap","title":"allowOverlap","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<scatter>-dataLabels--allowOverlap","fullname":"series<scatter>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--allowOverlap","fullname":"series<areasplinerange>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","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":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<spline>-dataLabels--allowOverlap","fullname":"series<spline>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<area>-dataLabels--allowOverlap","fullname":"series<area>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<area>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<line>-dataLabels--allowOverlap","fullname":"series<line>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<line>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--allowOverlap","fullname":"series<ohlc>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<areaspline>-dataLabels--allowOverlap","fullname":"series<areaspline>.dataLabels.allowOverlap","title":"allowOverlap","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.0","description":"Whether to allow data labels to overlap. To make the labels less sensitive for overlapping, the <a href=\"#plotOptions.series.dataLabels.padding\">dataLabels.padding</a> can be set to 0.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-allowoverlap-false/\" target=\"_blank\">Don't allow overlap</a>","deprecated":false},{"name":"series<spline>--allowPointSelect","fullname":"series<spline>.allowPointSelect","title":"allowPointSelect","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-candlestick--allowPointSelect","fullname":"plotOptions.candlestick.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<candlestick>--allowPointSelect","fullname":"series<candlestick>.allowPointSelect","title":"allowPointSelect","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-flags--allowPointSelect","fullname":"plotOptions.flags.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-ohlc--allowPointSelect","fullname":"plotOptions.ohlc.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<columnrange>--allowPointSelect","fullname":"series<columnrange>.allowPointSelect","title":"allowPointSelect","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-columnrange--allowPointSelect","fullname":"plotOptions.columnrange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<polygon>--allowPointSelect","fullname":"series<polygon>.allowPointSelect","title":"allowPointSelect","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<line>--allowPointSelect","fullname":"series<line>.allowPointSelect","title":"allowPointSelect","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-column--allowPointSelect","fullname":"plotOptions.column.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<flags>--allowPointSelect","fullname":"series<flags>.allowPointSelect","title":"allowPointSelect","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<arearange>--allowPointSelect","fullname":"series<arearange>.allowPointSelect","title":"allowPointSelect","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-series--allowPointSelect","fullname":"plotOptions.series.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-area--allowPointSelect","fullname":"plotOptions.area.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-areaspline--allowPointSelect","fullname":"plotOptions.areaspline.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-areasplinerange--allowPointSelect","fullname":"plotOptions.areasplinerange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-line--allowPointSelect","fullname":"plotOptions.line.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-scatter--allowPointSelect","fullname":"plotOptions.scatter.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<area>--allowPointSelect","fullname":"series<area>.allowPointSelect","title":"allowPointSelect","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-arearange--allowPointSelect","fullname":"plotOptions.arearange.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<ohlc>--allowPointSelect","fullname":"series<ohlc>.allowPointSelect","title":"allowPointSelect","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-spline--allowPointSelect","fullname":"plotOptions.spline.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<areasplinerange>--allowPointSelect","fullname":"series<areasplinerange>.allowPointSelect","title":"allowPointSelect","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<scatter>--allowPointSelect","fullname":"series<scatter>.allowPointSelect","title":"allowPointSelect","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<areaspline>--allowPointSelect","fullname":"series<areaspline>.allowPointSelect","title":"allowPointSelect","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"plotOptions-polygon--allowPointSelect","fullname":"plotOptions.polygon.allowPointSelect","title":"allowPointSelect","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"series<column>--allowPointSelect","fullname":"series<column>.allowPointSelect","title":"allowPointSelect","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Allow this series' points to be selected by clicking on the markers or bars."},{"name":"xAxis--alternateGridColor","fullname":"xAxis.alternateGridColor","title":"alternateGridColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"null","description":"When using an alternate grid color, a band is painted across the plot area between every other grid line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/alternategridcolor/\" target=\"_blank\">Alternate grid color on the Y axis</a>"},{"name":"yAxis--alternateGridColor","fullname":"yAxis.alternateGridColor","title":"alternateGridColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"null","description":"When using an alternate grid color, a band is painted across the plot area between every other grid line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/alternategridcolor/\" target=\"_blank\">Alternate grid color on the Y axis</a>"},{"name":"plotOptions-ohlc--animation","fullname":"plotOptions.ohlc.animation","title":"animation","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-line--animation","fullname":"plotOptions.line.animation","title":"animation","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<arearange>--animation","fullname":"series<arearange>.animation","title":"animation","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<line>--animation","fullname":"series<line>.animation","title":"animation","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-column--animation","fullname":"plotOptions.column.animation","title":"animation","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<scatter>--animation","fullname":"series<scatter>.animation","title":"animation","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-arearange--animation","fullname":"plotOptions.arearange.animation","title":"animation","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<polygon>--animation","fullname":"series<polygon>.animation","title":"animation","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-scatter--animation","fullname":"plotOptions.scatter.animation","title":"animation","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<area>--animation","fullname":"series<area>.animation","title":"animation","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-areasplinerange--animation","fullname":"plotOptions.areasplinerange.animation","title":"animation","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"chart--animation","fullname":"chart.animation","title":"animation","parent":"chart","isParent":false,"returnType":"Boolean|Object","defaults":"true","description":"<p>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 <a class=\"internal\" href=\"#plotOptions.series\">plotOptions.series</a>\r\n =&gt; animation.</p>\r\n \r\n <p>The animation can either be set as a boolean or a configuration object. If <code>true</code>,\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 </p><dl>\r\n \t<dt>duration</dt>\r\n \t<dd>The duration of the animation in milliseconds.</dd>\r\n \t\r\n \t<dt>easing</dt>\r\n \t<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n </dl>","deprecated":false},{"name":"series<columnrange>--animation","fullname":"series<columnrange>.animation","title":"animation","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<areaspline>--animation","fullname":"series<areaspline>.animation","title":"animation","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-candlestick--animation","fullname":"plotOptions.candlestick.animation","title":"animation","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<candlestick>--animation","fullname":"series<candlestick>.animation","title":"animation","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"legend-navigation--animation","fullname":"legend.navigation.animation","title":"animation","parent":"legend-navigation","isParent":false,"returnType":"Boolean|Object","defaults":"true","since":"1.1.5","description":"How to animate the pages when navigating up or down. A value of <code>true</code> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/navigation/\" target=\"_blank\">\n\t\t\t\tLegend page navigation demonstrated</a>"},{"name":"plotOptions-area--animation","fullname":"plotOptions.area.animation","title":"animation","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<spline>--animation","fullname":"series<spline>.animation","title":"animation","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-spline--animation","fullname":"plotOptions.spline.animation","title":"animation","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-columnrange--animation","fullname":"plotOptions.columnrange.animation","title":"animation","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<column>--animation","fullname":"series<column>.animation","title":"animation","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<ohlc>--animation","fullname":"series<ohlc>.animation","title":"animation","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"series<areasplinerange>--animation","fullname":"series<areasplinerange>.animation","title":"animation","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-areaspline--animation","fullname":"plotOptions.areaspline.animation","title":"animation","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-series--animation","fullname":"plotOptions.series.animation","title":"animation","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"tooltip--animation","fullname":"tooltip.animation","title":"animation","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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-polygon--animation","fullname":"plotOptions.polygon.animation","title":"animation","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"true","description":"<p>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 <a href=\"#chart.animation\">chart.animation</a> and the animation parameter under the API methods.\t\tThe following properties are supported:</p>\r\n<dl>\r\n  <dt>duration</dt>\r\n  <dd>The duration of the animation in milliseconds.</dd>\r\n<dt>easing</dt>\r\n<dd>A string reference to an easing function set on the <code>Math</code> object. See <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/highcharts/plotoptions/series-animation-easing/\">the easing demo</a>.</dd>\r\n</dl>\r\n<p>\r\nDue to poor performance, animation is disabled in old IE browsers for column charts and polar charts.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-slower/\" target=\"_blank\">Slower animation</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/animation-easing/\" target=\"_blank\">easing \"swing\" through jQuery UI</a>.","deprecated":false},{"name":"plotOptions-areaspline-dataGrouping--approximation","fullname":"plotOptions.areaspline.dataGrouping.approximation","title":"approximation","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--approximation","fullname":"plotOptions.arearange.dataGrouping.approximation","title":"approximation","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataGrouping--approximation","fullname":"series<columnrange>.dataGrouping.approximation","title":"approximation","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataGrouping--approximation","fullname":"series<arearange>.dataGrouping.approximation","title":"approximation","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataGrouping--approximation","fullname":"series<polygon>.dataGrouping.approximation","title":"approximation","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter-dataGrouping--approximation","fullname":"plotOptions.scatter.dataGrouping.approximation","title":"approximation","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataGrouping--approximation","fullname":"plotOptions.polygon.dataGrouping.approximation","title":"approximation","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataGrouping--approximation","fullname":"series<areasplinerange>.dataGrouping.approximation","title":"approximation","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--approximation","fullname":"plotOptions.candlestick.dataGrouping.approximation","title":"approximation","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-dataGrouping--approximation","fullname":"series<area>.dataGrouping.approximation","title":"approximation","parent":"series<area>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataGrouping--approximation","fullname":"series<line>.dataGrouping.approximation","title":"approximation","parent":"series<line>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-dataGrouping--approximation","fullname":"series<column>.dataGrouping.approximation","title":"approximation","parent":"series<column>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataGrouping--approximation","fullname":"plotOptions.line.dataGrouping.approximation","title":"approximation","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataGrouping--approximation","fullname":"series<scatter>.dataGrouping.approximation","title":"approximation","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataGrouping--approximation","fullname":"series<areaspline>.dataGrouping.approximation","title":"approximation","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataGrouping--approximation","fullname":"plotOptions.areasplinerange.dataGrouping.approximation","title":"approximation","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataGrouping--approximation","fullname":"plotOptions.area.dataGrouping.approximation","title":"approximation","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataGrouping--approximation","fullname":"series<ohlc>.dataGrouping.approximation","title":"approximation","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataGrouping--approximation","fullname":"plotOptions.columnrange.dataGrouping.approximation","title":"approximation","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataGrouping--approximation","fullname":"series<candlestick>.dataGrouping.approximation","title":"approximation","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataGrouping--approximation","fullname":"plotOptions.column.dataGrouping.approximation","title":"approximation","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataGrouping--approximation","fullname":"plotOptions.ohlc.dataGrouping.approximation","title":"approximation","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataGrouping--approximation","fullname":"plotOptions.spline.dataGrouping.approximation","title":"approximation","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-dataGrouping--approximation","fullname":"series<spline>.dataGrouping.approximation","title":"approximation","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataGrouping--approximation","fullname":"plotOptions.series.dataGrouping.approximation","title":"approximation","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"String|Function","defaults":"","since":"","description":"<p>The method of approximation inside a group. When for example\r 30 days are grouped into one month, this determines what value should represent the\r group. Possible values are \"average\", \"open\", \"high\", \"low\", \"close\" and \"sum\". For\r OHLC and candlestick series the approximation is \"ohlc\" by default, which finds the \r open, high, low and close values within all the grouped data. For ranges, the approximation is \"range\", which finds the low and high values.</p>\r \r <p>Custom aggregate methods\r can be added by assigning a callback function as the approximation. This function takes\r a numeric array as the argument and should return a single numeric value or <code>null</code>. Note that\r the numeric array will never contain null values, only true numbers. Instead, if null\r values are present in the raw data, the numeric array will have an <code>.hasNulls</code>\r property set to <code>true</code>. For single-value data sets the data is available in the first\r argument of the callback function. For OHLC data sets, all the open values are in the first\r argument, all high values in the second etc.</p>\r\n\r\n<p>Defaults to <code>average</code> for line-type series, <code>sum</code> for columns, <code>range</code> for range series and <code>ohlc</code> for OHLC and candlestick.","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":"1.2.0","description":"The area range is a cartesian series type with higher and lower Y values along an X axis. Requires <code>highcharts-more.js</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange/\">Arearange example</a>","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":"1.2.0","description":"The area spline range is a cartesian series type with higher and lower Y values along an X axis. Requires <code>highcharts-more.js</code>.","deprecated":false},{"name":"legend-navigation--arrowSize","fullname":"legend.navigation.arrowSize","title":"arrowSize","parent":"legend-navigation","isParent":false,"returnType":"Number","defaults":"12","since":"1.1.5","description":"The pixel size of the up and down arrows in the legend paging navigation.  .","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/navigation/\" target=\"_blank\">\n\t\t\t\tLegend page navigation demonstrated</a>"},{"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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-states-hover-halo--attributes","fullname":"series<line>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-states-hover-halo--attributes","fullname":"series<arearange>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-states-hover-halo--attributes","fullname":"series<spline>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-states-hover-halo--attributes","fullname":"plotOptions.ohlc.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-ohlc-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-states-hover-halo--attributes","fullname":"plotOptions.flags.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-flags-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-states-hover-halo--attributes","fullname":"series<areasplinerange>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-states-hover-halo--attributes","fullname":"series<areaspline>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-states-hover-halo--attributes","fullname":"series<ohlc>.states.hover.halo.attributes","title":"attributes","parent":"series<ohlc>-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-states-hover-halo--attributes","fullname":"series<flags>.states.hover.halo.attributes","title":"attributes","parent":"series<flags>-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-states-hover-halo--attributes","fullname":"series<columnrange>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-states-hover-halo--attributes","fullname":"series<column>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>-states-hover-halo--attributes","fullname":"series<scatter>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-states-hover-halo--attributes","fullname":"plotOptions.candlestick.states.hover.halo.attributes","title":"attributes","parent":"plotOptions-candlestick-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-states-hover-halo--attributes","fullname":"series<polygon>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-states-hover-halo--attributes","fullname":"series<area>.states.hover.halo.attributes","title":"attributes","parent":"series<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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-states-hover-halo--attributes","fullname":"series<candlestick>.states.hover.halo.attributes","title":"attributes","parent":"series<candlestick>-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 <code>fill</code>, <code>stroke</code> and <code>stroke-width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-labels--autoRotation","fullname":"xAxis.labels.autoRotation","title":"autoRotation","parent":"xAxis-labels","isParent":false,"returnType":"Array<Number>","defaults":"[-45]","since":"2.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 <code>false</code> to disable rotation, which will cause the labels to word-wrap if possible.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/labels-autorotation-default/\" target=\"_blank\">Default auto rotation of 0 or -45</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/labels-autorotation-0-90/\" target=\"_blank\">custom graded auto rotation</a>","deprecated":false},{"name":"yAxis-labels--autoRotation","fullname":"yAxis.labels.autoRotation","title":"autoRotation","parent":"yAxis-labels","isParent":false,"returnType":"Array<Number>","defaults":"[-45]","since":"2.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 <code>false</code> to disable rotation, which will cause the labels to word-wrap if possible.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/labels-autorotation-default/\" target=\"_blank\">Default auto rotation of 0 or -45</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/labels-autorotation-0-90/\" target=\"_blank\">custom graded auto rotation</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/general/\" target=\"_blank\">Styled tooltip</a>","deprecated":false},{"name":"legend--backgroundColor","fullname":"legend.backgroundColor","title":"backgroundColor","parent":"legend","isParent":false,"returnType":"Color","description":"The background color of the legend.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>","deprecated":false},{"name":"yAxis-crosshair-label--backgroundColor","fullname":"yAxis.crosshair.label.backgroundColor","title":"backgroundColor","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"2.1","description":"The background color for the label. Defaults to the related series color, or <code>gray</code> if that is not available.","demo":"","seeAlso":"","deprecated":false},{"name":"navigator-handles--backgroundColor","fullname":"navigator.handles.backgroundColor","title":"backgroundColor","parent":"navigator-handles","isParent":false,"returnType":"Color","context":"","defaults":"#ebe7e8","values":"","since":"","description":"The fill for the handle.","demo":"","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/backgroundcolor-color/\" target=\"_blank\">Color</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/backgroundcolor-gradient/\" target=\"_blank\">gradient</a>","deprecated":false},{"name":"xAxis-crosshair-label--backgroundColor","fullname":"xAxis.crosshair.label.backgroundColor","title":"backgroundColor","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"2.1","description":"The background color for the label. Defaults to the related series color, or <code>gray</code> if that is not available.","demo":"","seeAlso":"","deprecated":false},{"name":"scrollbar--barBackgroundColor","fullname":"scrollbar.barBackgroundColor","title":"barBackgroundColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#bfc8d1","description":"The background color of the scrollbar itself.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--barBorderColor","fullname":"scrollbar.barBorderColor","title":"barBorderColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#bfc8d1","description":"The color of the scrollbar's border.","deprecated":false},{"name":"scrollbar--barBorderRadius","fullname":"scrollbar.barBorderRadius","title":"barBorderRadius","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"0","description":"The border rounding radius of the bar.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--barBorderWidth","fullname":"scrollbar.barBorderWidth","title":"barBorderWidth","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the bar's border.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>"},{"name":"navigator--baseSeries","fullname":"navigator.baseSeries","title":"baseSeries","parent":"navigator","isParent":false,"returnType":"Mixed","defaults":"0","description":"An integer identifying the index to use for the base series, or a string representing the id of the series."},{"name":"chart-events--beforePrint","fullname":"chart.events.beforePrint","title":"beforePrint","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","since":"2.1.0","description":"Fires before a chart is printed through the context menu item or the <code>Chart.print</code> method. Requires the exporting module.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/events-beforeprint-afterprint/\" target=\"_blank\">Rescale the chart to print</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--borderColor","fullname":"series<ohlc>.dataLabels.borderColor","title":"borderColor","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"navigator-handles--borderColor","fullname":"navigator.handles.borderColor","title":"borderColor","parent":"navigator-handles","isParent":false,"returnType":"Color","context":"","defaults":"#b2b1b6","values":"","since":"","description":"The stroke for the handle border and the stripes inside.","demo":"","seeAlso":"","deprecated":false},{"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 <code>borderWidth</code> to be set.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--borderColor","fullname":"plotOptions.areaspline.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--borderColor","fullname":"series<scatter>.dataLabels.borderColor","title":"borderColor","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--borderColor","fullname":"series<areasplinerange>.dataLabels.borderColor","title":"borderColor","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 <code>null</code>, the border takes the color of the corresponding series or point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/general/\" target=\"_blank\">Styled tooltip</a>","deprecated":false},{"name":"series<arearange>-dataLabels--borderColor","fullname":"series<arearange>.dataLabels.borderColor","title":"borderColor","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"yAxis-crosshair-label--borderColor","fullname":"yAxis.crosshair.label.borderColor","title":"borderColor","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"2.1","description":"The border color for the crosshair label","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels--borderColor","fullname":"plotOptions.column.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair-label--borderColor","fullname":"xAxis.crosshair.label.borderColor","title":"borderColor","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Color","context":"","defaults":"","values":"","since":"2.1","description":"The border color for the crosshair label","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>--borderColor","fullname":"series<columnrange>.borderColor","title":"borderColor","parent":"series<columnrange>","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the border surrounding each column or bar.","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.","deprecated":false},{"name":"plotOptions-spline-dataLabels--borderColor","fullname":"plotOptions.spline.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--borderColor","fullname":"series<areaspline>.dataLabels.borderColor","title":"borderColor","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--borderColor","fullname":"plotOptions.candlestick.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels--borderColor","fullname":"plotOptions.series.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--borderColor","fullname":"plotOptions.flags.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--borderColor","fullname":"series<candlestick>.dataLabels.borderColor","title":"borderColor","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--borderColor","fullname":"series<flags>.dataLabels.borderColor","title":"borderColor","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--borderColor","fullname":"series<area>.dataLabels.borderColor","title":"borderColor","parent":"series<area>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon-dataLabels--borderColor","fullname":"plotOptions.polygon.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--borderColor","fullname":"series<polygon>.dataLabels.borderColor","title":"borderColor","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/border/\" target=\"_blank\">Brown border</a>","deprecated":false},{"name":"series<line>-dataLabels--borderColor","fullname":"series<line>.dataLabels.borderColor","title":"borderColor","parent":"series<line>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataLabels--borderColor","fullname":"plotOptions.area.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>"},{"name":"series<column>--borderColor","fullname":"series<column>.borderColor","title":"borderColor","parent":"series<column>","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the border surrounding each column or bar.","deprecated":false},{"name":"series<columnrange>-dataLabels--borderColor","fullname":"series<columnrange>.dataLabels.borderColor","title":"borderColor","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--borderColor","fullname":"series<spline>.dataLabels.borderColor","title":"borderColor","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--borderColor","fullname":"plotOptions.ohlc.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<column>-dataLabels--borderColor","fullname":"series<column>.dataLabels.borderColor","title":"borderColor","parent":"series<column>-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels--borderColor","fullname":"plotOptions.areasplinerange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataLabels--borderColor","fullname":"plotOptions.line.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"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 <code>borderWidth</code> to be set.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-dataLabels--borderColor","fullname":"plotOptions.arearange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-arearange-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange-dataLabels--borderColor","fullname":"plotOptions.columnrange.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-columnrange-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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.","deprecated":false},{"name":"plotOptions-scatter-dataLabels--borderColor","fullname":"plotOptions.scatter.dataLabels.borderColor","title":"borderColor","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Color","defaults":"undefined","since":"1.1.6","description":"The border color for the data label. Defaults to <code>undefined</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--borderRadius","fullname":"series<candlestick>.dataLabels.borderRadius","title":"borderRadius","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>--borderRadius","fullname":"series<columnrange>.borderRadius","title":"borderRadius","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","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.","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.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--borderRadius","fullname":"plotOptions.ohlc.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--borderRadius","fullname":"plotOptions.candlestick.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--borderRadius","fullname":"series<areaspline>.dataLabels.borderRadius","title":"borderRadius","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/border/\" target=\"_blank\">10px radius</a>","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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.","deprecated":false},{"name":"series<arearange>-dataLabels--borderRadius","fullname":"series<arearange>.dataLabels.borderRadius","title":"borderRadius","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"yAxis-crosshair-label--borderRadius","fullname":"yAxis.crosshair.label.borderRadius","title":"borderRadius","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Number","context":"","defaults":"3","values":"","since":"2.1.10","description":"The border corner radius of the crosshair label.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--borderRadius","fullname":"series<columnrange>.dataLabels.borderRadius","title":"borderRadius","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<line>-dataLabels--borderRadius","fullname":"series<line>.dataLabels.borderRadius","title":"borderRadius","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--borderRadius","fullname":"plotOptions.flags.dataLabels.borderRadius","title":"borderRadius","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--borderRadius","fullname":"series<area>.dataLabels.borderRadius","title":"borderRadius","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--borderRadius","fullname":"series<polygon>.dataLabels.borderRadius","title":"borderRadius","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--borderRadius","fullname":"series<flags>.dataLabels.borderRadius","title":"borderRadius","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--borderRadius","fullname":"series<spline>.dataLabels.borderRadius","title":"borderRadius","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--borderRadius","fullname":"series<areasplinerange>.dataLabels.borderRadius","title":"borderRadius","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<column>-dataLabels--borderRadius","fullname":"series<column>.dataLabels.borderRadius","title":"borderRadius","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair-label--borderRadius","fullname":"xAxis.crosshair.label.borderRadius","title":"borderRadius","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Number","context":"","defaults":"3","values":"","since":"2.1.10","description":"The border corner radius of the crosshair label.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--borderRadius","fullname":"series<ohlc>.dataLabels.borderRadius","title":"borderRadius","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<column>--borderRadius","fullname":"series<column>.borderRadius","title":"borderRadius","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border surrounding each column or bar.","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--borderRadius","fullname":"series<scatter>.dataLabels.borderRadius","title":"borderRadius","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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.","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":"1.1.6","description":"The border radius in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--borderWidth","fullname":"series<scatter>.dataLabels.borderWidth","title":"borderWidth","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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.","deprecated":false},{"name":"series<column>-dataLabels--borderWidth","fullname":"series<column>.dataLabels.borderWidth","title":"borderWidth","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--borderWidth","fullname":"plotOptions.flags.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<line>-dataLabels--borderWidth","fullname":"series<line>.dataLabels.borderWidth","title":"borderWidth","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--borderWidth","fullname":"series<ohlc>.dataLabels.borderWidth","title":"borderWidth","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/general/\" target=\"_blank\">Styled tooltip</a>","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--borderWidth","fullname":"series<columnrange>.dataLabels.borderWidth","title":"borderWidth","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/border/\" target=\"_blank\">2px border</a>","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 <code>borderColor</code> to be set.","deprecated":false},{"name":"series<spline>-dataLabels--borderWidth","fullname":"series<spline>.dataLabels.borderWidth","title":"borderWidth","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--borderWidth","fullname":"plotOptions.ohlc.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"xAxis-crosshair-label--borderWidth","fullname":"xAxis.crosshair.label.borderWidth","title":"borderWidth","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Number","context":"","defaults":"0","values":"","since":"2.1","description":"The border width for the crosshair label.","demo":"","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--borderWidth","fullname":"series<area>.dataLabels.borderWidth","title":"borderWidth","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--borderWidth","fullname":"series<areasplinerange>.dataLabels.borderWidth","title":"borderWidth","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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 <code>borderColor</code> 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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"yAxis-crosshair-label--borderWidth","fullname":"yAxis.crosshair.label.borderWidth","title":"borderWidth","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Number","context":"","defaults":"0","values":"","since":"2.1","description":"The border width for the crosshair label.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--borderWidth","fullname":"series<candlestick>.dataLabels.borderWidth","title":"borderWidth","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--borderWidth","fullname":"series<polygon>.dataLabels.borderWidth","title":"borderWidth","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--borderWidth","fullname":"series<areaspline>.dataLabels.borderWidth","title":"borderWidth","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<column>--borderWidth","fullname":"series<column>.borderWidth","title":"borderWidth","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","deprecated":false},{"name":"series<arearange>-dataLabels--borderWidth","fullname":"series<arearange>.dataLabels.borderWidth","title":"borderWidth","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>","deprecated":false},{"name":"series<flags>-dataLabels--borderWidth","fullname":"series<flags>.dataLabels.borderWidth","title":"borderWidth","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--borderWidth","fullname":"plotOptions.candlestick.dataLabels.borderWidth","title":"borderWidth","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","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":"1.1.6","description":"The border width in pixels for the data label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>--borderWidth","fullname":"series<columnrange>.borderWidth","title":"borderWidth","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"1","description":"The width of the border surrounding each column or bar.","deprecated":false},{"name":"xAxis-breaks--breakSize","fullname":"xAxis.breaks.breakSize","title":"breakSize","parent":"xAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"2.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 <code>datetime</code> axis, a break size of 3600000 would indicate the equivalent of an hour.","deprecated":false},{"name":"yAxis-breaks--breakSize","fullname":"yAxis.breaks.breakSize","title":"breakSize","parent":"yAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"2.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 <code>datetime</code> 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":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/intraday-breaks/\" target=\"_blank\">Break on nights and weekends</a>; <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/axisbreak/break-visualized/\" target=\"_blank\">broken Y axis</a>","deprecated":false},{"name":"xAxis-breaks","fullname":"xAxis.breaks","title":"breaks","parent":"xAxis","isParent":true,"returnType":"Array","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/intraday-breaks/\" target=\"_blank\">Break on nights and weekends</a>; <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/axisbreak/break-visualized/\" target=\"_blank\">broken Y axis</a>","deprecated":false},{"name":"scrollbar--buttonArrowColor","fullname":"scrollbar.buttonArrowColor","title":"buttonArrowColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#666","description":"The color of the small arrow inside the scrollbar buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>"},{"name":"scrollbar--buttonBackgroundColor","fullname":"scrollbar.buttonBackgroundColor","title":"buttonBackgroundColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#ebe7e8","description":"The color of scrollbar buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--buttonBorderColor","fullname":"scrollbar.buttonBorderColor","title":"buttonBorderColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#bbbbbb","description":"The color of the border of the scrollbar buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--buttonBorderRadius","fullname":"scrollbar.buttonBorderRadius","title":"buttonBorderRadius","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the scrollbar buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--buttonBorderWidth","fullname":"scrollbar.buttonBorderWidth","title":"buttonBorderWidth","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"1","description":"The border width of the scrollbar buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>"},{"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":"rangeSelector--buttonSpacing","fullname":"rangeSelector.buttonSpacing","title":"buttonSpacing","parent":"rangeSelector","isParent":false,"returnType":"Number","defaults":"0","description":"The space in pixels between the buttons in the range selector."},{"name":"rangeSelector--buttonTheme","fullname":"rangeSelector.buttonTheme","title":"buttonTheme","parent":"rangeSelector","isParent":false,"returnType":"Object","description":"<p>A collection of attributes for the buttons. The object takes SVG attributes like <code>fill</code>, <code>stroke</code>, <code>stroke-width</code>, as well as <code>style</code>, a collection of CSS properties for the text.</p>\r\n\r\n<p>The object can also be extended with states, so you can set presentational options for <code>hover</code>, <code>select</code> or <code>disabled</code> button states.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>.","deprecated":false},{"name":"exporting-buttons","fullname":"exporting.buttons","title":"buttons","parent":"exporting","isParent":true,"description":"Options for the export related buttons, print and export."},{"name":"rangeSelector--buttons","fullname":"rangeSelector.buttons","title":"buttons","parent":"rangeSelector","isParent":false,"returnType":"Array","description":"An array of configuration objects for the buttons. The individual options for each item are:  \r\n\r\n<dl>\r\n \t<dt><code>type</code></dt>\r\n \t<dd>Defines the timespan, can be one of 'millisecond', 'second', 'minute', 'day', 'week',  \t\t'month', 'ytd' (year to date), 'year' and 'all'.</dd>\r\n\r\n \t<dt><code>count</code></dt>\r\n \t<dd>Defines how many units of the defined type to use.</dd>\r\n\r\n \t<dt><code>dataGrouping</code></dt>\r\n \t<dd>A custom data grouping definition for the button.</dd>\r\n\r\n \t<dt><code>text</code></dt>\r\n \t<dd>The text for the button itself</dd>\r\n \r\n</dl>\r\n\r\n\r\nDefaults to \r\n<pre>buttons: [{\r\n\ttype: 'month',\r\n\tcount: 1,\r\n\ttext: '1m'\r\n}, {\r\n\ttype: 'month',\r\n\tcount: 3,\r\n\ttext: '3m'\r\n}, {\r\n\ttype: 'month',\r\n\tcount: 6,\r\n\ttext: '6m'\r\n}, {\r\n\ttype: 'ytd',\r\n\ttext: 'YTD'\r\n}, {\r\n\ttype: 'year',\r\n\tcount: 1,\r\n\ttext: '1y'\r\n}, {\r\n\ttype: 'all',\r\n\ttext: 'All'\r\n}]</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/datagrouping/\" target=\"_blank\">Data grouping by buttons</a>","deprecated":false},{"name":"plotOptions-candlestick","fullname":"plotOptions.candlestick","title":"candlestick","parent":"plotOptions","isParent":true,"returnType":"","since":"","description":"","demo":"","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":" <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/floor-ceiling/\" target=\"_blank\">Floor and ceiling</a>","seeAlso":"<a href=\"#xAxis.floor\">floor</a>","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":" <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/floor-ceiling/\" target=\"_blank\">Floor and ceiling</a>","seeAlso":"<a href=\"#xAxis.floor\">floor</a>","deprecated":false},{"name":"series<candlestick>-tooltip--changeDecimals","fullname":"series<candlestick>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<column>-tooltip--changeDecimals","fullname":"series<column>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<column>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-candlestick-tooltip--changeDecimals","fullname":"plotOptions.candlestick.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-spline-tooltip--changeDecimals","fullname":"plotOptions.spline.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<columnrange>-tooltip--changeDecimals","fullname":"series<columnrange>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-line-tooltip--changeDecimals","fullname":"plotOptions.line.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-ohlc-tooltip--changeDecimals","fullname":"plotOptions.ohlc.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-arearange-tooltip--changeDecimals","fullname":"plotOptions.arearange.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<line>-tooltip--changeDecimals","fullname":"series<line>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<line>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<areaspline>-tooltip--changeDecimals","fullname":"series<areaspline>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<ohlc>-tooltip--changeDecimals","fullname":"series<ohlc>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<arearange>-tooltip--changeDecimals","fullname":"series<arearange>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-area-tooltip--changeDecimals","fullname":"plotOptions.area.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-series-tooltip--changeDecimals","fullname":"plotOptions.series.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<area>-tooltip--changeDecimals","fullname":"series<area>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<area>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"tooltip--changeDecimals","fullname":"tooltip.changeDecimals","title":"changeDecimals","parent":"tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<areasplinerange>-tooltip--changeDecimals","fullname":"series<areasplinerange>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-areaspline-tooltip--changeDecimals","fullname":"plotOptions.areaspline.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-areasplinerange-tooltip--changeDecimals","fullname":"plotOptions.areasplinerange.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"series<spline>-tooltip--changeDecimals","fullname":"series<spline>.tooltip.changeDecimals","title":"changeDecimals","parent":"series<spline>-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-column-tooltip--changeDecimals","fullname":"plotOptions.column.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"name":"plotOptions-columnrange-tooltip--changeDecimals","fullname":"plotOptions.columnrange.tooltip.changeDecimals","title":"changeDecimals","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Number","defaults":"","since":"1.0.1","description":"How many decimals to show for the <code>point.change</code> value when the <code>series.compare</code> option is set. This is overridable in each series' tooltip options object. The default is to preserve all decimals."},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/chartoptions-data-labels/\" target=\"_blank\">Added data labels</a>.","deprecated":false},{"name":"plotOptions-candlestick-events--checkboxClick","fullname":"plotOptions.candlestick.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<polygon>-events--checkboxClick","fullname":"series<polygon>.events.checkboxClick","title":"checkboxClick","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<areaspline>-events--checkboxClick","fullname":"series<areaspline>.events.checkboxClick","title":"checkboxClick","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-arearange-events--checkboxClick","fullname":"plotOptions.arearange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<ohlc>-events--checkboxClick","fullname":"series<ohlc>.events.checkboxClick","title":"checkboxClick","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-columnrange-events--checkboxClick","fullname":"plotOptions.columnrange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-ohlc-events--checkboxClick","fullname":"plotOptions.ohlc.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<areasplinerange>-events--checkboxClick","fullname":"series<areasplinerange>.events.checkboxClick","title":"checkboxClick","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<scatter>-events--checkboxClick","fullname":"series<scatter>.events.checkboxClick","title":"checkboxClick","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<area>-events--checkboxClick","fullname":"series<area>.events.checkboxClick","title":"checkboxClick","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<flags>-events--checkboxClick","fullname":"series<flags>.events.checkboxClick","title":"checkboxClick","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-areasplinerange-events--checkboxClick","fullname":"plotOptions.areasplinerange.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-line-events--checkboxClick","fullname":"plotOptions.line.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-polygon-events--checkboxClick","fullname":"plotOptions.polygon.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-areaspline-events--checkboxClick","fullname":"plotOptions.areaspline.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-area-events--checkboxClick","fullname":"plotOptions.area.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<line>-events--checkboxClick","fullname":"series<line>.events.checkboxClick","title":"checkboxClick","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-scatter-events--checkboxClick","fullname":"plotOptions.scatter.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-series-events--checkboxClick","fullname":"plotOptions.series.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<spline>-events--checkboxClick","fullname":"series<spline>.events.checkboxClick","title":"checkboxClick","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-column-events--checkboxClick","fullname":"plotOptions.column.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-spline-events--checkboxClick","fullname":"plotOptions.spline.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<candlestick>-events--checkboxClick","fullname":"series<candlestick>.events.checkboxClick","title":"checkboxClick","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<arearange>-events--checkboxClick","fullname":"series<arearange>.events.checkboxClick","title":"checkboxClick","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<column>-events--checkboxClick","fullname":"series<column>.events.checkboxClick","title":"checkboxClick","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"plotOptions-flags-events--checkboxClick","fullname":"plotOptions.flags.events.checkboxClick","title":"checkboxClick","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"series<columnrange>-events--checkboxClick","fullname":"series<columnrange>.events.checkboxClick","title":"checkboxClick","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the checkbox next to the series' name in the legend is clicked. One parameter, <code>event</code>, is passed to the function. The state of the checkbox is found by <code>event.checked</code>. The checked item is found by <code>event.item</code>. Return <code>false</code> to prevent the default action which is to toggle the select state of the series.","deprecated":false},{"name":"chart--className","fullname":"chart.className","title":"className","parent":"chart","isParent":false,"returnType":"String","defaults":" ","description":"A CSS class name to apply to the charts container <code>div</code>, allowing unique CSS styling\r for each chart.","deprecated":false},{"name":"chart-events--click","fullname":"chart.events.click","title":"click","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","description":"<p>Fires when clicking on the plot background. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.</p> <p>Information on the clicked spot can be found through <code>event.xAxis</code> and  <code>event.yAxis</code>, which are arrays containing the axes of each dimension and each axis' value at the clicked spot. The primary axes are <code>event.xAxis[0]</code> and <code>event.yAxis[0]</code>. Remember the unit of a datetime axis is milliseconds since 1970-01-01 00:00:00.</p>\r\n<pre>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}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/events-click/\" target=\"_blank\">Alert coordinates on click</a>. <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/events-container/\" target=\"_blank\">Alternatively, attach event to container</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<scatter>-events--click","fullname":"series<scatter>.events.click","title":"click","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<polygon>-events--click","fullname":"series<polygon>.events.click","title":"click","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<ohlc>-events--click","fullname":"series<ohlc>.events.click","title":"click","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<area>-point-events--click","fullname":"series<area>.point.events.click","title":"click","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<areasplinerange>-point-events--click","fullname":"series<areasplinerange>.point.events.click","title":"click","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<flags>-point-events--click","fullname":"series<flags>.point.events.click","title":"click","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<polygon>-point-events--click","fullname":"series<polygon>.point.events.click","title":"click","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<areasplinerange>-data-events--click","fullname":"series<areasplinerange>.data.events.click","title":"click","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<ohlc>-point-events--click","fullname":"series<ohlc>.point.events.click","title":"click","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<flags>-events--click","fullname":"series<flags>.events.click","title":"click","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<areasplinerange>-events--click","fullname":"series<areasplinerange>.events.click","title":"click","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<columnrange>-events--click","fullname":"series<columnrange>.events.click","title":"click","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<columnrange>-point-events--click","fullname":"series<columnrange>.point.events.click","title":"click","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<spline>-data-events--click","fullname":"series<spline>.data.events.click","title":"click","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<columnrange>-data-events--click","fullname":"series<columnrange>.data.events.click","title":"click","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<arearange>-data-events--click","fullname":"series<arearange>.data.events.click","title":"click","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"plotOptions-ohlc-events--click","fullname":"plotOptions.ohlc.events.click","title":"click","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<areaspline>-events--click","fullname":"series<areaspline>.events.click","title":"click","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<spline>-events--click","fullname":"series<spline>.events.click","title":"click","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<column>-data-events--click","fullname":"series<column>.data.events.click","title":"click","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<spline>-point-events--click","fullname":"series<spline>.point.events.click","title":"click","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<column>-point-events--click","fullname":"series<column>.point.events.click","title":"click","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"plotOptions-flags-point-events--click","fullname":"plotOptions.flags.point.events.click","title":"click","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"plotOptions-flags-events--click","fullname":"plotOptions.flags.events.click","title":"click","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"plotOptions-candlestick-point-events--click","fullname":"plotOptions.candlestick.point.events.click","title":"click","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<scatter>-point-events--click","fullname":"series<scatter>.point.events.click","title":"click","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<column>-events--click","fullname":"series<column>.events.click","title":"click","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<line>-events--click","fullname":"series<line>.events.click","title":"click","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<candlestick>-events--click","fullname":"series<candlestick>.events.click","title":"click","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<flags>-data-events--click","fullname":"series<flags>.data.events.click","title":"click","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<polygon>-data-events--click","fullname":"series<polygon>.data.events.click","title":"click","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<candlestick>-data-events--click","fullname":"series<candlestick>.data.events.click","title":"click","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<areaspline>-data-events--click","fullname":"series<areaspline>.data.events.click","title":"click","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"plotOptions-ohlc-point-events--click","fullname":"plotOptions.ohlc.point.events.click","title":"click","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<area>-data-events--click","fullname":"series<area>.data.events.click","title":"click","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<ohlc>-data-events--click","fullname":"series<ohlc>.data.events.click","title":"click","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<scatter>-data-events--click","fullname":"series<scatter>.data.events.click","title":"click","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<areaspline>-point-events--click","fullname":"series<areaspline>.point.events.click","title":"click","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<arearange>-point-events--click","fullname":"series<arearange>.point.events.click","title":"click","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<arearange>-events--click","fullname":"series<arearange>.events.click","title":"click","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<candlestick>-point-events--click","fullname":"series<candlestick>.point.events.click","title":"click","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","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, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<line>-point-events--click","fullname":"series<line>.point.events.click","title":"click","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"series<area>-events--click","fullname":"series<area>.events.click","title":"click","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<line>-data-events--click","fullname":"series<line>.data.events.click","title":"click","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"<p></p>Fires when a point is clicked. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.<p></p> <p>If the <code>series.allowPointSelect</code> option is true, the default action for the point's click event is to toggle the point's select state. Returning <code>false</code> cancels this action.</p>","deprecated":false},{"name":"plotOptions-candlestick-events--click","fullname":"plotOptions.candlestick.events.click","title":"click","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is clicked. One parameter, <code>event</code>, is passed 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, <code>event.point</code> holds a pointer to the nearest point on the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-events-click/\" target=\"_blank\">Alert click info</a>","deprecated":false},{"name":"series<ohlc>-data--close","fullname":"series<ohlc>.data.close","title":"close","parent":"series<ohlc>-data","isParent":false,"returnType":"Number","description":"The closing value of each data point."},{"name":"series<candlestick>-data--close","fullname":"series<candlestick>.data.close","title":"close","parent":"series<candlestick>-data","isParent":false,"returnType":"Number","description":"The closing value of each data point."},{"name":"plotOptions-candlestick-zones--color","fullname":"plotOptions.candlestick.zones.color","title":"color","parent":"plotOptions-candlestick-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","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 <code>null</code>.","deprecated":false},{"name":"yAxis-plotBands--color","fullname":"yAxis.plotBands.color","title":"color","parent":"yAxis-plotBands","isParent":false,"returnType":"Color","defaults":"null","description":"The color of the plot band.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"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 <code>null</code>.","deprecated":false},{"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 <code>null</code>.","deprecated":false},{"name":"series<areaspline>-data--color","fullname":"series<areaspline>.data.color","title":"color","parent":"series<areaspline>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"plotOptions-arearange--color","fullname":"plotOptions.arearange.color","title":"color","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<polygon>-data--color","fullname":"series<polygon>.data.color","title":"color","parent":"series<polygon>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<arearange>-data--color","fullname":"series<arearange>.data.color","title":"color","parent":"series<arearange>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"plotOptions-series--color","fullname":"plotOptions.series.color","title":"color","parent":"plotOptions-series","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"xAxis-plotLines--color","fullname":"xAxis.plotLines.color","title":"color","parent":"xAxis-plotLines","isParent":false,"returnType":"Color","defaults":"null","description":"The color of the line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<areasplinerange>-zones--color","fullname":"series<areasplinerange>.zones.color","title":"color","parent":"series<areasplinerange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<area>-zones--color","fullname":"series<area>.zones.color","title":"color","parent":"series<area>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<candlestick>-data--color","fullname":"series<candlestick>.data.color","title":"color","parent":"series<candlestick>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"xAxis-plotBands--color","fullname":"xAxis.plotBands.color","title":"color","parent":"xAxis-plotBands","isParent":false,"returnType":"Color","defaults":"null","description":"The color of the plot band.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"name":"plotOptions-scatter--color","fullname":"plotOptions.scatter.color","title":"color","parent":"plotOptions-scatter","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<areaspline>--color","fullname":"series<areaspline>.color","title":"color","parent":"series<areaspline>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<columnrange>-data--color","fullname":"series<columnrange>.data.color","title":"color","parent":"series<columnrange>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the 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 <code>null</code>.","deprecated":false},{"name":"series<scatter>-zones--color","fullname":"series<scatter>.zones.color","title":"color","parent":"series<scatter>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--color","fullname":"plotOptions.flags.dataLabels.color","title":"color","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<columnrange>-dataLabels--color","fullname":"series<columnrange>.dataLabels.color","title":"color","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<arearange>-zones--color","fullname":"series<arearange>.zones.color","title":"color","parent":"series<arearange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-line--color","fullname":"plotOptions.line.color","title":"color","parent":"plotOptions-line","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<column>-dataLabels--color","fullname":"series<column>.dataLabels.color","title":"color","parent":"series<column>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"plotOptions-flags--color","fullname":"plotOptions.flags.color","title":"color","parent":"plotOptions-flags","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<ohlc>--color","fullname":"series<ohlc>.color","title":"color","parent":"series<ohlc>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-column--color","fullname":"plotOptions.column.color","title":"color","parent":"plotOptions-column","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<line>-dataLabels--color","fullname":"series<line>.dataLabels.color","title":"color","parent":"series<line>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"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 <code>null</code>.","deprecated":false},{"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 <code>null</code>.","deprecated":false},{"name":"series<spline>-dataLabels--color","fullname":"series<spline>.dataLabels.color","title":"color","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<line>--color","fullname":"series<line>.color","title":"color","parent":"series<line>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"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 <code>null</code>.","deprecated":false},{"name":"series<scatter>--color","fullname":"series<scatter>.color","title":"color","parent":"series<scatter>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<candlestick>--color","fullname":"series<candlestick>.color","title":"color","parent":"series<candlestick>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-arearange-zones--color","fullname":"plotOptions.arearange.zones.color","title":"color","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<line>-data--color","fullname":"series<line>.data.color","title":"color","parent":"series<line>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<arearange>-dataLabels--color","fullname":"series<arearange>.dataLabels.color","title":"color","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<columnrange>--color","fullname":"series<columnrange>.color","title":"color","parent":"series<columnrange>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<spline>-zones--color","fullname":"series<spline>.zones.color","title":"color","parent":"series<spline>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<areaspline>-dataLabels--color","fullname":"series<areaspline>.dataLabels.color","title":"color","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"plotOptions-area-zones--color","fullname":"plotOptions.area.zones.color","title":"color","parent":"plotOptions-area-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-columnrange-zones--color","fullname":"plotOptions.columnrange.zones.color","title":"color","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<area>-data--color","fullname":"series<area>.data.color","title":"color","parent":"series<area>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"plotOptions-spline-zones--color","fullname":"plotOptions.spline.zones.color","title":"color","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<spline>-data--color","fullname":"series<spline>.data.color","title":"color","parent":"series<spline>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<column>--color","fullname":"series<column>.color","title":"color","parent":"series<column>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-line-zones--color","fullname":"plotOptions.line.zones.color","title":"color","parent":"plotOptions-line-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-spline--color","fullname":"plotOptions.spline.color","title":"color","parent":"plotOptions-spline","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<flags>--color","fullname":"series<flags>.color","title":"color","parent":"series<flags>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<columnrange>-zones--color","fullname":"series<columnrange>.zones.color","title":"color","parent":"series<columnrange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-areasplinerange--color","fullname":"plotOptions.areasplinerange.color","title":"color","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-ohlc--color","fullname":"plotOptions.ohlc.color","title":"color","parent":"plotOptions-ohlc","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-ohlc-zones--color","fullname":"plotOptions.ohlc.zones.color","title":"color","parent":"plotOptions-ohlc-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-area--color","fullname":"plotOptions.area.color","title":"color","parent":"plotOptions-area","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"yAxis-crosshair--color","fullname":"yAxis.crosshair.color","title":"color","parent":"yAxis-crosshair","isParent":false,"returnType":"Color","defaults":"#C0C0C0","since":"2.1","description":"The color of the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-customized/\" target=\"_blank\">Customized crosshairs</a>.","deprecated":false},{"name":"series<areasplinerange>-data--color","fullname":"series<areasplinerange>.data.color","title":"color","parent":"series<areasplinerange>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--color","fullname":"plotOptions.candlestick.dataLabels.color","title":"color","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"plotOptions-areaspline-zones--color","fullname":"plotOptions.areaspline.zones.color","title":"color","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","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 <code>null</code>.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--color","fullname":"plotOptions.ohlc.dataLabels.color","title":"color","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","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 <code>null</code>.","deprecated":false},{"name":"series<scatter>-dataLabels--color","fullname":"series<scatter>.dataLabels.color","title":"color","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"plotOptions-column-zones--color","fullname":"plotOptions.column.zones.color","title":"color","parent":"plotOptions-column-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","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 <code>null</code>.","deprecated":false},{"name":"plotOptions-columnrange--color","fullname":"plotOptions.columnrange.color","title":"color","parent":"plotOptions-columnrange","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<candlestick>-zones--color","fullname":"series<candlestick>.zones.color","title":"color","parent":"series<candlestick>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<arearange>--color","fullname":"series<arearange>.color","title":"color","parent":"series<arearange>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-series-zones--color","fullname":"plotOptions.series.zones.color","title":"color","parent":"plotOptions-series-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--color","fullname":"series<areasplinerange>.dataLabels.color","title":"color","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"plotOptions-flags-zones--color","fullname":"plotOptions.flags.zones.color","title":"color","parent":"plotOptions-flags-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-candlestick--color","fullname":"plotOptions.candlestick.color","title":"color","parent":"plotOptions-candlestick","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<ohlc>-data--color","fullname":"series<ohlc>.data.color","title":"color","parent":"series<ohlc>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<flags>-dataLabels--color","fullname":"series<flags>.dataLabels.color","title":"color","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<candlestick>-dataLabels--color","fullname":"series<candlestick>.dataLabels.color","title":"color","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<column>-data--color","fullname":"series<column>.data.color","title":"color","parent":"series<column>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<area>--color","fullname":"series<area>.color","title":"color","parent":"series<area>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-polygon--color","fullname":"plotOptions.polygon.color","title":"color","parent":"plotOptions-polygon","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"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 <code>null</code>.","deprecated":false},{"name":"series<flags>-data--color","fullname":"series<flags>.data.color","title":"color","parent":"series<flags>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<ohlc>-zones--color","fullname":"series<ohlc>.zones.color","title":"color","parent":"series<ohlc>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-scatter-zones--color","fullname":"plotOptions.scatter.zones.color","title":"color","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-polygon-zones--color","fullname":"plotOptions.polygon.zones.color","title":"color","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<area>-dataLabels--color","fullname":"series<area>.dataLabels.color","title":"color","parent":"series<area>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"yAxis-plotLines--color","fullname":"yAxis.plotLines.color","title":"color","parent":"yAxis-plotLines","isParent":false,"returnType":"Color","defaults":"null","description":"The color of the line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<spline>--color","fullname":"series<spline>.color","title":"color","parent":"series<spline>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<scatter>-data--color","fullname":"series<scatter>.data.color","title":"color","parent":"series<scatter>-data","isParent":false,"returnType":"Color","defaults":"undefined","description":"Individual color for the point.","deprecated":false},{"name":"series<line>-zones--color","fullname":"series<line>.zones.color","title":"color","parent":"series<line>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<flags>-zones--color","fullname":"series<flags>.zones.color","title":"color","parent":"series<flags>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<column>-zones--color","fullname":"series<column>.zones.color","title":"color","parent":"series<column>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"plotOptions-areaspline--color","fullname":"plotOptions.areaspline.color","title":"color","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<polygon>--color","fullname":"series<polygon>.color","title":"color","parent":"series<polygon>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"series<areaspline>-zones--color","fullname":"series<areaspline>.zones.color","title":"color","parent":"series<areaspline>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<polygon>-zones--color","fullname":"series<polygon>.zones.color","title":"color","parent":"series<polygon>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"xAxis-crosshair--color","fullname":"xAxis.crosshair.color","title":"color","parent":"xAxis-crosshair","isParent":false,"returnType":"Color","defaults":"#C0C0C0","since":"2.1","description":"The color of the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-customized/\" target=\"_blank\">Customized crosshairs</a>.","deprecated":false},{"name":"plotOptions-areasplinerange-zones--color","fullname":"plotOptions.areasplinerange.zones.color","title":"color","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the color of the series.","seeAlso":"<a href=\"#plotOption.series.color\">series color</a>","deprecated":false},{"name":"series<polygon>-dataLabels--color","fullname":"series<polygon>.dataLabels.color","title":"color","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<ohlc>-dataLabels--color","fullname":"series<ohlc>.dataLabels.color","title":"color","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Color","description":"The text color for the data labels. Defaults to <code>null</code>.","deprecated":false},{"name":"series<areasplinerange>--color","fullname":"series<areasplinerange>.color","title":"color","parent":"series<areasplinerange>","isParent":false,"returnType":"Color","defaults":"","description":"The main color of 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  <code>options.colors</code> array."},{"name":"plotOptions-column--colorByPoint","fullname":"plotOptions.column.colorByPoint","title":"colorByPoint","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"series<ohlc>--colorByPoint","fullname":"series<ohlc>.colorByPoint","title":"colorByPoint","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"plotOptions-ohlc--colorByPoint","fullname":"plotOptions.ohlc.colorByPoint","title":"colorByPoint","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"series<columnrange>--colorByPoint","fullname":"series<columnrange>.colorByPoint","title":"colorByPoint","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"plotOptions-columnrange--colorByPoint","fullname":"plotOptions.columnrange.colorByPoint","title":"colorByPoint","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"series<column>--colorByPoint","fullname":"series<column>.colorByPoint","title":"colorByPoint","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","description":"When using automatic point colors pulled from the <code>options.colors</code>\r collection, this option determines whether the chart should receive \r one color per series or one color per point.","seeAlso":"<a href=\"#plotOptions.column.colors\">series colors</a>","deprecated":false},{"name":"plotOptions-columnrange--colors","fullname":"plotOptions.columnrange.colors","title":"colors","parent":"plotOptions-columnrange","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>--colors","fullname":"series<ohlc>.colors","title":"colors","parent":"series<ohlc>","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick--colors","fullname":"plotOptions.candlestick.colors","title":"colors","parent":"plotOptions-candlestick","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>--colors","fullname":"series<column>.colors","title":"colors","parent":"series<column>","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>--colors","fullname":"series<candlestick>.colors","title":"colors","parent":"series<candlestick>","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>--colors","fullname":"series<flags>.colors","title":"colors","parent":"series<flags>","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column--colors","fullname":"plotOptions.column.colors","title":"colors","parent":"plotOptions-column","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags--colors","fullname":"plotOptions.flags.colors","title":"colors","parent":"plotOptions-flags","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"colors","fullname":"colors","title":"colors","isParent":true,"returnType":"Array<Color>","description":"<p>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<pre>colors: ['#7cb5ec', '#434348', '#90ed7d', '#f7a35c', '#8085e9', \r\n   '#f15c80', '#e4d354', '#8085e8', '#8d4653', '#91e8e1']</pre>\r\n\r\nDefault colors can also be set on a series or series.type basis, see <a href=\"#plotOptions.column.colors\">column.colors</a>.\r\n</p>\r\n\r\n<h3>Legacy</h3>\r\n<p>In Highstock 1.3.x, the default colors were:\r\n<pre>colors: ['#2f7ed8', '#0d233a', '#8bbc21', '#910000', '#1aadce', \r\n   '#492970', '#f28f43', '#77a1e5', '#c42525', '#a6c96a']</pre>\r\n</p>\r\n\r\n<p>Prior to 1.3, the default colors were:\r\n<pre>colors: ['#4572A7', '#AA4643', '#89A54E', '#80699B', '#3D96AE', \r\n   '#DB843D', '#92A8CD', '#A47D7C', '#B5CA92']</pre></p>","deprecated":false},{"name":"series<columnrange>--colors","fullname":"series<columnrange>.colors","title":"colors","parent":"series<columnrange>","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc--colors","fullname":"plotOptions.ohlc.colors","title":"colors","parent":"plotOptions-ohlc","isParent":false,"returnType":"Array<Color>","defaults":"","values":"","since":"1.3","description":"A series specific or series type specific color set to apply instead of the global <a href=\"#colors\">colors</a> when <a href=\"#plotOptions.column.colorByPoint\">colorByPoint</a> is true.","demo":"","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":"1.2.0","description":"The column range is a cartesian series type with higher and lower Y values along an X axis. Requires <code>highcharts-more.js</code>. To display horizontal bars, set <a href=\"#chart.inverted\">chart.inverted</a> to <code>true</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/columnrange/\" target=\"_blank\">Inverted column range</a>","deprecated":false},{"name":"series<area>--compare","fullname":"series<area>.compare","title":"compare","parent":"series<area>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<spline>--compare","fullname":"series<spline>.compare","title":"compare","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-polygon--compare","fullname":"plotOptions.polygon.compare","title":"compare","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-line--compare","fullname":"plotOptions.line.compare","title":"compare","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-series--compare","fullname":"plotOptions.series.compare","title":"compare","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<arearange>--compare","fullname":"series<arearange>.compare","title":"compare","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<areasplinerange>--compare","fullname":"series<areasplinerange>.compare","title":"compare","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-areasplinerange--compare","fullname":"plotOptions.areasplinerange.compare","title":"compare","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-scatter--compare","fullname":"plotOptions.scatter.compare","title":"compare","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-spline--compare","fullname":"plotOptions.spline.compare","title":"compare","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<column>--compare","fullname":"series<column>.compare","title":"compare","parent":"series<column>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<polygon>--compare","fullname":"series<polygon>.compare","title":"compare","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-area--compare","fullname":"plotOptions.area.compare","title":"compare","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-areaspline--compare","fullname":"plotOptions.areaspline.compare","title":"compare","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<ohlc>--compare","fullname":"series<ohlc>.compare","title":"compare","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-column--compare","fullname":"plotOptions.column.compare","title":"compare","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<scatter>--compare","fullname":"series<scatter>.compare","title":"compare","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<columnrange>--compare","fullname":"series<columnrange>.compare","title":"compare","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-ohlc--compare","fullname":"plotOptions.ohlc.compare","title":"compare","parent":"plotOptions-ohlc","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<line>--compare","fullname":"series<line>.compare","title":"compare","parent":"series<line>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-columnrange--compare","fullname":"plotOptions.columnrange.compare","title":"compare","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<areaspline>--compare","fullname":"series<areaspline>.compare","title":"compare","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"plotOptions-arearange--compare","fullname":"plotOptions.arearange.compare","title":"compare","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"undefined","since":"1.0.1","description":"Compare the values of the series against the first non-null, non-zero value in the visible range. The y axis will\r\n show percentage or absolute change depending on whether <code>compare</code> is set to <code>\"percent\"</code>\r\n or <code>\"value\"</code>. When this is applied to multiple series, it allows comparing the development\r\n of the series against each other.","demo":"Setting compare to \r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-percent/\" target=\"_blank\">\r\n\t\t\t\tpercent</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-compare-value/\" target=\"_blank\">\r\n\t\t\t\tvalue</a>.","seeAlso":"<a href=\"#Axis.setCompare()\">Axis.setCompare()</a>","deprecated":false},{"name":"series<arearange>--connectNulls","fullname":"series<arearange>.connectNulls","title":"connectNulls","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"series<areasplinerange>--connectNulls","fullname":"series<areasplinerange>.connectNulls","title":"connectNulls","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"series<line>--connectNulls","fullname":"series<line>.connectNulls","title":"connectNulls","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"series<areaspline>--connectNulls","fullname":"series<areaspline>.connectNulls","title":"connectNulls","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-arearange--connectNulls","fullname":"plotOptions.arearange.connectNulls","title":"connectNulls","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-areaspline--connectNulls","fullname":"plotOptions.areaspline.connectNulls","title":"connectNulls","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"series<area>--connectNulls","fullname":"series<area>.connectNulls","title":"connectNulls","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-area--connectNulls","fullname":"plotOptions.area.connectNulls","title":"connectNulls","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"series<spline>--connectNulls","fullname":"series<spline>.connectNulls","title":"connectNulls","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-line--connectNulls","fullname":"plotOptions.line.connectNulls","title":"connectNulls","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-spline--connectNulls","fullname":"plotOptions.spline.connectNulls","title":"connectNulls","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-series--connectNulls","fullname":"plotOptions.series.connectNulls","title":"connectNulls","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"name":"plotOptions-areasplinerange--connectNulls","fullname":"plotOptions.areasplinerange.connectNulls","title":"connectNulls","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"","description":"Whether to draw a line between points on either side of a null point, or render a gap between them."},{"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":"1.3","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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--crop","fullname":"series<candlestick>.dataLabels.crop","title":"crop","parent":"series<candlestick>-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--crop","fullname":"series<areasplinerange>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataLabels--crop","fullname":"series<line>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--crop","fullname":"series<columnrange>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--crop","fullname":"series<spline>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--crop","fullname":"series<arearange>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--crop","fullname":"series<polygon>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--crop","fullname":"plotOptions.candlestick.dataLabels.crop","title":"crop","parent":"plotOptions-candlestick-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--crop","fullname":"series<ohlc>.dataLabels.crop","title":"crop","parent":"series<ohlc>-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--crop","fullname":"plotOptions.flags.dataLabels.crop","title":"crop","parent":"plotOptions-flags-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--crop","fullname":"series<areaspline>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--crop","fullname":"series<area>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--crop","fullname":"series<flags>.dataLabels.crop","title":"crop","parent":"series<flags>-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--crop","fullname":"series<scatter>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-dataLabels--crop","fullname":"series<column>.dataLabels.crop","title":"crop","parent":"series<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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--crop","fullname":"plotOptions.ohlc.dataLabels.crop","title":"crop","parent":"plotOptions-ohlc-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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> 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 <a href=\"#plotOptions.series.dataLabels.overflow\">overflow</a> option.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick--cropThreshold","fullname":"plotOptions.candlestick.cropThreshold","title":"cropThreshold","parent":"plotOptions-candlestick","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","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<areaspline>--cropThreshold","fullname":"series<areaspline>.cropThreshold","title":"cropThreshold","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"300","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<scatter>--cropThreshold","fullname":"series<scatter>.cropThreshold","title":"cropThreshold","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"300","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","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","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<column>--cropThreshold","fullname":"series<column>.cropThreshold","title":"cropThreshold","parent":"series<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":"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<ohlc>--cropThreshold","fullname":"series<ohlc>.cropThreshold","title":"cropThreshold","parent":"series<ohlc>","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-series--cropThreshold","fullname":"plotOptions.series.cropThreshold","title":"cropThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"300","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-ohlc--cropThreshold","fullname":"plotOptions.ohlc.cropThreshold","title":"cropThreshold","parent":"plotOptions-ohlc","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<line>--cropThreshold","fullname":"series<line>.cropThreshold","title":"cropThreshold","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"300","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","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","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","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<columnrange>--cropThreshold","fullname":"series<columnrange>.cropThreshold","title":"cropThreshold","parent":"series<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<candlestick>--cropThreshold","fullname":"series<candlestick>.cropThreshold","title":"cropThreshold","parent":"series<candlestick>","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<flags>--cropThreshold","fullname":"series<flags>.cropThreshold","title":"cropThreshold","parent":"series<flags>","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<polygon>--cropThreshold","fullname":"series<polygon>.cropThreshold","title":"cropThreshold","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"300","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-spline--cropThreshold","fullname":"plotOptions.spline.cropThreshold","title":"cropThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"300","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<spline>--cropThreshold","fullname":"series<spline>.cropThreshold","title":"cropThreshold","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"300","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-flags--cropThreshold","fullname":"plotOptions.flags.cropThreshold","title":"cropThreshold","parent":"plotOptions-flags","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<arearange>--cropThreshold","fullname":"series<arearange>.cropThreshold","title":"cropThreshold","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"300","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","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<areasplinerange>--cropThreshold","fullname":"series<areasplinerange>.cropThreshold","title":"cropThreshold","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"300","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<area>--cropThreshold","fullname":"series<area>.cropThreshold","title":"cropThreshold","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"300","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","defaults":"false","since":"2.1","description":"Configure a crosshair that follows either the mouse pointer or the hovered point. By default, the crosshair is enabled on the X axis and disabled on Y axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/crosshairs-xy/\" target=\"_blank\">Crosshair on both axes</a>","deprecated":false},{"name":"xAxis-crosshair","fullname":"xAxis.crosshair","title":"crosshair","parent":"xAxis","isParent":true,"returnType":"Boolean|Object","defaults":"false","since":"2.1","description":"Configure a crosshair that follows either the mouse pointer or the hovered point. By default, the crosshair is enabled on the X axis and disabled on Y axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/crosshairs-xy/\" target=\"_blank\">Crosshair on both axes</a>","deprecated":false},{"name":"tooltip--crosshairs","fullname":"tooltip.crosshairs","title":"crosshairs","parent":"tooltip","isParent":false,"returnType":"Mixed","defaults":"true","description":"Since 2.1, the crosshair definitions are moved to the Axis object in order for a better separation from the tooltip. See <a href=\"#xAxis.crosshair\">xAxis.crosshair<a>.","deprecated":false},{"name":"plotOptions-candlestick--cursor","fullname":"plotOptions.candlestick.cursor","title":"cursor","parent":"plotOptions-candlestick","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-columnrange--cursor","fullname":"plotOptions.columnrange.cursor","title":"cursor","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-scatter--cursor","fullname":"plotOptions.scatter.cursor","title":"cursor","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<candlestick>--cursor","fullname":"series<candlestick>.cursor","title":"cursor","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<line>--cursor","fullname":"series<line>.cursor","title":"cursor","parent":"series<line>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<ohlc>--cursor","fullname":"series<ohlc>.cursor","title":"cursor","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-line--cursor","fullname":"plotOptions.line.cursor","title":"cursor","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-areaspline--cursor","fullname":"plotOptions.areaspline.cursor","title":"cursor","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<scatter>--cursor","fullname":"series<scatter>.cursor","title":"cursor","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-ohlc--cursor","fullname":"plotOptions.ohlc.cursor","title":"cursor","parent":"plotOptions-ohlc","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-arearange--cursor","fullname":"plotOptions.arearange.cursor","title":"cursor","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<area>--cursor","fullname":"series<area>.cursor","title":"cursor","parent":"series<area>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<spline>--cursor","fullname":"series<spline>.cursor","title":"cursor","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-areasplinerange--cursor","fullname":"plotOptions.areasplinerange.cursor","title":"cursor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-polygon--cursor","fullname":"plotOptions.polygon.cursor","title":"cursor","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<areasplinerange>--cursor","fullname":"series<areasplinerange>.cursor","title":"cursor","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-area--cursor","fullname":"plotOptions.area.cursor","title":"cursor","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<polygon>--cursor","fullname":"series<polygon>.cursor","title":"cursor","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-spline--cursor","fullname":"plotOptions.spline.cursor","title":"cursor","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-column--cursor","fullname":"plotOptions.column.cursor","title":"cursor","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<column>--cursor","fullname":"series<column>.cursor","title":"cursor","parent":"series<column>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-flags--cursor","fullname":"plotOptions.flags.cursor","title":"cursor","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-series--cursor","fullname":"plotOptions.series.cursor","title":"cursor","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<flags>--cursor","fullname":"series<flags>.cursor","title":"cursor","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<columnrange>--cursor","fullname":"series<columnrange>.cursor","title":"cursor","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<arearange>--cursor","fullname":"series<arearange>.cursor","title":"cursor","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"series<areaspline>--cursor","fullname":"series<areaspline>.cursor","title":"cursor","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"''","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/cursor/\" target=\"_blank\">Pointer on a line graph</a>"},{"name":"plotOptions-series-zones--dashStyle","fullname":"plotOptions.series.zones.dashStyle","title":"dashStyle","parent":"plotOptions-series-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"series<areaspline>-zones--dashStyle","fullname":"series<areaspline>.zones.dashStyle","title":"dashStyle","parent":"series<areaspline>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-line-zones--dashStyle","fullname":"plotOptions.line.zones.dashStyle","title":"dashStyle","parent":"plotOptions-line-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-flags-zones--dashStyle","fullname":"plotOptions.flags.zones.dashStyle","title":"dashStyle","parent":"plotOptions-flags-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<arearange>-zones--dashStyle","fullname":"series<arearange>.zones.dashStyle","title":"dashStyle","parent":"series<arearange>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"series<line>-zones--dashStyle","fullname":"series<line>.zones.dashStyle","title":"dashStyle","parent":"series<line>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<ohlc>-zones--dashStyle","fullname":"series<ohlc>.zones.dashStyle","title":"dashStyle","parent":"series<ohlc>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<flags>-zones--dashStyle","fullname":"series<flags>.zones.dashStyle","title":"dashStyle","parent":"series<flags>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-spline-zones--dashStyle","fullname":"plotOptions.spline.zones.dashStyle","title":"dashStyle","parent":"plotOptions-spline-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<arearange>--dashStyle","fullname":"series<arearange>.dashStyle","title":"dashStyle","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"series<line>--dashStyle","fullname":"series<line>.dashStyle","title":"dashStyle","parent":"series<line>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-candlestick-zones--dashStyle","fullname":"plotOptions.candlestick.zones.dashStyle","title":"dashStyle","parent":"plotOptions-candlestick-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-areasplinerange-zones--dashStyle","fullname":"plotOptions.areasplinerange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-column-zones--dashStyle","fullname":"plotOptions.column.zones.dashStyle","title":"dashStyle","parent":"plotOptions-column-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<areaspline>--dashStyle","fullname":"series<areaspline>.dashStyle","title":"dashStyle","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-polygon-zones--dashStyle","fullname":"plotOptions.polygon.zones.dashStyle","title":"dashStyle","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<column>-zones--dashStyle","fullname":"series<column>.zones.dashStyle","title":"dashStyle","parent":"series<column>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-area-zones--dashStyle","fullname":"plotOptions.area.zones.dashStyle","title":"dashStyle","parent":"plotOptions-area-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<scatter>-zones--dashStyle","fullname":"series<scatter>.zones.dashStyle","title":"dashStyle","parent":"series<scatter>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<spline>--dashStyle","fullname":"series<spline>.dashStyle","title":"dashStyle","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"series<areasplinerange>--dashStyle","fullname":"series<areasplinerange>.dashStyle","title":"dashStyle","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-columnrange-zones--dashStyle","fullname":"plotOptions.columnrange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<columnrange>-zones--dashStyle","fullname":"series<columnrange>.zones.dashStyle","title":"dashStyle","parent":"series<columnrange>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-scatter-zones--dashStyle","fullname":"plotOptions.scatter.zones.dashStyle","title":"dashStyle","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<areasplinerange>-zones--dashStyle","fullname":"series<areasplinerange>.zones.dashStyle","title":"dashStyle","parent":"series<areasplinerange>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"plotOptions-arearange-zones--dashStyle","fullname":"plotOptions.arearange.zones.dashStyle","title":"dashStyle","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<spline>-zones--dashStyle","fullname":"series<spline>.zones.dashStyle","title":"dashStyle","parent":"series<spline>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<area>-zones--dashStyle","fullname":"series<area>.zones.dashStyle","title":"dashStyle","parent":"series<area>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"plotOptions-areaspline-zones--dashStyle","fullname":"plotOptions.areaspline.zones.dashStyle","title":"dashStyle","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<polygon>-zones--dashStyle","fullname":"series<polygon>.zones.dashStyle","title":"dashStyle","parent":"series<polygon>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<candlestick>-zones--dashStyle","fullname":"series<candlestick>.zones.dashStyle","title":"dashStyle","parent":"series<candlestick>-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","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\"]","description":"The dashing or dot style for the plot line. For possible values see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this overview</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>","deprecated":false},{"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\"]","description":"The dashing or dot style for the plot line. For possible values see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this overview</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>","deprecated":false},{"name":"plotOptions-ohlc-zones--dashStyle","fullname":"plotOptions.ohlc.zones.dashStyle","title":"dashStyle","parent":"plotOptions-ohlc-zones","isParent":false,"returnType":"String","since":"2.1.0","description":"A name for the dash style to use for the graph.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-dashstyle-dot/\" target=\"_blank\">Dashed line indicates prognosis</a>","seeAlso":"<a href=\"#plotOption.series.dashStyle\">series.dashStyle</a>","deprecated":false},{"name":"series<polygon>--dashStyle","fullname":"series<polygon>.dashStyle","title":"dashStyle","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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":"2.1","description":"The dash style for the crosshair. See <a href=\"#plotOptions.series.dashStyle\">series.dashStyle</a> for possible values.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/crosshair-dashed/\" target=\"_blank\">Dashed X axis crosshair</a>","deprecated":false},{"name":"series<area>--dashStyle","fullname":"series<area>.dashStyle","title":"dashStyle","parent":"series<area>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","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":"2.1","description":"The dash style for the crosshair. See <a href=\"#plotOptions.series.dashStyle\">series.dashStyle</a> for possible values.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/crosshair-dashed/\" target=\"_blank\">Dashed X axis crosshair</a>","deprecated":false},{"name":"series<scatter>--dashStyle","fullname":"series<scatter>.dashStyle","title":"dashStyle","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"Solid","values":"[\"Solid\", \"ShortDash\", \"ShortDot\", \"ShortDashDot\", \"ShortDashDotDot\", \"Dot\", \"Dash\" ,\"LongDash\", \"DashDot\", \"LongDashDot\", \"LongDashDotDot\"]","description":"A name for the dash style to use for the graph. Applies only to series type having a graph, like <code>line</code>, <code>spline</code>, <code>area</code> and <code>scatter</code> in  case it has a <code>lineWidth</code>. The value for the <code>dashStyle</code> include:\r\n\t\t    <ul>\r\n\t\t    \t<li>Solid</li>\r\n\t\t    \t<li>ShortDash</li>\r\n\t\t    \t<li>ShortDot</li>\r\n\t\t    \t<li>ShortDashDot</li>\r\n\t\t    \t<li>ShortDashDotDot</li>\r\n\t\t    \t<li>Dot</li>\r\n\t\t    \t<li>Dash</li>\r\n\t\t    \t<li>LongDash</li>\r\n\t\t    \t<li>DashDot</li>\r\n\t\t    \t<li>LongDashDot</li>\r\n\t\t    \t<li>LongDashDotDot</li>\r\n\t\t    </ul>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\" target=\"_blank\">Possible values demonstrated</a>","deprecated":false},{"name":"series-data","fullname":"series.data","title":"data","parent":"series","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. The series object is expecting the points to be ordered from low to high. \r\n The reason for this is to increase performance. While in many cases the data is fetched from a server, it's also more convenient to sort on the server and thereby save on client resources. \r\n  \r\n The points can be given in three ways:\r\n<ol>\r\n<li>A list of numerical values. In this case, the numerical values will be interpreted as y values, and x values will be automatically calculated, either starting at 0 and incrementing by 1, or from <code>pointStart</code> and <code>pointInterval</code> given in the plotOptions. This option is not available for series types with more than one value per point, like area range or OHLC. Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>A list 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.</p> <p>For series with more than one value per point, like range or OHLC, the arrays will be interpreted as <code>[x, low, high]</code> or <code>[x, open, high, low, close]</code>. In these cases, the X value can be skipped altogether to make use of <code>pointStart</code> and <code>pointRange</code>.</p>\r\n\r\n Example:\r\n<pre>data: [[5, 2], [6, 3], [8, 2]]</pre></li>\r\n\r\n\r\n<li><p>A list of object with named values. In this case the objects are\tpoint configuration objects as seen under <a href=\"#point\">options.point</a>.</p>\r\n\r\n<p>Range series values are given by <code>low</code> and <code>high</code>, while candlestick/OHLC values are given by <code>open</code>, <code>high</code>, <code>low</code>, <code>close</code>.</p>\r\n\r\n Example:\r\n<pre>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}]</pre></li>\r\n </ol>\r\n<p>\r\n In turbo mode, when working with series longer than <a class=\"internal\" href=\"#plotOptions.series.turboThreshold\">\r\n turboThreshold</a> (1000 points by default), only one- or two dimensional arrays of numbers are allowed. The\r\n first value is tested, and we assume that all the rest are defined the same\r\n way.</p>\r\n\r\n<p>Note data must be sorted by X in order for the tooltip positioning and data grouping to work.</p>","deprecated":false},{"name":"series<polygon>-data","fullname":"series<polygon>.data","title":"data","parent":"series<polygon>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>polygon</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 0], \n    [1, 9], \n    [2, 2]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<polygon>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>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}]</pre></li>\r\n </ol>","demo":""},{"name":"series<ohlc>-data","fullname":"series<ohlc>.data","title":"data","parent":"series<ohlc>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>ohlc</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li><p>An array of arrays with 5 or 4 values. In this case, the values correspond to <code>x,open,high,low,close</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. The <code>x</code> value can also be omitted, in which case the inner arrays should be of length 4. Then the <code>x</code> value is automatically calculated, either starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options.</p>\r\n<pre>data: [\n    [0, 6, 5, 6, 7], \n    [1, 9, 4, 8, 2], \n    [2, 6, 3, 4, 10]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<ohlc>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    open: 3,\n    high: 4,\n    low: 5,\n    close: 2,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    open: 4,\n    high: 3,\n    low: 6,\n    close: 7,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<flags>-data","fullname":"series<flags>.data","title":"data","parent":"series<flags>","isParent":true,"returnType":"Array<Object>","description":"An array of data points for the series. For the <code>flags</code> series type, points can be given in the following ways:\r\n <ol>\r\n <li><p>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' <a href='#series<flags>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    title: \"A\",\n    text: \"First event\"\n}, {\n    x: 1,\n    title: \"B\",\n    text: \"Second event\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<column>-data","fullname":"series<column>.data","title":"data","parent":"series<column>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>column</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 4], \n    [1, 2], \n    [2, 5]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<column>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 8,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 10,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<line>-data","fullname":"series<line>.data","title":"data","parent":"series<line>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>line</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 0], \n    [1, 5], \n    [2, 3]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<line>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 9,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 1,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":"","deprecated":false},{"name":"series<areasplinerange>-data","fullname":"series<areasplinerange>.data","title":"data","parent":"series<areasplinerange>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>areasplinerange</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li><p>An array of arrays with 3 or 2 values. In this case, the values correspond to <code>x,low,high</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. The <code>x</code> value can also be omitted, in which case the inner arrays should be of length 2. Then the <code>x</code> value is automatically calculated, either starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options.</p>\r\n<pre>data: [\n    [0, 4, 6], \n    [1, 3, 3], \n    [2, 0, 3]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<areasplinerange>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    low: 3,\n    high: 1,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 0,\n    high: 0,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<scatter>-data","fullname":"series<scatter>.data","title":"data","parent":"series<scatter>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>scatter</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 5], \n    [1, 2], \n    [2, 4]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<scatter>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 2,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 9,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<area>-data","fullname":"series<area>.data","title":"data","parent":"series<area>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>area</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 1], \n    [1, 9], \n    [2, 1]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<area>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 3,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 0,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<candlestick>-data","fullname":"series<candlestick>.data","title":"data","parent":"series<candlestick>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>candlestick</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li><p>An array of arrays with 5 or 4 values. In this case, the values correspond to <code>x,open,high,low,close</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. The <code>x</code> value can also be omitted, in which case the inner arrays should be of length 4. Then the <code>x</code> value is automatically calculated, either starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options.</p>\r\n<pre>data: [\n    [0, 7, 2, 0, 4], \n    [1, 1, 4, 2, 8], \n    [2, 3, 3, 9, 3]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<candlestick>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    open: 9,\n    high: 2,\n    low: 4,\n    close: 6,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    open: 1,\n    high: 4,\n    low: 7,\n    close: 7,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<columnrange>-data","fullname":"series<columnrange>.data","title":"data","parent":"series<columnrange>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>columnrange</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li><p>An array of arrays with 3 or 2 values. In this case, the values correspond to <code>x,low,high</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. The <code>x</code> value can also be omitted, in which case the inner arrays should be of length 2. Then the <code>x</code> value is automatically calculated, either starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options.</p>\r\n<pre>data: [\n    [0, 2, 7], \n    [1, 6, 10], \n    [2, 7, 5]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<columnrange>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    low: 10,\n    high: 3,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 1,\n    high: 5,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<spline>-data","fullname":"series<spline>.data","title":"data","parent":"series<spline>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>spline</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 4], \n    [1, 3], \n    [2, 10]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<spline>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 3,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 9,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<areaspline>-data","fullname":"series<areaspline>.data","title":"data","parent":"series<areaspline>","isParent":true,"returnType":"Array<Object|Array|Number>","description":"An array of data points for the series. For the <code>areaspline</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li>An array of numerical values. In this case, the numerical values will \r\n \tbe interpreted as <code>y</code> options. The <code>x</code> values will be automatically calculated,\r\n \teither starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options. If the axis\r\n \thas categories, these will be used.  Example:\r\n<pre>data: [0, 5, 3, 5]</pre>\r\n \t</li>\r\n \t<li><p>An array of arrays with 2 values. In this case, the values correspond to <code>x,y</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. <pre>data: [\n    [0, 3], \n    [1, 3], \n    [2, 1]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<areaspline>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    y: 8,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    y: 5,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<arearange>-data","fullname":"series<arearange>.data","title":"data","parent":"series<arearange>","isParent":true,"returnType":"Array<Object|Array>","description":"An array of data points for the series. For the <code>arearange</code> series type, points can be given in the following ways:\r\n <ol>\r\n \t<li><p>An array of arrays with 3 or 2 values. In this case, the values correspond to <code>x,low,high</code>. If the first value is a string, it is\r\n \tapplied as the name of the point, and the <code>x</code> value is inferred. The <code>x</code> value can also be omitted, in which case the inner arrays should be of length 2. Then the <code>x</code> value is automatically calculated, either starting at 0 and incremented by 1, or from <code>pointStart</code> \r\n \tand <code>pointInterval</code> given in the series options.</p>\r\n<pre>data: [\n    [0, 4, 3], \n    [1, 9, 7], \n    [2, 2, 6]\n]</pre></li>\r\n\r\n\r\n<li><p>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' <a href='#series<arearange>.turboThreshold'>turboThreshold</a>, this option is not available.</p>\r\n\r\n<pre>data: [{\n    x: 1,\n    low: 7,\n    high: 2,\n    name: \"Point2\",\n    color: \"#00FF00\"\n}, {\n    x: 1,\n    low: 8,\n    high: 10,\n    name: \"Point1\",\n    color: \"#FF00FF\"\n}]</pre></li>\r\n </ol>","demo":""},{"name":"series<scatter>-dataGrouping","fullname":"series<scatter>.dataGrouping","title":"dataGrouping","parent":"series<scatter>","isParent":true},{"name":"plotOptions-ohlc-dataGrouping","fullname":"plotOptions.ohlc.dataGrouping","title":"dataGrouping","parent":"plotOptions-ohlc","isParent":true},{"name":"plotOptions-arearange-dataGrouping","fullname":"plotOptions.arearange.dataGrouping","title":"dataGrouping","parent":"plotOptions-arearange","isParent":true},{"name":"series<ohlc>-dataGrouping","fullname":"series<ohlc>.dataGrouping","title":"dataGrouping","parent":"series<ohlc>","isParent":true},{"name":"series<area>-dataGrouping","fullname":"series<area>.dataGrouping","title":"dataGrouping","parent":"series<area>","isParent":true},{"name":"plotOptions-columnrange-dataGrouping","fullname":"plotOptions.columnrange.dataGrouping","title":"dataGrouping","parent":"plotOptions-columnrange","isParent":true},{"name":"series<candlestick>-dataGrouping","fullname":"series<candlestick>.dataGrouping","title":"dataGrouping","parent":"series<candlestick>","isParent":true},{"name":"series<areaspline>-dataGrouping","fullname":"series<areaspline>.dataGrouping","title":"dataGrouping","parent":"series<areaspline>","isParent":true},{"name":"series<areasplinerange>-dataGrouping","fullname":"series<areasplinerange>.dataGrouping","title":"dataGrouping","parent":"series<areasplinerange>","isParent":true},{"name":"series<polygon>-dataGrouping","fullname":"series<polygon>.dataGrouping","title":"dataGrouping","parent":"series<polygon>","isParent":true},{"name":"plotOptions-areasplinerange-dataGrouping","fullname":"plotOptions.areasplinerange.dataGrouping","title":"dataGrouping","parent":"plotOptions-areasplinerange","isParent":true},{"name":"plotOptions-spline-dataGrouping","fullname":"plotOptions.spline.dataGrouping","title":"dataGrouping","parent":"plotOptions-spline","isParent":true},{"name":"plotOptions-column-dataGrouping","fullname":"plotOptions.column.dataGrouping","title":"dataGrouping","parent":"plotOptions-column","isParent":true},{"name":"series<columnrange>-dataGrouping","fullname":"series<columnrange>.dataGrouping","title":"dataGrouping","parent":"series<columnrange>","isParent":true},{"name":"plotOptions-candlestick-dataGrouping","fullname":"plotOptions.candlestick.dataGrouping","title":"dataGrouping","parent":"plotOptions-candlestick","isParent":true},{"name":"series<arearange>-dataGrouping","fullname":"series<arearange>.dataGrouping","title":"dataGrouping","parent":"series<arearange>","isParent":true},{"name":"plotOptions-line-dataGrouping","fullname":"plotOptions.line.dataGrouping","title":"dataGrouping","parent":"plotOptions-line","isParent":true},{"name":"plotOptions-areaspline-dataGrouping","fullname":"plotOptions.areaspline.dataGrouping","title":"dataGrouping","parent":"plotOptions-areaspline","isParent":true},{"name":"plotOptions-series-dataGrouping","fullname":"plotOptions.series.dataGrouping","title":"dataGrouping","parent":"plotOptions-series","isParent":true},{"name":"plotOptions-polygon-dataGrouping","fullname":"plotOptions.polygon.dataGrouping","title":"dataGrouping","parent":"plotOptions-polygon","isParent":true},{"name":"series<spline>-dataGrouping","fullname":"series<spline>.dataGrouping","title":"dataGrouping","parent":"series<spline>","isParent":true},{"name":"series<line>-dataGrouping","fullname":"series<line>.dataGrouping","title":"dataGrouping","parent":"series<line>","isParent":true},{"name":"plotOptions-area-dataGrouping","fullname":"plotOptions.area.dataGrouping","title":"dataGrouping","parent":"plotOptions-area","isParent":true},{"name":"series<column>-dataGrouping","fullname":"series<column>.dataGrouping","title":"dataGrouping","parent":"series<column>","isParent":true},{"name":"plotOptions-scatter-dataGrouping","fullname":"plotOptions.scatter.dataGrouping","title":"dataGrouping","parent":"plotOptions-scatter","isParent":true},{"name":"series<columnrange>-data--dataLabels","fullname":"series<columnrange>.data.dataLabels","title":"dataLabels","parent":"series<columnrange>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"plotOptions-arearange-dataLabels","fullname":"plotOptions.arearange.dataLabels","title":"dataLabels","parent":"plotOptions-arearange","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-dataLabels","fullname":"plotOptions.column.dataLabels","title":"dataLabels","parent":"plotOptions-column","isParent":true,"deprecated":false},{"name":"series<ohlc>-data--dataLabels","fullname":"series<ohlc>.data.dataLabels","title":"dataLabels","parent":"series<ohlc>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"plotOptions-areasplinerange-dataLabels","fullname":"plotOptions.areasplinerange.dataLabels","title":"dataLabels","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-dataLabels","fullname":"plotOptions.series.dataLabels","title":"dataLabels","parent":"plotOptions-series","isParent":true,"deprecated":false},{"name":"plotOptions-scatter-dataLabels","fullname":"plotOptions.scatter.dataLabels","title":"dataLabels","parent":"plotOptions-scatter","isParent":true},{"name":"series<polygon>-dataLabels","fullname":"series<polygon>.dataLabels","title":"dataLabels","parent":"series<polygon>","isParent":true},{"name":"series<flags>-dataLabels","fullname":"series<flags>.dataLabels","title":"dataLabels","parent":"series<flags>","isParent":true,"deprecated":false},{"name":"series<spline>-dataLabels","fullname":"series<spline>.dataLabels","title":"dataLabels","parent":"series<spline>","isParent":true,"deprecated":false},{"name":"series<column>-data--dataLabels","fullname":"series<column>.data.dataLabels","title":"dataLabels","parent":"series<column>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<line>-dataLabels","fullname":"series<line>.dataLabels","title":"dataLabels","parent":"series<line>","isParent":true,"deprecated":false},{"name":"plotOptions-candlestick-dataLabels","fullname":"plotOptions.candlestick.dataLabels","title":"dataLabels","parent":"plotOptions-candlestick","isParent":true,"deprecated":false},{"name":"series<polygon>-data--dataLabels","fullname":"series<polygon>.data.dataLabels","title":"dataLabels","parent":"series<polygon>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<ohlc>-dataLabels","fullname":"series<ohlc>.dataLabels","title":"dataLabels","parent":"series<ohlc>","isParent":true,"deprecated":false},{"name":"series<columnrange>-dataLabels","fullname":"series<columnrange>.dataLabels","title":"dataLabels","parent":"series<columnrange>","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels","fullname":"plotOptions.flags.dataLabels","title":"dataLabels","parent":"plotOptions-flags","isParent":true,"deprecated":false},{"name":"series<areaspline>-data--dataLabels","fullname":"series<areaspline>.data.dataLabels","title":"dataLabels","parent":"series<areaspline>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"plotOptions-line-dataLabels","fullname":"plotOptions.line.dataLabels","title":"dataLabels","parent":"plotOptions-line","isParent":true,"deprecated":false},{"name":"series<area>-dataLabels","fullname":"series<area>.dataLabels","title":"dataLabels","parent":"series<area>","isParent":true,"deprecated":false},{"name":"series<area>-data--dataLabels","fullname":"series<area>.data.dataLabels","title":"dataLabels","parent":"series<area>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<areaspline>-dataLabels","fullname":"series<areaspline>.dataLabels","title":"dataLabels","parent":"series<areaspline>","isParent":true,"deprecated":false},{"name":"series<column>-dataLabels","fullname":"series<column>.dataLabels","title":"dataLabels","parent":"series<column>","isParent":true,"deprecated":false},{"name":"series<line>-data--dataLabels","fullname":"series<line>.data.dataLabels","title":"dataLabels","parent":"series<line>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<scatter>-dataLabels","fullname":"series<scatter>.dataLabels","title":"dataLabels","parent":"series<scatter>","isParent":true},{"name":"plotOptions-columnrange-dataLabels","fullname":"plotOptions.columnrange.dataLabels","title":"dataLabels","parent":"plotOptions-columnrange","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-data--dataLabels","fullname":"series<arearange>.data.dataLabels","title":"dataLabels","parent":"series<arearange>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<candlestick>-data--dataLabels","fullname":"series<candlestick>.data.dataLabels","title":"dataLabels","parent":"series<candlestick>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"plotOptions-areaspline-dataLabels","fullname":"plotOptions.areaspline.dataLabels","title":"dataLabels","parent":"plotOptions-areaspline","isParent":true,"deprecated":false},{"name":"plotOptions-ohlc-dataLabels","fullname":"plotOptions.ohlc.dataLabels","title":"dataLabels","parent":"plotOptions-ohlc","isParent":true,"deprecated":false},{"name":"series<scatter>-data--dataLabels","fullname":"series<scatter>.data.dataLabels","title":"dataLabels","parent":"series<scatter>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<spline>-data--dataLabels","fullname":"series<spline>.data.dataLabels","title":"dataLabels","parent":"series<spline>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"series<candlestick>-dataLabels","fullname":"series<candlestick>.dataLabels","title":"dataLabels","parent":"series<candlestick>","isParent":true,"deprecated":false},{"name":"plotOptions-area-dataLabels","fullname":"plotOptions.area.dataLabels","title":"dataLabels","parent":"plotOptions-area","isParent":true,"deprecated":false},{"name":"plotOptions-spline-dataLabels","fullname":"plotOptions.spline.dataLabels","title":"dataLabels","parent":"plotOptions-spline","isParent":true,"deprecated":false},{"name":"series<arearange>-dataLabels","fullname":"series<arearange>.dataLabels","title":"dataLabels","parent":"series<arearange>","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels","fullname":"series<areasplinerange>.dataLabels","title":"dataLabels","parent":"series<areasplinerange>","isParent":true,"returnType":"Object","defaults":"","since":"1.2.0","description":"Extended data labels for range series types. Range series  data labels have no <code>x</code> and <code>y</code> options. Instead, they have <code>xLow</code>, <code>xHigh</code>, <code>yLow</code> and <code>yHigh</code> options to allow the higher and lower data label sets individually. ","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-data--dataLabels","fullname":"series<areasplinerange>.data.dataLabels","title":"dataLabels","parent":"series<areasplinerange>-data","isParent":false,"returnType":"Object","description":"Individual data label for each point. The options are the same as the ones for  <a class=\"internal\" href=\"#plotOptions.series.dataLabels\">plotOptions.series.dataLabels</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/point/datalabels/\" target=\"_blank\">Show a label for the last value</a>","deprecated":false},{"name":"plotOptions-polygon-dataLabels","fullname":"plotOptions.polygon.dataLabels","title":"dataLabels","parent":"plotOptions-polygon","isParent":true},{"name":"plotOptions-line-tooltip--dateTimeLabelFormats","fullname":"plotOptions.line.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<areaspline>-dataGrouping--dateTimeLabelFormats","fullname":"series<areaspline>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataGrouping--dateTimeLabelFormats","fullname":"series<line>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataGrouping--dateTimeLabelFormats","fullname":"series<areasplinerange>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-tooltip--dateTimeLabelFormats","fullname":"plotOptions.flags.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.columnrange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-series-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.series.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-tooltip--dateTimeLabelFormats","fullname":"series<line>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<line>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<spline>-dataGrouping--dateTimeLabelFormats","fullname":"series<spline>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series-tooltip--dateTimeLabelFormats","fullname":"plotOptions.series.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"xAxis--dateTimeLabelFormats","fullname":"xAxis.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"xAxis","isParent":false,"returnType":"Object","defaults":"","description":"For a datetime axis, the scale will automatically adjust to the appropriate unit.\r This member gives the default string representations used for each unit. For an\r overview of the replacement codes, see dateFormat.\r Defaults to:\r\n<pre>{\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}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/datetimelabelformats/\" target=\"_blank\">More information in x axis labels</a>","deprecated":false},{"name":"series<area>-tooltip--dateTimeLabelFormats","fullname":"series<area>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<area>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-scatter-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.scatter.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.areaspline.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.spline.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.arearange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--dateTimeLabelFormats","fullname":"plotOptions.candlestick.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<spline>-tooltip--dateTimeLabelFormats","fullname":"series<spline>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<spline>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-column-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.column.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.candlestick.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.area.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-tooltip--dateTimeLabelFormats","fullname":"series<arearange>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<candlestick>-tooltip--dateTimeLabelFormats","fullname":"series<candlestick>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-columnrange-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.columnrange.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--date","fullname":"tooltip.date","title":"dateTimeLabelFormats","parent":"tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<column>-tooltip--dateTimeLabelFormats","fullname":"series<column>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<column>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"yAxis--dateTimeLabelFormats","fullname":"yAxis.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"yAxis","isParent":false,"returnType":"Object","defaults":"","description":"For a datetime axis, the scale will automatically adjust to the appropriate unit.\r This member gives the default string representations used for each unit. For an\r overview of the replacement codes, see dateFormat.\r Defaults to:\r\n<pre>{\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}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/datetimelabelformats/\" target=\"_blank\">More information in x axis labels</a>","deprecated":false},{"name":"series<areaspline>-tooltip--dateTimeLabelFormats","fullname":"series<areaspline>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<columnrange>-dataGrouping--dateTimeLabelFormats","fullname":"series<columnrange>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip--dateTimeLabelFormats","fullname":"plotOptions.column.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<ohlc>-dataGrouping--dateTimeLabelFormats","fullname":"series<ohlc>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.ohlc.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataGrouping--dateTimeLabelFormats","fullname":"series<arearange>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-tooltip--dateTimeLabelFormats","fullname":"series<columnrange>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-areaspline-tooltip--dateTimeLabelFormats","fullname":"plotOptions.areaspline.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<scatter>-dataGrouping--dateTimeLabelFormats","fullname":"series<scatter>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-dataGrouping--dateTimeLabelFormats","fullname":"series<area>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-tooltip--dateTimeLabelFormats","fullname":"series<flags>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<flags>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-polygon-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.polygon.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataGrouping--dateTimeLabelFormats","fullname":"series<polygon>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataGrouping--dateTimeLabelFormats","fullname":"series<candlestick>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.areasplinerange.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-tooltip--dateTimeLabelFormats","fullname":"series<areasplinerange>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-spline-tooltip--dateTimeLabelFormats","fullname":"plotOptions.spline.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--dateTimeLabelFormats","fullname":"plotOptions.areasplinerange.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<ohlc>-tooltip--dateTimeLabelFormats","fullname":"series<ohlc>.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"series<column>-dataGrouping--dateTimeLabelFormats","fullname":"series<column>.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.line.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-tooltip--dateTimeLabelFormats","fullname":"plotOptions.area.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--dateTimeLabelFormats","fullname":"plotOptions.arearange.dataGrouping.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Object","defaults":"","since":"","description":"<p>Datetime formats for the header of the tooltip in a stock chart. The format can vary within a chart depending on the currently selected time range and the current data grouping.</p>\r\n\r\n<p>The default formats are: </p>\r\n<pre>{\r\n   millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],\r\n   second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],\r\n   minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],\r\n   day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],\r\n   month: ['%B %Y', '%B', '-%B %Y'],\r\n   year: ['%Y', '%Y', '-%Y']\r\n}</pre>\r\n\r\n<p>For each of these array definitions, the first item is the format used when the active time span is one unit. For instance, if the current data applies to one week, the first item of the week array is used. The second and third items are used when the active time span is more than two units. For instance, if the current data applies to two weeks, the second and third item of the week array are used, and applied to the start and end date of the time span.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-tooltip--dateTimeLabelFormats","fullname":"plotOptions.ohlc.tooltip.dateTimeLabelFormats","title":"dateTimeLabelFormats","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Object","description":"<p>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.<p>\r\n\r\n<p>Note that when data grouping applies, the date time label formats are pulled from <a href=\"#plotOptions.series.dataGrouping.dateTimeLabelFormats\">dataGrouping.dateTimeLabelFormats</a> instead, because it also allows formatting of time spans.</p>\r\n\r\n<p>For an overview of the replacement codes, see <a href=\"#Highcharts.dateFormat\">dateFormat</a>.</p>\r\n\r\n<p>Defaults to:\r\n<pre>{\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}</pre>\r\n</p>","seeAlso":"<a href=\"#xAxis.dateTimeLabelFormats\">xAxis.dateTimeLabelFormats</a>","deprecated":false},{"name":"lang--decimalPoint","fullname":"lang.decimalPoint","title":"decimalPoint","parent":"lang","isParent":false,"returnType":"String","defaults":"\".\"","description":"The default decimal point used in the <code>Highcharts.numberFormat</code> method unless otherwise specified in the function arguments."},{"name":"series<flags>-dataLabels--defer","fullname":"series<flags>.dataLabels.defer","title":"defer","parent":"series<flags>-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":"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":"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-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":"series<line>-dataLabels--defer","fullname":"series<line>.dataLabels.defer","title":"defer","parent":"series<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":"series<arearange>-dataLabels--defer","fullname":"series<arearange>.dataLabels.defer","title":"defer","parent":"series<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":"plotOptions-candlestick-dataLabels--defer","fullname":"plotOptions.candlestick.dataLabels.defer","title":"defer","parent":"plotOptions-candlestick-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<columnrange>-dataLabels--defer","fullname":"series<columnrange>.dataLabels.defer","title":"defer","parent":"series<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":"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":"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<ohlc>-dataLabels--defer","fullname":"series<ohlc>.dataLabels.defer","title":"defer","parent":"series<ohlc>-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-ohlc-dataLabels--defer","fullname":"plotOptions.ohlc.dataLabels.defer","title":"defer","parent":"plotOptions-ohlc-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<areasplinerange>-dataLabels--defer","fullname":"series<areasplinerange>.dataLabels.defer","title":"defer","parent":"series<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<areaspline>-dataLabels--defer","fullname":"series<areaspline>.dataLabels.defer","title":"defer","parent":"series<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":"series<scatter>-dataLabels--defer","fullname":"series<scatter>.dataLabels.defer","title":"defer","parent":"series<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-flags-dataLabels--defer","fullname":"plotOptions.flags.dataLabels.defer","title":"defer","parent":"plotOptions-flags-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":"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":"series<spline>-dataLabels--defer","fullname":"series<spline>.dataLabels.defer","title":"defer","parent":"series<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-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<polygon>-dataLabels--defer","fullname":"series<polygon>.dataLabels.defer","title":"defer","parent":"series<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":"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":"series<candlestick>-dataLabels--defer","fullname":"series<candlestick>.dataLabels.defer","title":"defer","parent":"series<candlestick>-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<column>-dataLabels--defer","fullname":"series<column>.dataLabels.defer","title":"defer","parent":"series<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<area>-dataLabels--defer","fullname":"series<area>.dataLabels.defer","title":"defer","parent":"series<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":"lang--downloadJPEG","fullname":"lang.downloadJPEG","title":"downloadJPEG","parent":"lang","isParent":false,"returnType":"String","defaults":"\"Download JPEG image\"","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\"","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\"","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\"","description":"Exporting module only. The text for the SVG download menu item."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<areaspline>--enableMouseTracking","fullname":"series<areaspline>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"plotOptions-candlestick--enableMouseTracking","fullname":"plotOptions.candlestick.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-candlestick","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<scatter>--enableMouseTracking","fullname":"series<scatter>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<column>--enableMouseTracking","fullname":"series<column>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"plotOptions-flags--enableMouseTracking","fullname":"plotOptions.flags.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-flags","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<line>--enableMouseTracking","fullname":"series<line>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<columnrange>--enableMouseTracking","fullname":"series<columnrange>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<candlestick>--enableMouseTracking","fullname":"series<candlestick>.enableMouseTracking","title":"enableMouseTracking","parent":"series<candlestick>","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<polygon>--enableMouseTracking","fullname":"series<polygon>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<area>--enableMouseTracking","fullname":"series<area>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<arearange>--enableMouseTracking","fullname":"series<arearange>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"plotOptions-ohlc--enableMouseTracking","fullname":"plotOptions.ohlc.enableMouseTracking","title":"enableMouseTracking","parent":"plotOptions-ohlc","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<ohlc>--enableMouseTracking","fullname":"series<ohlc>.enableMouseTracking","title":"enableMouseTracking","parent":"series<ohlc>","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<spline>--enableMouseTracking","fullname":"series<spline>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<flags>--enableMouseTracking","fullname":"series<flags>.enableMouseTracking","title":"enableMouseTracking","parent":"series<flags>","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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<areasplinerange>--enableMouseTracking","fullname":"series<areasplinerange>.enableMouseTracking","title":"enableMouseTracking","parent":"series<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. When using shared tooltips  (default in stock charts), mouse tracking is not required. For large datasets it improves performance."},{"name":"series<flags>-states-hover--enabled","fullname":"series<flags>.states.hover.enabled","title":"enabled","parent":"series<flags>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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."},{"name":"series<spline>-data-marker-states-select--enabled","fullname":"series<spline>.data.marker.states.select.enabled","title":"enabled","parent":"series<spline>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"series<areaspline>-marker-states-select--enabled","fullname":"series<areaspline>.marker.states.select.enabled","title":"enabled","parent":"series<areaspline>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"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."},{"name":"series<polygon>-dataGrouping--enabled","fullname":"series<polygon>.dataGrouping.enabled","title":"enabled","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<areaspline>-data-marker--enabled","fullname":"series<areaspline>.data.marker.enabled","title":"enabled","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-area-dataGrouping--enabled","fullname":"plotOptions.area.dataGrouping.enabled","title":"enabled","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<arearange>-states-hover--enabled","fullname":"series<arearange>.states.hover.enabled","title":"enabled","parent":"series<arearange>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<scatter>-marker-states-select--enabled","fullname":"series<scatter>.marker.states.select.enabled","title":"enabled","parent":"series<scatter>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-column-dataGrouping--enabled","fullname":"plotOptions.column.dataGrouping.enabled","title":"enabled","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<scatter>-dataGrouping--enabled","fullname":"series<scatter>.dataGrouping.enabled","title":"enabled","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"plotOptions-series-dataGrouping--enabled","fullname":"plotOptions.series.dataGrouping.enabled","title":"enabled","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<polygon>-data-marker-states-hover--enabled","fullname":"series<polygon>.data.marker.states.hover.enabled","title":"enabled","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<areasplinerange>-dataGrouping--enabled","fullname":"series<areasplinerange>.dataGrouping.enabled","title":"enabled","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<area>-data-marker-states-hover--enabled","fullname":"series<area>.data.marker.states.hover.enabled","title":"enabled","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"series<polygon>-states-hover-marker--enabled","fullname":"series<polygon>.states.hover.marker.enabled","title":"enabled","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<area>-marker--enabled","fullname":"series<area>.marker.enabled","title":"enabled","parent":"series<area>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<scatter>-states-hover--enabled","fullname":"series<scatter>.states.hover.enabled","title":"enabled","parent":"series<scatter>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<line>-dataGrouping--enabled","fullname":"series<line>.dataGrouping.enabled","title":"enabled","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"legend--enabled","fullname":"legend.enabled","title":"enabled","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the legend.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>"},{"name":"series<columnrange>-dataGrouping--enabled","fullname":"series<columnrange>.dataGrouping.enabled","title":"enabled","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"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.","deprecated":false},{"name":"series<column>-states-hover--enabled","fullname":"series<column>.states.hover.enabled","title":"enabled","parent":"series<column>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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."},{"name":"tooltip--enabled","fullname":"tooltip.enabled","title":"enabled","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the tooltip."},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<area>-dataLabels--enabled","fullname":"series<area>.dataLabels.enabled","title":"enabled","parent":"series<area>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<spline>-states-hover-marker--enabled","fullname":"series<spline>.states.hover.marker.enabled","title":"enabled","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<polygon>-states-hover--enabled","fullname":"series<polygon>.states.hover.enabled","title":"enabled","parent":"series<polygon>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<line>-marker-states-hover--enabled","fullname":"series<line>.marker.states.hover.enabled","title":"enabled","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"series<line>-dataLabels--enabled","fullname":"series<line>.dataLabels.enabled","title":"enabled","parent":"series<line>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"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.","deprecated":false},{"name":"series<scatter>-data-marker--enabled","fullname":"series<scatter>.data.marker.enabled","title":"enabled","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<line>-states-hover--enabled","fullname":"series<line>.states.hover.enabled","title":"enabled","parent":"series<line>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<scatter>-marker--enabled","fullname":"series<scatter>.marker.enabled","title":"enabled","parent":"series<scatter>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<polygon>-marker-states-hover--enabled","fullname":"series<polygon>.marker.states.hover.enabled","title":"enabled","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"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."},{"name":"credits--enabled","fullname":"credits.enabled","title":"enabled","parent":"credits","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to show the credits text.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/credits/enabled/\" target=\"_blank\">Credits disabled</a>"},{"name":"plotOptions-columnrange-dataGrouping--enabled","fullname":"plotOptions.columnrange.dataGrouping.enabled","title":"enabled","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"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."},{"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."},{"name":"plotOptions-ohlc-states-hover--enabled","fullname":"plotOptions.ohlc.states.hover.enabled","title":"enabled","parent":"plotOptions-ohlc-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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."},{"name":"series<spline>-dataGrouping--enabled","fullname":"series<spline>.dataGrouping.enabled","title":"enabled","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<ohlc>-dataGrouping--enabled","fullname":"series<ohlc>.dataGrouping.enabled","title":"enabled","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<scatter>-data-marker-states-select--enabled","fullname":"series<scatter>.data.marker.states.select.enabled","title":"enabled","parent":"series<scatter>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"plotOptions-area-marker--enabled","fullname":"plotOptions.area.marker.enabled","title":"enabled","parent":"plotOptions-area-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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."},{"name":"plotOptions-candlestick-dataGrouping--enabled","fullname":"plotOptions.candlestick.dataGrouping.enabled","title":"enabled","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<line>-data-marker-states-hover--enabled","fullname":"series<line>.data.marker.states.hover.enabled","title":"enabled","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--enabled","fullname":"series<areasplinerange>.dataLabels.enabled","title":"enabled","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<spline>-marker--enabled","fullname":"series<spline>.marker.enabled","title":"enabled","parent":"series<spline>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<area>-dataGrouping--enabled","fullname":"series<area>.dataGrouping.enabled","title":"enabled","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"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.","deprecated":false},{"name":"series<area>-marker-states-select--enabled","fullname":"series<area>.marker.states.select.enabled","title":"enabled","parent":"series<area>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"series<column>-states-hover-marker--enabled","fullname":"series<column>.states.hover.marker.enabled","title":"enabled","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<areaspline>-data-marker-states-hover--enabled","fullname":"series<areaspline>.data.marker.states.hover.enabled","title":"enabled","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"plotOptions-spline-marker--enabled","fullname":"plotOptions.spline.marker.enabled","title":"enabled","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-areaspline-marker--enabled","fullname":"plotOptions.areaspline.marker.enabled","title":"enabled","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<candlestick>-states-hover-marker--enabled","fullname":"series<candlestick>.states.hover.marker.enabled","title":"enabled","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--enabled","fullname":"series<ohlc>.dataLabels.enabled","title":"enabled","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<polygon>-marker--enabled","fullname":"series<polygon>.marker.enabled","title":"enabled","parent":"series<polygon>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"exporting-buttons-contextButton--enabled","fullname":"exporting.buttons.contextButton.enabled","title":"enabled","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to enable buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-enabled/\" target=\"_blank\">Exporting module loaded but buttons disabled</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover-marker--enabled","fullname":"plotOptions.candlestick.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-polygon-dataGrouping--enabled","fullname":"plotOptions.polygon.dataGrouping.enabled","title":"enabled","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--enabled","fullname":"plotOptions.flags.dataLabels.enabled","title":"enabled","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"navigation-buttonOptions--enabled","fullname":"navigation.buttonOptions.enabled","title":"enabled","parent":"navigation-buttonOptions","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to enable buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-enabled/\" target=\"_blank\">Exporting module loaded but buttons disabled</a>","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-flags-states-hover--enabled","fullname":"plotOptions.flags.states.hover.enabled","title":"enabled","parent":"plotOptions-flags-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<columnrange>-dataLabels--enabled","fullname":"series<columnrange>.dataLabels.enabled","title":"enabled","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","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.","deprecated":false},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<area>-states-hover--enabled","fullname":"series<area>.states.hover.enabled","title":"enabled","parent":"series<area>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<scatter>-states-hover-marker--enabled","fullname":"series<scatter>.states.hover.marker.enabled","title":"enabled","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--enabled","fullname":"plotOptions.candlestick.dataLabels.enabled","title":"enabled","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<areaspline>-states-hover--enabled","fullname":"series<areaspline>.states.hover.enabled","title":"enabled","parent":"series<areaspline>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<areaspline>-dataGrouping--enabled","fullname":"series<areaspline>.dataGrouping.enabled","title":"enabled","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<spline>-marker-states-select--enabled","fullname":"series<spline>.marker.states.select.enabled","title":"enabled","parent":"series<spline>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"series<areasplinerange>-states-hover-marker--enabled","fullname":"series<areasplinerange>.states.hover.marker.enabled","title":"enabled","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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.","deprecated":false},{"name":"series<scatter>-data-marker-states-hover--enabled","fullname":"series<scatter>.data.marker.states.hover.enabled","title":"enabled","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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.","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<spline>-states-hover--enabled","fullname":"series<spline>.states.hover.enabled","title":"enabled","parent":"series<spline>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<areaspline>-dataLabels--enabled","fullname":"series<areaspline>.dataLabels.enabled","title":"enabled","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<spline>-marker-states-hover--enabled","fullname":"series<spline>.marker.states.hover.enabled","title":"enabled","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"plotOptions-ohlc-dataLabels--enabled","fullname":"plotOptions.ohlc.dataLabels.enabled","title":"enabled","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"plotOptions-areaspline-dataGrouping--enabled","fullname":"plotOptions.areaspline.dataGrouping.enabled","title":"enabled","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<line>-marker--enabled","fullname":"series<line>.marker.enabled","title":"enabled","parent":"series<line>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--enabled","fullname":"plotOptions.arearange.dataGrouping.enabled","title":"enabled","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<columnrange>-states-hover--enabled","fullname":"series<columnrange>.states.hover.enabled","title":"enabled","parent":"series<columnrange>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<line>-data-marker--enabled","fullname":"series<line>.data.marker.enabled","title":"enabled","parent":"series<line>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<area>-states-hover-marker--enabled","fullname":"series<area>.states.hover.marker.enabled","title":"enabled","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<flags>-dataLabels--enabled","fullname":"series<flags>.dataLabels.enabled","title":"enabled","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<areaspline>-data-marker-states-select--enabled","fullname":"series<areaspline>.data.marker.states.select.enabled","title":"enabled","parent":"series<areaspline>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"series<polygon>-data-marker--enabled","fullname":"series<polygon>.data.marker.enabled","title":"enabled","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<column>-dataGrouping--enabled","fullname":"series<column>.dataGrouping.enabled","title":"enabled","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","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."},{"name":"series<line>-states-hover-marker--enabled","fullname":"series<line>.states.hover.marker.enabled","title":"enabled","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover-marker--enabled","fullname":"plotOptions.ohlc.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<areaspline>-states-hover-marker--enabled","fullname":"series<areaspline>.states.hover.marker.enabled","title":"enabled","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/labels-enabled/\" target=\"_blank\">X axis labels disabled</a>"},{"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."},{"name":"series<line>-data-marker-states-select--enabled","fullname":"series<line>.data.marker.states.select.enabled","title":"enabled","parent":"series<line>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"plotOptions-scatter-marker--enabled","fullname":"plotOptions.scatter.marker.enabled","title":"enabled","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<areaspline>-marker--enabled","fullname":"series<areaspline>.marker.enabled","title":"enabled","parent":"series<areaspline>-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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."},{"name":"plotOptions-line-marker--enabled","fullname":"plotOptions.line.marker.enabled","title":"enabled","parent":"plotOptions-line-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"navigator--enabled","fullname":"navigator.enabled","title":"enabled","parent":"navigator","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the navigator.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/enabled/\" target=\"_blank\">Disable the navigator</a>"},{"name":"series<arearange>-dataGrouping--enabled","fullname":"series<arearange>.dataGrouping.enabled","title":"enabled","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<polygon>-marker-states-select--enabled","fullname":"series<polygon>.marker.states.select.enabled","title":"enabled","parent":"series<polygon>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"plotOptions-ohlc-dataGrouping--enabled","fullname":"plotOptions.ohlc.dataGrouping.enabled","title":"enabled","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<candlestick>-states-hover--enabled","fullname":"series<candlestick>.states.hover.enabled","title":"enabled","parent":"series<candlestick>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-polygon-marker--enabled","fullname":"plotOptions.polygon.marker.enabled","title":"enabled","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<spline>-data-marker--enabled","fullname":"series<spline>.data.marker.enabled","title":"enabled","parent":"series<spline>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<columnrange>-states-hover-marker--enabled","fullname":"series<columnrange>.states.hover.marker.enabled","title":"enabled","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/labels-enabled/\" target=\"_blank\">X axis labels disabled</a>"},{"name":"series<scatter>-dataLabels--enabled","fullname":"series<scatter>.dataLabels.enabled","title":"enabled","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<spline>-data-marker-states-hover--enabled","fullname":"series<spline>.data.marker.states.hover.enabled","title":"enabled","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"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.","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-series-marker--enabled","fullname":"plotOptions.series.marker.enabled","title":"enabled","parent":"plotOptions-series-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-spline-dataGrouping--enabled","fullname":"plotOptions.spline.dataGrouping.enabled","title":"enabled","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<areaspline>-marker-states-hover--enabled","fullname":"series<areaspline>.marker.states.hover.enabled","title":"enabled","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"series<area>-data-marker--enabled","fullname":"series<area>.data.marker.enabled","title":"enabled","parent":"series<area>-data-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<line>-marker-states-select--enabled","fullname":"series<line>.marker.states.select.enabled","title":"enabled","parent":"series<line>-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"scrollbar--enabled","fullname":"scrollbar.enabled","title":"enabled","parent":"scrollbar","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the scrollbar.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/enabled/\" target=\"_blank\">Disable the scrollbar, only use navigator</a>"},{"name":"plotOptions-candlestick-states-hover--enabled","fullname":"plotOptions.candlestick.states.hover.enabled","title":"enabled","parent":"plotOptions-candlestick-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<candlestick>-dataGrouping--enabled","fullname":"series<candlestick>.dataGrouping.enabled","title":"enabled","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","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."},{"name":"series<polygon>-data-marker-states-select--enabled","fullname":"series<polygon>.data.marker.states.select.enabled","title":"enabled","parent":"series<polygon>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"plotOptions-scatter-dataGrouping--enabled","fullname":"plotOptions.scatter.dataGrouping.enabled","title":"enabled","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","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.","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"plotOptions-flags-states-hover-marker--enabled","fullname":"plotOptions.flags.states.hover.marker.enabled","title":"enabled","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"exporting--enabled","fullname":"exporting.enabled","title":"enabled","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to enable the exporting module. Disabling the module will hide the context button, but API methods will still be available.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/enabled-false/\" target=\"_blank\">Exporting module is loaded but disabled</a>","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."},{"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.","deprecated":false},{"name":"series<candlestick>-dataLabels--enabled","fullname":"series<candlestick>.dataLabels.enabled","title":"enabled","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","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.","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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"plotOptions-line-dataGrouping--enabled","fullname":"plotOptions.line.dataGrouping.enabled","title":"enabled","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<ohlc>-states-hover-marker--enabled","fullname":"series<ohlc>.states.hover.marker.enabled","title":"enabled","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"plotOptions-areasplinerange-dataGrouping--enabled","fullname":"plotOptions.areasplinerange.dataGrouping.enabled","title":"enabled","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable data grouping.","deprecated":false},{"name":"series<arearange>-states-hover-marker--enabled","fullname":"series<arearange>.states.hover.marker.enabled","title":"enabled","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<arearange>-dataLabels--enabled","fullname":"series<arearange>.dataLabels.enabled","title":"enabled","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"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":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","deprecated":false},{"name":"series<areasplinerange>-states-hover--enabled","fullname":"series<areasplinerange>.states.hover.enabled","title":"enabled","parent":"series<areasplinerange>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<area>-marker-states-hover--enabled","fullname":"series<area>.marker.states.hover.enabled","title":"enabled","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"rangeSelector--enabled","fullname":"rangeSelector.enabled","title":"enabled","parent":"rangeSelector","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the range selector.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/enabled/\" target=\"_blank\">Disable the range selector</a>"},{"name":"series<scatter>-marker-states-hover--enabled","fullname":"series<scatter>.marker.states.hover.enabled","title":"enabled","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable the point marker."},{"name":"series<polygon>-dataLabels--enabled","fullname":"series<polygon>.dataLabels.enabled","title":"enabled","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"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."},{"name":"series<area>-data-marker-states-select--enabled","fullname":"series<area>.data.marker.states.select.enabled","title":"enabled","parent":"series<area>-data-marker-states-select","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable or disable visible feedback for selection."},{"name":"series<spline>-dataLabels--enabled","fullname":"series<spline>.dataLabels.enabled","title":"enabled","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","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.","deprecated":false},{"name":"series<ohlc>-states-hover--enabled","fullname":"series<ohlc>.states.hover.enabled","title":"enabled","parent":"series<ohlc>-states-hover","isParent":false,"returnType":"Boolean","defaults":"true","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"series<column>-dataLabels--enabled","fullname":"series<column>.dataLabels.enabled","title":"enabled","parent":"series<column>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the data labels.","deprecated":false},{"name":"series<flags>-states-hover-marker--enabled","fullname":"series<flags>.states.hover.marker.enabled","title":"enabled","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Boolean","defaults":"false","description":"Enable or disable the point marker. If <code>null</code>, the markers are hidden when the data is dense, and shown for more widespread data points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-marker/\" target=\"_blank\">Enabled markers</a>","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","description":"Enable separate styles for the hovered series to visualize that the user hovers either the series itself or the legend. Enabling it has a performance penalty as it requires that a second layer be drawn as a double buffer. This means twice  as much graphics to draw for each plot, which can make a great difference for charts with a high number of series or points.\t\t\t."},{"name":"yAxis--endOnTick","fullname":"yAxis.endOnTick","title":"endOnTick","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to force the axis to end on a tick. Use this option with the <code>maxPadding</code> option to control the axis end.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/basic-line/\" target=\"_blank\">True by default</a> and\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/endontick/\" target=\"_blank\">false</a> for Y axis","deprecated":false},{"name":"xAxis--endOnTick","fullname":"xAxis.endOnTick","title":"endOnTick","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to force the axis to end on a tick. Use this option with the <code>maxPadding</code> option to control the axis end.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/basic-line/\" target=\"_blank\">True by default</a> and\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/endontick/\" target=\"_blank\">false</a> for Y axis","deprecated":false},{"name":"series<area>-events","fullname":"series<area>.events","title":"events","parent":"series<area>","isParent":true},{"name":"series<line>-events","fullname":"series<line>.events","title":"events","parent":"series<line>","isParent":true},{"name":"plotOptions-polygon-events","fullname":"plotOptions.polygon.events","title":"events","parent":"plotOptions-polygon","isParent":true},{"name":"plotOptions-flags-point-events","fullname":"plotOptions.flags.point.events","title":"events","parent":"plotOptions-flags-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-line-point-events","fullname":"plotOptions.line.point.events","title":"events","parent":"plotOptions-line-point","isParent":true,"description":"Events for each single point"},{"name":"series<polygon>-data-events","fullname":"series<polygon>.data.events","title":"events","parent":"series<polygon>-data","isParent":true},{"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<ohlc>-data-events","fullname":"series<ohlc>.data.events","title":"events","parent":"series<ohlc>-data","isParent":true},{"name":"series<flags>-point-events","fullname":"series<flags>.point.events","title":"events","parent":"series<flags>-point","isParent":true,"description":"Events for each single point"},{"name":"series<candlestick>-data-events","fullname":"series<candlestick>.data.events","title":"events","parent":"series<candlestick>-data","isParent":true},{"name":"series<line>-data-events","fullname":"series<line>.data.events","title":"events","parent":"series<line>-data","isParent":true},{"name":"series<ohlc>-point-events","fullname":"series<ohlc>.point.events","title":"events","parent":"series<ohlc>-point","isParent":true,"description":"Events for each single point"},{"name":"series<arearange>-events","fullname":"series<arearange>.events","title":"events","parent":"series<arearange>","isParent":true},{"name":"series<polygon>-point-events","fullname":"series<polygon>.point.events","title":"events","parent":"series<polygon>-point","isParent":true,"description":"Events for each single point"},{"name":"series<scatter>-events","fullname":"series<scatter>.events","title":"events","parent":"series<scatter>","isParent":true},{"name":"series<candlestick>-events","fullname":"series<candlestick>.events","title":"events","parent":"series<candlestick>","isParent":true},{"name":"plotOptions-arearange-events","fullname":"plotOptions.arearange.events","title":"events","parent":"plotOptions-arearange","isParent":true},{"name":"plotOptions-series-events","fullname":"plotOptions.series.events","title":"events","parent":"plotOptions-series","isParent":true},{"name":"plotOptions-spline-events","fullname":"plotOptions.spline.events","title":"events","parent":"plotOptions-spline","isParent":true},{"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":"series<line>-point-events","fullname":"series<line>.point.events","title":"events","parent":"series<line>-point","isParent":true,"description":"Events for each single point"},{"name":"series<areaspline>-data-events","fullname":"series<areaspline>.data.events","title":"events","parent":"series<areaspline>-data","isParent":true},{"name":"plotOptions-line-events","fullname":"plotOptions.line.events","title":"events","parent":"plotOptions-line","isParent":true},{"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-series-point-events","fullname":"plotOptions.series.point.events","title":"events","parent":"plotOptions-series-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-column-events","fullname":"plotOptions.column.events","title":"events","parent":"plotOptions-column","isParent":true},{"name":"series<columnrange>-events","fullname":"series<columnrange>.events","title":"events","parent":"series<columnrange>","isParent":true},{"name":"yAxis-plotLines--events","fullname":"yAxis.plotLines.events","title":"events","parent":"yAxis-plotLines","isParent":false,"returnType":"Object","context":"PlotLineOrBand","description":"An object defining mouse events for the plot line. Supported properties are <code>click</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>.","deprecated":false},{"name":"plotOptions-columnrange-events","fullname":"plotOptions.columnrange.events","title":"events","parent":"plotOptions-columnrange","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-ohlc-events","fullname":"plotOptions.ohlc.events","title":"events","parent":"plotOptions-ohlc","isParent":true},{"name":"series<area>-data-events","fullname":"series<area>.data.events","title":"events","parent":"series<area>-data","isParent":true},{"name":"series<polygon>-events","fullname":"series<polygon>.events","title":"events","parent":"series<polygon>","isParent":true},{"name":"xAxis-plotBands--events","fullname":"xAxis.plotBands.events","title":"events","parent":"xAxis-plotBands","isParent":false,"returnType":"Object","context":"PlotLineOrBand","description":"An object defining mouse events for the plot band. Supported properties are <code>click</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>.","deprecated":false},{"name":"series<column>-events","fullname":"series<column>.events","title":"events","parent":"series<column>","isParent":true},{"name":"series<areasplinerange>-data-events","fullname":"series<areasplinerange>.data.events","title":"events","parent":"series<areasplinerange>-data","isParent":true},{"name":"xAxis-events","fullname":"xAxis.events","title":"events","parent":"xAxis","isParent":true,"description":"Event handlers for the axis."},{"name":"series<arearange>-data-events","fullname":"series<arearange>.data.events","title":"events","parent":"series<arearange>-data","isParent":true},{"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":"series<areasplinerange>-point-events","fullname":"series<areasplinerange>.point.events","title":"events","parent":"series<areasplinerange>-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-areasplinerange-events","fullname":"plotOptions.areasplinerange.events","title":"events","parent":"plotOptions-areasplinerange","isParent":true},{"name":"series<spline>-data-events","fullname":"series<spline>.data.events","title":"events","parent":"series<spline>-data","isParent":true},{"name":"series<area>-point-events","fullname":"series<area>.point.events","title":"events","parent":"series<area>-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","description":"An object defining mouse events for the plot line. Supported properties are <code>click</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>.","deprecated":false},{"name":"plotOptions-scatter-events","fullname":"plotOptions.scatter.events","title":"events","parent":"plotOptions-scatter","isParent":true},{"name":"series<column>-data-events","fullname":"series<column>.data.events","title":"events","parent":"series<column>-data","isParent":true},{"name":"series<scatter>-point-events","fullname":"series<scatter>.point.events","title":"events","parent":"series<scatter>-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-flags-events","fullname":"plotOptions.flags.events","title":"events","parent":"plotOptions-flags","isParent":true},{"name":"plotOptions-ohlc-point-events","fullname":"plotOptions.ohlc.point.events","title":"events","parent":"plotOptions-ohlc-point","isParent":true,"description":"Events for each single point"},{"name":"series<ohlc>-events","fullname":"series<ohlc>.events","title":"events","parent":"series<ohlc>","isParent":true},{"name":"series<spline>-events","fullname":"series<spline>.events","title":"events","parent":"series<spline>","isParent":true},{"name":"plotOptions-areaspline-events","fullname":"plotOptions.areaspline.events","title":"events","parent":"plotOptions-areaspline","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":"plotOptions-area-events","fullname":"plotOptions.area.events","title":"events","parent":"plotOptions-area","isParent":true},{"name":"yAxis-events","fullname":"yAxis.events","title":"events","parent":"yAxis","isParent":true},{"name":"series<spline>-point-events","fullname":"series<spline>.point.events","title":"events","parent":"series<spline>-point","isParent":true,"description":"Events for each single point"},{"name":"series<areasplinerange>-events","fullname":"series<areasplinerange>.events","title":"events","parent":"series<areasplinerange>","isParent":true},{"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":"series<scatter>-data-events","fullname":"series<scatter>.data.events","title":"events","parent":"series<scatter>-data","isParent":true},{"name":"series<candlestick>-point-events","fullname":"series<candlestick>.point.events","title":"events","parent":"series<candlestick>-point","isParent":true,"description":"Events for each single point"},{"name":"series<columnrange>-data-events","fullname":"series<columnrange>.data.events","title":"events","parent":"series<columnrange>-data","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":"series<arearange>-point-events","fullname":"series<arearange>.point.events","title":"events","parent":"series<arearange>-point","isParent":true,"description":"Events for each single point"},{"name":"series<flags>-data-events","fullname":"series<flags>.data.events","title":"events","parent":"series<flags>-data","isParent":true},{"name":"series<areaspline>-point-events","fullname":"series<areaspline>.point.events","title":"events","parent":"series<areaspline>-point","isParent":true,"description":"Events for each single point"},{"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<columnrange>-point-events","fullname":"series<columnrange>.point.events","title":"events","parent":"series<columnrange>-point","isParent":true,"description":"Events for each single point"},{"name":"yAxis-plotBands--events","fullname":"yAxis.plotBands.events","title":"events","parent":"yAxis-plotBands","isParent":false,"returnType":"Object","context":"PlotLineOrBand","description":"An object defining mouse events for the plot band. Supported properties are <code>click</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>.","deprecated":false},{"name":"series<areaspline>-events","fullname":"series<areaspline>.events","title":"events","parent":"series<areaspline>","isParent":true},{"name":"series<column>-point-events","fullname":"series<column>.point.events","title":"events","parent":"series<column>-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-candlestick-point-events","fullname":"plotOptions.candlestick.point.events","title":"events","parent":"plotOptions-candlestick-point","isParent":true,"description":"Events for each single point"},{"name":"plotOptions-candlestick-events","fullname":"plotOptions.candlestick.events","title":"events","parent":"plotOptions-candlestick","isParent":true},{"name":"series<flags>-events","fullname":"series<flags>.events","title":"events","parent":"series<flags>","isParent":true},{"name":"exporting","fullname":"exporting","title":"exporting","isParent":true,"description":"Options for the exporting module. For an overview on the matter, see <a href=\"http://www.highcharts.com/docs/export-module/export-module-overview\">the docs</a>.","deprecated":false},{"name":"exporting--fallbackToExportServer","fullname":"exporting.fallbackToExportServer","title":"fallbackToExportServer","parent":"exporting","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.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","description":"The filename, without extension, to use for the exported chart.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/filename/\" target=\"_blank\">Custom file name</a>","deprecated":false},{"name":"series<areasplinerange>--fillColor","fullname":"series<areasplinerange>.fillColor","title":"fillColor","parent":"series<areasplinerange>","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"series<line>-data-marker-states-hover--fillColor","fullname":"series<line>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<column>-zones--fillColor","fullname":"series<column>.zones.fillColor","title":"fillColor","parent":"series<column>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<area>--fillColor","fullname":"series<area>.fillColor","title":"fillColor","parent":"series<area>","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"series<spline>-marker-states-hover--fillColor","fullname":"series<spline>.marker.states.hover.fillColor","title":"fillColor","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-candlestick-states-hover-marker--fillColor","fullname":"plotOptions.candlestick.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-data-marker-states-select--fillColor","fullname":"series<areaspline>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<areaspline>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<polygon>-data-marker-states-hover--fillColor","fullname":"series<polygon>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-area-marker--fillColor","fullname":"plotOptions.area.marker.fillColor","title":"fillColor","parent":"plotOptions-area-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-series-zones--fillColor","fullname":"plotOptions.series.zones.fillColor","title":"fillColor","parent":"plotOptions-series-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<area>-zones--fillColor","fullname":"series<area>.zones.fillColor","title":"fillColor","parent":"series<area>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<areaspline>-zones--fillColor","fullname":"series<areaspline>.zones.fillColor","title":"fillColor","parent":"series<areaspline>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<scatter>-marker--fillColor","fullname":"series<scatter>.marker.fillColor","title":"fillColor","parent":"series<scatter>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areaspline--fillColor","fullname":"plotOptions.areaspline.fillColor","title":"fillColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"plotOptions-candlestick-zones--fillColor","fullname":"plotOptions.candlestick.zones.fillColor","title":"fillColor","parent":"plotOptions-candlestick-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-polygon-marker--fillColor","fullname":"plotOptions.polygon.marker.fillColor","title":"fillColor","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker--fillColor","fullname":"series<spline>.data.marker.fillColor","title":"fillColor","parent":"series<spline>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-marker-states-select--fillColor","fullname":"series<spline>.marker.states.select.fillColor","title":"fillColor","parent":"series<spline>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<areaspline>-states-hover-marker--fillColor","fullname":"series<areaspline>.states.hover.marker.fillColor","title":"fillColor","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-marker--fillColor","fullname":"series<polygon>.marker.fillColor","title":"fillColor","parent":"series<polygon>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-area-zones--fillColor","fullname":"plotOptions.area.zones.fillColor","title":"fillColor","parent":"plotOptions-area-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<line>-data-marker--fillColor","fullname":"series<line>.data.marker.fillColor","title":"fillColor","parent":"series<line>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker--fillColor","fullname":"series<areaspline>.marker.fillColor","title":"fillColor","parent":"series<areaspline>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<columnrange>-states-hover-marker--fillColor","fullname":"series<columnrange>.states.hover.marker.fillColor","title":"fillColor","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker-states-select--fillColor","fullname":"series<areaspline>.marker.states.select.fillColor","title":"fillColor","parent":"series<areaspline>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<spline>-marker--fillColor","fullname":"series<spline>.marker.fillColor","title":"fillColor","parent":"series<spline>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-scatter-marker--fillColor","fullname":"plotOptions.scatter.marker.fillColor","title":"fillColor","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areaspline-zones--fillColor","fullname":"plotOptions.areaspline.zones.fillColor","title":"fillColor","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-ohlc-states-hover-marker--fillColor","fullname":"plotOptions.ohlc.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-data-marker-states-select--fillColor","fullname":"series<area>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<area>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areasplinerange-zones--fillColor","fullname":"plotOptions.areasplinerange.zones.fillColor","title":"fillColor","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<line>-marker--fillColor","fullname":"series<line>.marker.fillColor","title":"fillColor","parent":"series<line>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<arearange>--fillColor","fullname":"series<arearange>.fillColor","title":"fillColor","parent":"series<arearange>","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"plotOptions-flags-states-hover-marker--fillColor","fullname":"plotOptions.flags.states.hover.marker.fillColor","title":"fillColor","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-marker-states-hover--fillColor","fullname":"series<area>.marker.states.hover.fillColor","title":"fillColor","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areaspline-marker--fillColor","fullname":"plotOptions.areaspline.marker.fillColor","title":"fillColor","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker-states-select--fillColor","fullname":"series<scatter>.marker.states.select.fillColor","title":"fillColor","parent":"series<scatter>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"plotOptions-line-zones--fillColor","fullname":"plotOptions.line.zones.fillColor","title":"fillColor","parent":"plotOptions-line-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-area--fillColor","fullname":"plotOptions.area.fillColor","title":"fillColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"plotOptions-ohlc-zones--fillColor","fullname":"plotOptions.ohlc.zones.fillColor","title":"fillColor","parent":"plotOptions-ohlc-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<area>-states-hover-marker--fillColor","fullname":"series<area>.states.hover.marker.fillColor","title":"fillColor","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-spline-zones--fillColor","fullname":"plotOptions.spline.zones.fillColor","title":"fillColor","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<polygon>-zones--fillColor","fullname":"series<polygon>.zones.fillColor","title":"fillColor","parent":"series<polygon>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-scatter-zones--fillColor","fullname":"plotOptions.scatter.zones.fillColor","title":"fillColor","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-arearange--fillColor","fullname":"plotOptions.arearange.fillColor","title":"fillColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker-states-hover--fillColor","fullname":"series<areaspline>.marker.states.hover.fillColor","title":"fillColor","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areasplinerange>-zones--fillColor","fullname":"series<areasplinerange>.zones.fillColor","title":"fillColor","parent":"series<areasplinerange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<line>-marker-states-select--fillColor","fullname":"series<line>.marker.states.select.fillColor","title":"fillColor","parent":"series<line>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-data-marker--fillColor","fullname":"series<areaspline>.data.marker.fillColor","title":"fillColor","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-spline-marker--fillColor","fullname":"plotOptions.spline.marker.fillColor","title":"fillColor","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-column-zones--fillColor","fullname":"plotOptions.column.zones.fillColor","title":"fillColor","parent":"plotOptions-column-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<polygon>-marker-states-hover--fillColor","fullname":"series<polygon>.marker.states.hover.fillColor","title":"fillColor","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker-states-select--fillColor","fullname":"series<spline>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<spline>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<ohlc>-zones--fillColor","fullname":"series<ohlc>.zones.fillColor","title":"fillColor","parent":"series<ohlc>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-zones--fillColor","fullname":"series<spline>.zones.fillColor","title":"fillColor","parent":"series<spline>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<candlestick>-zones--fillColor","fullname":"series<candlestick>.zones.fillColor","title":"fillColor","parent":"series<candlestick>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<scatter>-data-marker-states-select--fillColor","fullname":"series<scatter>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<scatter>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<line>-zones--fillColor","fullname":"series<line>.zones.fillColor","title":"fillColor","parent":"series<line>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<polygon>-data-marker--fillColor","fullname":"series<polygon>.data.marker.fillColor","title":"fillColor","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-states-hover-marker--fillColor","fullname":"series<scatter>.states.hover.marker.fillColor","title":"fillColor","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areasplinerange--fillColor","fullname":"plotOptions.areasplinerange.fillColor","title":"fillColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-columnrange-zones--fillColor","fullname":"plotOptions.columnrange.zones.fillColor","title":"fillColor","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<areaspline>--fillColor","fullname":"series<areaspline>.fillColor","title":"fillColor","parent":"series<areaspline>","isParent":false,"returnType":"Color","defaults":"null","description":"Fill color or gradient for the area. When <code>null</code>, the series' <code>color</code>  is  used with the series' <code>fillOpacity</code>."},{"name":"series<flags>-states-hover-marker--fillColor","fullname":"series<flags>.states.hover.marker.fillColor","title":"fillColor","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<line>-data-marker-states-select--fillColor","fullname":"series<line>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<line>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<area>-marker--fillColor","fullname":"series<area>.marker.fillColor","title":"fillColor","parent":"series<area>-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<candlestick>-states-hover-marker--fillColor","fullname":"series<candlestick>.states.hover.marker.fillColor","title":"fillColor","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<arearange>-states-hover-marker--fillColor","fullname":"series<arearange>.states.hover.marker.fillColor","title":"fillColor","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<arearange>-zones--fillColor","fullname":"series<arearange>.zones.fillColor","title":"fillColor","parent":"series<arearange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-marker-states-select--fillColor","fullname":"series<area>.marker.states.select.fillColor","title":"fillColor","parent":"series<area>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-zones--fillColor","fullname":"series<scatter>.zones.fillColor","title":"fillColor","parent":"series<scatter>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-arearange-zones--fillColor","fullname":"plotOptions.arearange.zones.fillColor","title":"fillColor","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"plotOptions-polygon-zones--fillColor","fullname":"plotOptions.polygon.zones.fillColor","title":"fillColor","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<scatter>-data-marker-states-hover--fillColor","fullname":"series<scatter>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-data-marker--fillColor","fullname":"series<area>.data.marker.fillColor","title":"fillColor","parent":"series<area>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<flags>-zones--fillColor","fullname":"series<flags>.zones.fillColor","title":"fillColor","parent":"series<flags>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<columnrange>-zones--fillColor","fullname":"series<columnrange>.zones.fillColor","title":"fillColor","parent":"series<columnrange>-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<scatter>-data-marker--fillColor","fullname":"series<scatter>.data.marker.fillColor","title":"fillColor","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<column>-states-hover-marker--fillColor","fullname":"series<column>.states.hover.marker.fillColor","title":"fillColor","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-series-marker--fillColor","fullname":"plotOptions.series.marker.fillColor","title":"fillColor","parent":"plotOptions-series-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<ohlc>-states-hover-marker--fillColor","fullname":"series<ohlc>.states.hover.marker.fillColor","title":"fillColor","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker-states-hover--fillColor","fullname":"series<scatter>.marker.states.hover.fillColor","title":"fillColor","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-flags-zones--fillColor","fullname":"plotOptions.flags.zones.fillColor","title":"fillColor","parent":"plotOptions-flags-zones","isParent":false,"returnType":"Color","since":"2.1.0","description":"Defines the fill color for the series (in area type series)","seeAlso":"<a href=\"#plotOption.area.fillColor\">fillColor</a>","deprecated":false},{"name":"series<areasplinerange>-states-hover-marker--fillColor","fullname":"series<areasplinerange>.states.hover.marker.fillColor","title":"fillColor","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-states-hover-marker--fillColor","fullname":"series<polygon>.states.hover.marker.fillColor","title":"fillColor","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-states-hover-marker--fillColor","fullname":"series<spline>.states.hover.marker.fillColor","title":"fillColor","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-marker-states-select--fillColor","fullname":"series<polygon>.marker.states.select.fillColor","title":"fillColor","parent":"series<polygon>-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<line>-states-hover-marker--fillColor","fullname":"series<line>.states.hover.marker.fillColor","title":"fillColor","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<line>-marker-states-hover--fillColor","fullname":"series<line>.marker.states.hover.fillColor","title":"fillColor","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-data-marker-states-select--fillColor","fullname":"series<polygon>.data.marker.states.select.fillColor","title":"fillColor","parent":"series<polygon>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"name":"series<area>-data-marker-states-hover--fillColor","fullname":"series<area>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker.","deprecated":false},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-line-marker--fillColor","fullname":"plotOptions.line.marker.fillColor","title":"fillColor","parent":"plotOptions-line-marker","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"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","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-data-marker-states-hover--fillColor","fullname":"series<areaspline>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker-states-hover--fillColor","fullname":"series<spline>.data.marker.states.hover.fillColor","title":"fillColor","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"null","description":"The fill color of the point marker. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areaspline--fillOpacity","fullname":"plotOptions.areaspline.fillOpacity","title":"fillOpacity","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"series<areasplinerange>--fillOpacity","fullname":"series<areasplinerange>.fillOpacity","title":"fillOpacity","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"series<area>--fillOpacity","fullname":"series<area>.fillOpacity","title":"fillOpacity","parent":"series<area>","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"plotOptions-area--fillOpacity","fullname":"plotOptions.area.fillOpacity","title":"fillOpacity","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"plotOptions-arearange--fillOpacity","fullname":"plotOptions.arearange.fillOpacity","title":"fillOpacity","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"series<arearange>--fillOpacity","fullname":"series<arearange>.fillOpacity","title":"fillOpacity","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"series<areaspline>--fillOpacity","fullname":"series<areaspline>.fillOpacity","title":"fillOpacity","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"plotOptions-areasplinerange--fillOpacity","fullname":"plotOptions.areasplinerange.fillOpacity","title":"fillOpacity","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":".75","description":"Fill opacity for the area. Note that when you set an explicit <code>fillColor</code>, the <code>fillOpacity</code> is not applied. Instead, you should define the opacity in the <code>fillColor</code> with an rgba color definition.","deprecated":false},{"name":"plotOptions-flags","fullname":"plotOptions.flags","title":"flags","parent":"plotOptions","isParent":true,"returnType":"","since":"","description":"","demo":"","deprecated":false},{"name":"title--floating","fullname":"title.floating","title":"floating","parent":"title","isParent":false,"returnType":"Boolean","defaults":"false","description":"When the title is floating, the plot area will not move to make space for it.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-floating/\" target=\"_blank\">true - title on top of the plot area</a>."},{"name":"subtitle--floating","fullname":"subtitle.floating","title":"floating","parent":"subtitle","isParent":false,"returnType":"Boolean","defaults":"false","description":"When the subtitle is floating, the plot area will not move to make space for it.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-footnote\" target=\"_blank\">Footnote floating at bottom right of plot area</a>","deprecated":false},{"name":"legend--floating","fullname":"legend.floating","title":"floating","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","description":"When the legend is floating, the plot area ignores it and is allowed to be placed below it."},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/lazy-loading/\" target=\"_blank\">Prevent negative stock price on Y axis</a>","seeAlso":"<a href=\"#yAxis.ceiling\">ceiling</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/lazy-loading/\" target=\"_blank\">Prevent negative stock price on Y axis</a>","seeAlso":"<a href=\"#yAxis.ceiling\">ceiling</a>","deprecated":false},{"name":"series<area>-tooltip--followPointer","fullname":"series<area>.tooltip.followPointer","title":"followPointer","parent":"series<area>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-tooltip--followPointer","fullname":"series<flags>.tooltip.followPointer","title":"followPointer","parent":"series<flags>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-tooltip--followPointer","fullname":"plotOptions.ohlc.tooltip.followPointer","title":"followPointer","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-tooltip--followPointer","fullname":"series<column>.tooltip.followPointer","title":"followPointer","parent":"series<column>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-tooltip--followPointer","fullname":"series<candlestick>.tooltip.followPointer","title":"followPointer","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-tooltip--followPointer","fullname":"series<areasplinerange>.tooltip.followPointer","title":"followPointer","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-tooltip--followPointer","fullname":"series<line>.tooltip.followPointer","title":"followPointer","parent":"series<line>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-tooltip--followPointer","fullname":"plotOptions.flags.tooltip.followPointer","title":"followPointer","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-tooltip--followPointer","fullname":"plotOptions.candlestick.tooltip.followPointer","title":"followPointer","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-tooltip--followPointer","fullname":"series<ohlc>.tooltip.followPointer","title":"followPointer","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-tooltip--followPointer","fullname":"series<arearange>.tooltip.followPointer","title":"followPointer","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-tooltip--followPointer","fullname":"series<spline>.tooltip.followPointer","title":"followPointer","parent":"series<spline>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","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":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"tooltip--followPointer","fullname":"tooltip.followPointer","title":"followPointer","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-tooltip--followPointer","fullname":"series<columnrange>.tooltip.followPointer","title":"followPointer","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-tooltip--followPointer","fullname":"series<areaspline>.tooltip.followPointer","title":"followPointer","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"<p>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 <code>plotOptions</code> for those series types. </p>\r\n<p>For touch moves to behave the same way, <a href=\"#tooltip.followTouchMove\">followTouchMove</a> must be <code>true</code> also.</p>","demo":"","seeAlso":"","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<columnrange>-tooltip--followTouchMove","fullname":"series<columnrange>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"plotOptions-flags-tooltip--followTouchMove","fullname":"plotOptions.flags.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<candlestick>-tooltip--followTouchMove","fullname":"series<candlestick>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"plotOptions-ohlc-tooltip--followTouchMove","fullname":"plotOptions.ohlc.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<column>-tooltip--followTouchMove","fullname":"series<column>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<column>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<areaspline>-tooltip--followTouchMove","fullname":"series<areaspline>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<spline>-tooltip--followTouchMove","fullname":"series<spline>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<spline>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"plotOptions-candlestick-tooltip--followTouchMove","fullname":"plotOptions.candlestick.tooltip.followTouchMove","title":"followTouchMove","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"tooltip--followTouchMove","fullname":"tooltip.followTouchMove","title":"followTouchMove","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<arearange>-tooltip--followTouchMove","fullname":"series<arearange>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<area>-tooltip--followTouchMove","fullname":"series<area>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<area>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<flags>-tooltip--followTouchMove","fullname":"series<flags>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<flags>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<ohlc>-tooltip--followTouchMove","fullname":"series<ohlc>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","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":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<line>-tooltip--followTouchMove","fullname":"series<line>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<line>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<areasplinerange>-tooltip--followTouchMove","fullname":"series<areasplinerange>.tooltip.followTouchMove","title":"followTouchMove","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.1","description":"Whether the tooltip should follow the finger as it moves on a touch device. In order to take effect, <a href=\"#chart.zoomType\">chart.zoomType</a> and <a href=\"#chart.pinchType\">chart.pinchType</a> must be disabled.","deprecated":false},{"name":"series<spline>-dataGrouping--forced","fullname":"series<spline>.dataGrouping.forced","title":"forced","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-spline-dataGrouping--forced","fullname":"plotOptions.spline.dataGrouping.forced","title":"forced","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-polygon-dataGrouping--forced","fullname":"plotOptions.polygon.dataGrouping.forced","title":"forced","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-scatter-dataGrouping--forced","fullname":"plotOptions.scatter.dataGrouping.forced","title":"forced","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<scatter>-dataGrouping--forced","fullname":"series<scatter>.dataGrouping.forced","title":"forced","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-areaspline-dataGrouping--forced","fullname":"plotOptions.areaspline.dataGrouping.forced","title":"forced","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<ohlc>-dataGrouping--forced","fullname":"series<ohlc>.dataGrouping.forced","title":"forced","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-series-dataGrouping--forced","fullname":"plotOptions.series.dataGrouping.forced","title":"forced","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-columnrange-dataGrouping--forced","fullname":"plotOptions.columnrange.dataGrouping.forced","title":"forced","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-line-dataGrouping--forced","fullname":"plotOptions.line.dataGrouping.forced","title":"forced","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<line>-dataGrouping--forced","fullname":"series<line>.dataGrouping.forced","title":"forced","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<areaspline>-dataGrouping--forced","fullname":"series<areaspline>.dataGrouping.forced","title":"forced","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-areasplinerange-dataGrouping--forced","fullname":"plotOptions.areasplinerange.dataGrouping.forced","title":"forced","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<areasplinerange>-dataGrouping--forced","fullname":"series<areasplinerange>.dataGrouping.forced","title":"forced","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-area-dataGrouping--forced","fullname":"plotOptions.area.dataGrouping.forced","title":"forced","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-column-dataGrouping--forced","fullname":"plotOptions.column.dataGrouping.forced","title":"forced","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<polygon>-dataGrouping--forced","fullname":"series<polygon>.dataGrouping.forced","title":"forced","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--forced","fullname":"plotOptions.arearange.dataGrouping.forced","title":"forced","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<columnrange>-dataGrouping--forced","fullname":"series<columnrange>.dataGrouping.forced","title":"forced","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<candlestick>-dataGrouping--forced","fullname":"series<candlestick>.dataGrouping.forced","title":"forced","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<arearange>-dataGrouping--forced","fullname":"series<arearange>.dataGrouping.forced","title":"forced","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--forced","fullname":"plotOptions.candlestick.dataGrouping.forced","title":"forced","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<area>-dataGrouping--forced","fullname":"series<area>.dataGrouping.forced","title":"forced","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"series<column>-dataGrouping--forced","fullname":"series<column>.dataGrouping.forced","title":"forced","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"plotOptions-ohlc-dataGrouping--forced","fullname":"plotOptions.ohlc.dataGrouping.forced","title":"forced","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"When data grouping is forced, it runs no matter how small the intervals are. This can be handy for example when the sum should be calculated for values appearing at random times within each hour.","deprecated":false},{"name":"exporting--formAttributes","fullname":"exporting.formAttributes","title":"formAttributes","parent":"exporting","isParent":false,"returnType":"Object","since":"1.3.8","description":"An object containing additional attributes for the POST form that sends the SVG to the export server. For example, a <code>target</code> can be set to make sure the generated image is received in another frame, or a custom <code>enctype</code> or <code>encoding</code> can be set.","deprecated":false},{"name":"series<arearange>-dataLabels--format","fullname":"series<arearange>.dataLabels.format","title":"format","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<line>-dataLabels--format","fullname":"series<line>.dataLabels.format","title":"format","parent":"series<line>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--format","fullname":"plotOptions.ohlc.dataLabels.format","title":"format","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the axis label. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/labels-format/\" target=\"_blank\">Add units to Y axis label</a>","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--format","fullname":"plotOptions.candlestick.dataLabels.format","title":"format","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<area>-dataLabels--format","fullname":"series<area>.dataLabels.format","title":"format","parent":"series<area>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"yAxis-crosshair-label--format","fullname":"yAxis.crosshair.label.format","title":"format","parent":"yAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"","values":"","since":"2.1","description":"A format string for the crosshair label. Defaults to <code>{value}</code> for numeric axes and <code>{value:%b %d, %Y}</code> for datetime axes.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--format","fullname":"series<scatter>.dataLabels.format","title":"format","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--format","fullname":"plotOptions.flags.dataLabels.format","title":"format","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<column>-dataLabels--format","fullname":"series<column>.dataLabels.format","title":"format","parent":"series<column>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<flags>-dataLabels--format","fullname":"series<flags>.dataLabels.format","title":"format","parent":"series<flags>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--format","fullname":"series<areasplinerange>.dataLabels.format","title":"format","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<polygon>-dataLabels--format","fullname":"series<polygon>.dataLabels.format","title":"format","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<columnrange>-dataLabels--format","fullname":"series<columnrange>.dataLabels.format","title":"format","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<candlestick>-dataLabels--format","fullname":"series<candlestick>.dataLabels.format","title":"format","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the axis label. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/labels-format/\" target=\"_blank\">Add units to Y axis label</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--format","fullname":"series<ohlc>.dataLabels.format","title":"format","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<areaspline>-dataLabels--format","fullname":"series<areaspline>.dataLabels.format","title":"format","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<spline>-dataLabels--format","fullname":"series<spline>.dataLabels.format","title":"format","parent":"series<spline>-dataLabels","isParent":false,"returnType":"String","defaults":"{y}","since":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"xAxis-crosshair-label--format","fullname":"xAxis.crosshair.label.format","title":"format","parent":"xAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"","values":"","since":"2.1","description":"A format string for the crosshair label. Defaults to <code>{value}</code> for numeric axes and <code>{value:%b %d, %Y}</code> for datetime axes.","demo":"","seeAlso":"","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":"1.3","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> for the data label. Available variables are the same as for <code>formatter</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-format/\" target=\"_blank\">Add a unit</a>","deprecated":false},{"name":"series<area>-dataLabels--formatter","fullname":"series<area>.dataLabels.formatter","title":"formatter","parent":"series<area>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<flags>-dataLabels--formatter","fullname":"series<flags>.dataLabels.formatter","title":"formatter","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<polygon>-dataLabels--formatter","fullname":"series<polygon>.dataLabels.formatter","title":"formatter","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<areaspline>-dataLabels--formatter","fullname":"series<areaspline>.dataLabels.formatter","title":"formatter","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<columnrange>-dataLabels--formatter","fullname":"series<columnrange>.dataLabels.formatter","title":"formatter","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<spline>-dataLabels--formatter","fullname":"series<spline>.dataLabels.formatter","title":"formatter","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--formatter","fullname":"plotOptions.ohlc.dataLabels.formatter","title":"formatter","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<candlestick>-dataLabels--formatter","fullname":"series<candlestick>.dataLabels.formatter","title":"formatter","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<line>-dataLabels--formatter","fullname":"series<line>.dataLabels.formatter","title":"formatter","parent":"series<line>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"xAxis-labels--formatter","fullname":"xAxis.labels.formatter","title":"formatter","parent":"xAxis-labels","isParent":false,"returnType":"Function","defaults":"","description":"Callback JavaScript function to format the label. The value is \r given by <code>this.value</code>. Additional properties for <code>this</code> are\r <code>axis</code>, <code>chart</code>, <code>isFirst</code> and <code>isLast</code>.\r Defaults to: \r\n<pre>function() {\r\n\treturn this.value;\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/labels-formatter/\" target=\"_blank\">Added units on Y axis</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--formatter","fullname":"series<ohlc>.dataLabels.formatter","title":"formatter","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"plotOptions-flags-dataLabels--formatter","fullname":"plotOptions.flags.dataLabels.formatter","title":"formatter","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"tooltip--formatter","fullname":"tooltip.formatter","title":"formatter","parent":"tooltip","isParent":false,"returnType":"Function","defaults":"","description":"<p>Callback function to format the text of the tooltip from scratch. Return false to disable tooltip for a specific point on series.</p> <p>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:  <code>&lt;b&gt;</code>, <code>&lt;strong&gt;</code>, <code>&lt;i&gt;</code>, <code>&lt;em&gt;</code>, <code>&lt;br/&gt;</code>, <code>&lt;span&gt;</code>. Spans can be styled with a <code>style</code> attribute, but only text-related CSS that is  shared with SVG is handled. </p> <p>Since version 2.1 the tooltip can be shared between multiple series through  the <code>shared</code> 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 <code>x</code>, which is common for all points, are kept in  an array, <code>this.points</code>.</p>  <p>Available data are:</p> <dl> \t<dt>this.percentage (not shared) / this.points[i].percentage (shared)</dt> \t<dd>Stacked series and pies only. The point's percentage of the total.</dd> \t \t<dt>this.point (not shared) / this.points[i].point (shared)</dt> \t<dd>The point object. The point name, if defined, is available  through <code>this.point.name</code>.</dd> \t \t<dt>this.points</dt> \t<dd>In a shared tooltip, this is an array containing all other properties for each point.</dd> \t \t<dt>this.series (not shared) / this.points[i].series (shared)</dt> \t<dd>The series object. The series name is available  through <code>this.series.name</code>.</dd>  \t<dt>this.total (not shared) / this.points[i].total (shared)</dt> \t<dd>Stacked series only. The total value at this point's x value.</dd> \t \t<dt>this.x</dt> \t<dd>The x value. This property is the same regardless of the tooltip being shared or not.</dd> \t \t<dt>this.y (not shared) / this.points[i].y (shared)</dt> \t<dd>The y value.</dd>  </dl>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/formatter/\" target=\"_blank\">formatting with shared tooltip</a>"},{"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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--formatter","fullname":"series<areasplinerange>.dataLabels.formatter","title":"formatter","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"xAxis-crosshair-label--formatter","fullname":"xAxis.crosshair.label.formatter","title":"formatter","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Function","context":"","defaults":"","values":"","since":"2.1","description":"Formatter function for the label text.","demo":"","seeAlso":"","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<arearange>-dataLabels--formatter","fullname":"series<arearange>.dataLabels.formatter","title":"formatter","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--formatter","fullname":"plotOptions.candlestick.dataLabels.formatter","title":"formatter","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"series<scatter>-dataLabels--formatter","fullname":"series<scatter>.dataLabels.formatter","title":"formatter","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","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 <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"yAxis-labels--formatter","fullname":"yAxis.labels.formatter","title":"formatter","parent":"yAxis-labels","isParent":false,"returnType":"Function","defaults":"","description":"Callback JavaScript function to format the label. The value is \r given by <code>this.value</code>. Additional properties for <code>this</code> are\r <code>axis</code>, <code>chart</code>, <code>isFirst</code> and <code>isLast</code>.\r Defaults to: \r\n<pre>function() {\r\n\treturn this.value;\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/labels-formatter/\" target=\"_blank\">Added units on Y axis</a>","deprecated":false},{"name":"series<column>-dataLabels--formatter","fullname":"series<column>.dataLabels.formatter","title":"formatter","parent":"series<column>-dataLabels","isParent":false,"returnType":"Function","description":"Callback JavaScript function to format the data label. Note that if a <code>format</code> is defined, the format takes precedence and the formatter is ignored. Available data are:\r\n<table>\r\n<tbody><tr>\r\n  <td><code>this.percentage</code></td>\r\n  <td>Stacked series and pies only. The point's percentage of the total.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.point</code></td>\r\n  <td>The point object. The point name, if defined, is available \r\nthrough <code>this.point.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.series</code>:</td>\r\n  <td>The series object. The series name is available \r\nthrough <code>this.series.name</code>.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.total</code></td>\r\n  <td>Stacked series only. The total value at this point's x value.</td>\r\n</tr>\t\t\t\t\r\n<tr>\r\n  <td><code>this.x</code>:</td>\r\n  <td>The x value.</td>\r\n</tr>\r\n<tr>\r\n  <td><code>this.y</code>:</td>\r\n  <td>The y value.</td>\r\n</tr>\r\n</tbody></table>","deprecated":false},{"name":"yAxis-crosshair-label--formatter","fullname":"yAxis.crosshair.label.formatter","title":"formatter","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Function","context":"","defaults":"","values":"","since":"2.1","description":"Formatter function for the label text.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--from","fullname":"yAxis.plotBands.from","title":"from","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","description":"The start position of the plot band in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"name":"xAxis-breaks--from","fullname":"xAxis.breaks.from","title":"from","parent":"xAxis-breaks","isParent":false,"returnType":"Number","since":"2.1.0","description":"The point where the break starts.","deprecated":false},{"name":"xAxis-plotBands--from","fullname":"xAxis.plotBands.from","title":"from","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","description":"The start position of the plot band in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"name":"yAxis-breaks--from","fullname":"yAxis.breaks.from","title":"from","parent":"yAxis-breaks","isParent":false,"returnType":"Number","since":"2.1.0","description":"The point where the break starts.","deprecated":false},{"name":"series<areaspline>--gapSize","fullname":"series<areaspline>.gapSize","title":"gapSize","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-areaspline--gapSize","fullname":"plotOptions.areaspline.gapSize","title":"gapSize","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-series--gapSize","fullname":"plotOptions.series.gapSize","title":"gapSize","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"series<arearange>--gapSize","fullname":"series<arearange>.gapSize","title":"gapSize","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-area--gapSize","fullname":"plotOptions.area.gapSize","title":"gapSize","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"series<area>--gapSize","fullname":"series<area>.gapSize","title":"gapSize","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"series<line>--gapSize","fullname":"series<line>.gapSize","title":"gapSize","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-line--gapSize","fullname":"plotOptions.line.gapSize","title":"gapSize","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-arearange--gapSize","fullname":"plotOptions.arearange.gapSize","title":"gapSize","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"series<areasplinerange>--gapSize","fullname":"series<areasplinerange>.gapSize","title":"gapSize","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-spline--gapSize","fullname":"plotOptions.spline.gapSize","title":"gapSize","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-areasplinerange--gapSize","fullname":"plotOptions.areasplinerange.gapSize","title":"gapSize","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"series<spline>--gapSize","fullname":"series<spline>.gapSize","title":"gapSize","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"0","description":"<p>Defines when to display a gap in the graph. A gap size of 5 means that if the distance between two points is greater than five times that of the two closest points, the  graph will be broken.</p>\r\n\r\n<p>In practice, this option is most often used to visualize gaps in time series. In a stock chart, intraday data is available for daytime hours, while gaps will appear \tin nights and weekends.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-gapsize/\" target=\"_blank\">\r\n\t\t\t\tSetting the gap size to 2 introduces gaps for weekends in daily datasets.</a>","seeAlso":"<a href=\"#xAxis.breaks\">xAxis.breaks</a>","deprecated":false},{"name":"plotOptions-areasplinerange--getExtremesFromAll","fullname":"plotOptions.areasplinerange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-column--getExtremesFromAll","fullname":"plotOptions.column.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<spline>--getExtremesFromAll","fullname":"series<spline>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<scatter>--getExtremesFromAll","fullname":"series<scatter>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-area--getExtremesFromAll","fullname":"plotOptions.area.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-ohlc--getExtremesFromAll","fullname":"plotOptions.ohlc.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-arearange--getExtremesFromAll","fullname":"plotOptions.arearange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-spline--getExtremesFromAll","fullname":"plotOptions.spline.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<ohlc>--getExtremesFromAll","fullname":"series<ohlc>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<line>--getExtremesFromAll","fullname":"series<line>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-polygon--getExtremesFromAll","fullname":"plotOptions.polygon.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<column>--getExtremesFromAll","fullname":"series<column>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-flags--getExtremesFromAll","fullname":"plotOptions.flags.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<areaspline>--getExtremesFromAll","fullname":"series<areaspline>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<arearange>--getExtremesFromAll","fullname":"series<arearange>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<candlestick>--getExtremesFromAll","fullname":"series<candlestick>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-scatter--getExtremesFromAll","fullname":"plotOptions.scatter.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-candlestick--getExtremesFromAll","fullname":"plotOptions.candlestick.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<areasplinerange>--getExtremesFromAll","fullname":"series<areasplinerange>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-series--getExtremesFromAll","fullname":"plotOptions.series.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<area>--getExtremesFromAll","fullname":"series<area>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<columnrange>--getExtremesFromAll","fullname":"series<columnrange>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-areaspline--getExtremesFromAll","fullname":"plotOptions.areaspline.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<flags>--getExtremesFromAll","fullname":"series<flags>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-line--getExtremesFromAll","fullname":"plotOptions.line.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"series<polygon>--getExtremesFromAll","fullname":"series<polygon>.getExtremesFromAll","title":"getExtremesFromAll","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"plotOptions-columnrange--getExtremesFromAll","fullname":"plotOptions.columnrange.getExtremesFromAll","title":"getExtremesFromAll","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.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.","deprecated":false},{"name":"global--getTimezoneOffset","fullname":"global.getTimezoneOffset","title":"getTimezoneOffset","parent":"global","isParent":false,"returnType":"Function","context":"","defaults":"","values":"","since":"2.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":" <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/global/gettimezoneoffset/\" target=\"_blank\">Use moment.js to draw Oslo time regardless of browser locale</a>","seeAlso":"<a href=\"#global.timezoneOffset\">global.timezoneOffset</a>","deprecated":false},{"name":"global","fullname":"global","title":"global","isParent":true,"description":"Global options that don't apply to each chart. These options, like the <code>lang</code>\n\t\toptions, must be set using the <code>Highcharts.setOptions</code> method.\n<pre>Highcharts.setOptions({\n\tglobal: {\n\t\tuseUTC: false\n\t}\n});</pre>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinecolor/\" target=\"_blank\">Green lines</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinecolor/\" target=\"_blank\">Green lines</a>","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\"]","description":"The dash or dot style of the grid lines. For possible values, see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this demonstration</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinedashstyle/\" target=\"_blank\">Long dashes</a>","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\"]","description":"The dash or dot style of the grid lines. For possible values, see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this demonstration</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinedashstyle/\" target=\"_blank\">Long dashes</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinewidth/\" target=\"_blank\">2px lines</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/gridlinewidth/\" target=\"_blank\">2px lines</a>"},{"name":"xAxis--gridZIndex","fullname":"xAxis.gridZIndex","title":"gridZIndex","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"1","since":"1.1","description":"The Z index of the grid lines.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/gridzindex/\" target=\"_blank\">A Z index of 4 renders the grid above the graph</a>","deprecated":false},{"name":"yAxis--gridZIndex","fullname":"yAxis.gridZIndex","title":"gridZIndex","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"1","since":"1.1","description":"The Z index of the grid lines.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/gridzindex/\" target=\"_blank\">A Z index of 4 renders the grid above the graph</a>","deprecated":false},{"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."},{"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."},{"name":"series<column>--groupPadding","fullname":"series<column>.groupPadding","title":"groupPadding","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"plotOptions-candlestick--groupPadding","fullname":"plotOptions.candlestick.groupPadding","title":"groupPadding","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"series<columnrange>--groupPadding","fullname":"series<columnrange>.groupPadding","title":"groupPadding","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"plotOptions-ohlc--groupPadding","fullname":"plotOptions.ohlc.groupPadding","title":"groupPadding","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"series<candlestick>--groupPadding","fullname":"series<candlestick>.groupPadding","title":"groupPadding","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"series<ohlc>--groupPadding","fullname":"series<ohlc>.groupPadding","title":"groupPadding","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"0.2","description":"Padding between each value groups, in x axis units."},{"name":"plotOptions-column-dataGrouping--groupPixelWidth","fullname":"plotOptions.column.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"series<line>-dataGrouping--groupPixelWidth","fullname":"series<line>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--groupPixelWidth","fullname":"plotOptions.candlestick.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"series<arearange>-dataGrouping--groupPixelWidth","fullname":"series<arearange>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<ohlc>-dataGrouping--groupPixelWidth","fullname":"series<ohlc>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-areasplinerange-dataGrouping--groupPixelWidth","fullname":"plotOptions.areasplinerange.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--groupPixelWidth","fullname":"plotOptions.arearange.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-spline-dataGrouping--groupPixelWidth","fullname":"plotOptions.spline.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-line-dataGrouping--groupPixelWidth","fullname":"plotOptions.line.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<scatter>-dataGrouping--groupPixelWidth","fullname":"series<scatter>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<polygon>-dataGrouping--groupPixelWidth","fullname":"series<polygon>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<areaspline>-dataGrouping--groupPixelWidth","fullname":"series<areaspline>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<columnrange>-dataGrouping--groupPixelWidth","fullname":"series<columnrange>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-scatter-dataGrouping--groupPixelWidth","fullname":"plotOptions.scatter.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<area>-dataGrouping--groupPixelWidth","fullname":"series<area>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<areasplinerange>-dataGrouping--groupPixelWidth","fullname":"series<areasplinerange>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-ohlc-dataGrouping--groupPixelWidth","fullname":"plotOptions.ohlc.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-areaspline-dataGrouping--groupPixelWidth","fullname":"plotOptions.areaspline.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<candlestick>-dataGrouping--groupPixelWidth","fullname":"series<candlestick>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-columnrange-dataGrouping--groupPixelWidth","fullname":"plotOptions.columnrange.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-polygon-dataGrouping--groupPixelWidth","fullname":"plotOptions.polygon.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"plotOptions-series-dataGrouping--groupPixelWidth","fullname":"plotOptions.series.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<column>-dataGrouping--groupPixelWidth","fullname":"series<column>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Number","defaults":"10","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. Defaults to <code>10</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-datagrouping-grouppixelwidth/\" target=\"_blank\">\n\t\t\t\tTwo series with the same data density but different groupPixelWidth\n\t\t\t</a>"},{"name":"plotOptions-area-dataGrouping--groupPixelWidth","fullname":"plotOptions.area.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<spline>-dataGrouping--groupPixelWidth","fullname":"series<spline>.dataGrouping.groupPixelWidth","title":"groupPixelWidth","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Number","defaults":"2","description":"The approximate pixel width of each group. If for example a series with 30 points is displayed over a 600 pixel wide plot area, no grouping is performed. If however the series contains so many points that the spacing is less than the  groupPixelWidth, Highcharts will try to group it into appropriate groups so that each is more or less two pixels wide. If multiple series with different group pixel widths are drawn on the same x axis, all series will take the greatest width. For example, line series have 2px default group width, while column series have 10px. If combined, both the line and the column will have 10px by default.","deprecated":false},{"name":"series<columnrange>--grouping","fullname":"series<columnrange>.grouping","title":"grouping","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--grouping","fullname":"plotOptions.columnrange.grouping","title":"grouping","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc--grouping","fullname":"plotOptions.ohlc.grouping","title":"grouping","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"series<ohlc>--grouping","fullname":"series<ohlc>.grouping","title":"grouping","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-column--grouping","fullname":"plotOptions.column.grouping","title":"grouping","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick--grouping","fullname":"plotOptions.candlestick.grouping","title":"grouping","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"series<candlestick>--grouping","fullname":"series<candlestick>.grouping","title":"grouping","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"series<column>--grouping","fullname":"series<column>.grouping","title":"grouping","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-grouping-false/\" target=\"_blank\">Grouping disabled</a>","seeAlso":"","deprecated":false},{"name":"series<line>-states-hover-halo","fullname":"series<line>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<areasplinerange>-states-hover-halo","fullname":"series<areasplinerange>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<candlestick>-states-hover-halo","fullname":"series<candlestick>.states.hover.halo","title":"halo","parent":"series<candlestick>-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<flags>-states-hover-halo","fullname":"series<flags>.states.hover.halo","title":"halo","parent":"series<flags>-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover-halo","fullname":"plotOptions.candlestick.states.hover.halo","title":"halo","parent":"plotOptions-candlestick-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<ohlc>-states-hover-halo","fullname":"series<ohlc>.states.hover.halo","title":"halo","parent":"series<ohlc>-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"plotOptions-flags-states-hover-halo","fullname":"plotOptions.flags.states.hover.halo","title":"halo","parent":"plotOptions-flags-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<scatter>-states-hover-halo","fullname":"series<scatter>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<column>-states-hover-halo","fullname":"series<column>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<arearange>-states-hover-halo","fullname":"series<arearange>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<polygon>-states-hover-halo","fullname":"series<polygon>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<areaspline>-states-hover-halo","fullname":"series<areaspline>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<columnrange>-states-hover-halo","fullname":"series<columnrange>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<spline>-states-hover-halo","fullname":"series<spline>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"series<area>-states-hover-halo","fullname":"series<area>.states.hover.halo","title":"halo","parent":"series<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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover-halo","fullname":"plotOptions.ohlc.states.hover.halo","title":"halo","parent":"plotOptions-ohlc-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 <code>halo</code> option to <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/halo/\" target=\"_blank\">Halo options</a>","deprecated":false},{"name":"navigator-handles","fullname":"navigator.handles","title":"handles","parent":"navigator","isParent":true,"returnType":"Object","description":"Options for the handles for dragging the zoomed area.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/handles/\" target=\"_blank\">Colored handles</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--headerFormat","fullname":"plotOptions.candlestick.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--headerFormat","fullname":"plotOptions.columnrange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-areaspline-tooltip--headerFormat","fullname":"plotOptions.areaspline.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-line-tooltip--headerFormat","fullname":"plotOptions.line.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-flags-tooltip--headerFormat","fullname":"plotOptions.flags.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-area-tooltip--headerFormat","fullname":"plotOptions.area.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<spline>-tooltip--headerFormat","fullname":"series<spline>.tooltip.headerFormat","title":"headerFormat","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<arearange>-tooltip--headerFormat","fullname":"series<arearange>.tooltip.headerFormat","title":"headerFormat","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-series-tooltip--headerFormat","fullname":"plotOptions.series.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-column-tooltip--headerFormat","fullname":"plotOptions.column.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<line>-tooltip--headerFormat","fullname":"series<line>.tooltip.headerFormat","title":"headerFormat","parent":"series<line>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<flags>-tooltip--headerFormat","fullname":"series<flags>.tooltip.headerFormat","title":"headerFormat","parent":"series<flags>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<ohlc>-tooltip--headerFormat","fullname":"series<ohlc>.tooltip.headerFormat","title":"headerFormat","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<area>-tooltip--headerFormat","fullname":"series<area>.tooltip.headerFormat","title":"headerFormat","parent":"series<area>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<areasplinerange>-tooltip--headerFormat","fullname":"series<areasplinerange>.tooltip.headerFormat","title":"headerFormat","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<columnrange>-tooltip--headerFormat","fullname":"series<columnrange>.tooltip.headerFormat","title":"headerFormat","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-ohlc-tooltip--headerFormat","fullname":"plotOptions.ohlc.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-spline-tooltip--headerFormat","fullname":"plotOptions.spline.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<areaspline>-tooltip--headerFormat","fullname":"series<areaspline>.tooltip.headerFormat","title":"headerFormat","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"tooltip--headerFormat","fullname":"tooltip.headerFormat","title":"headerFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<column>-tooltip--headerFormat","fullname":"series<column>.tooltip.headerFormat","title":"headerFormat","parent":"series<column>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--headerFormat","fullname":"plotOptions.areasplinerange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"plotOptions-arearange-tooltip--headerFormat","fullname":"plotOptions.arearange.tooltip.headerFormat","title":"headerFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<candlestick>-tooltip--headerFormat","fullname":"series<candlestick>.tooltip.headerFormat","title":"headerFormat","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"<p>The HTML of the tooltip header line. Variables are enclosed by curly brackets. Available variables\t\t\tare <code>point.key</code>, <code>series.name</code>, <code>series.color</code> and other members from the <code>point</code> and <code>series</code> objects. The <code>point.key</code> variable contains the category name, x value or datetime string depending on the type of axis. For datetime axes, the <code>point.key</code> date format can be set using tooltip.xDateFormat.</p>\r \r\n<p>Defaults to <code>&lt;span style=\"font-size: 10px\"&gt;{point.key}&lt;/span&gt;&lt;br/&gt;</code></p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A HTML table in the tooltip</a>","deprecated":false},{"name":"series<spline>-marker--height","fullname":"series<spline>.marker.height","title":"height","parent":"series<spline>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<columnrange>-states-hover-marker--height","fullname":"series<columnrange>.states.hover.marker.height","title":"height","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<polygon>-marker--height","fullname":"series<polygon>.marker.height","title":"height","parent":"series<polygon>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<line>-marker--height","fullname":"series<line>.marker.height","title":"height","parent":"series<line>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-marker--height","fullname":"series<area>.marker.height","title":"height","parent":"series<area>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<line>-data-marker--height","fullname":"series<line>.data.marker.height","title":"height","parent":"series<line>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-areaspline-marker--height","fullname":"plotOptions.areaspline.marker.height","title":"height","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"navigation-buttonOptions--height","fullname":"navigation.buttonOptions.height","title":"height","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"20","description":"Pixel height of the buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"rangeSelector--height","fullname":"rangeSelector.height","title":"height","parent":"rangeSelector","isParent":false,"returnType":"Number","context":"","defaults":"35","values":"","since":"2.1.9","description":"The height of the range selector, used to reserve space for buttons and input.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-states-hover-marker--height","fullname":"series<areasplinerange>.states.hover.marker.height","title":"height","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-flags-states-hover-marker--height","fullname":"plotOptions.flags.states.hover.marker.height","title":"height","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<areaspline>-states-hover-marker--height","fullname":"series<areaspline>.states.hover.marker.height","title":"height","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-states-hover-marker--height","fullname":"series<scatter>.states.hover.marker.height","title":"height","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-line-marker--height","fullname":"plotOptions.line.marker.height","title":"height","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<flags>-states-hover-marker--height","fullname":"series<flags>.states.hover.marker.height","title":"height","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-marker--height","fullname":"series<scatter>.marker.height","title":"height","parent":"series<scatter>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"exporting-buttons-contextButton--height","fullname":"exporting.buttons.contextButton.height","title":"height","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"20","description":"Pixel height of the buttons.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"plotOptions-area-marker--height","fullname":"plotOptions.area.marker.height","title":"height","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<arearange>-states-hover-marker--height","fullname":"series<arearange>.states.hover.marker.height","title":"height","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<spline>-states-hover-marker--height","fullname":"series<spline>.states.hover.marker.height","title":"height","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-scatter-marker--height","fullname":"plotOptions.scatter.marker.height","title":"height","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-series-marker--height","fullname":"plotOptions.series.marker.height","title":"height","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-spline-marker--height","fullname":"plotOptions.spline.marker.height","title":"height","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-data-marker--height","fullname":"series<area>.data.marker.height","title":"height","parent":"series<area>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-polygon-marker--height","fullname":"plotOptions.polygon.marker.height","title":"height","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<candlestick>-states-hover-marker--height","fullname":"series<candlestick>.states.hover.marker.height","title":"height","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"scrollbar--height","fullname":"scrollbar.height","title":"height","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"","description":"The height of the scrollbar. The height also applies to the width of the scroll arrows so that they are always squares. Defaults to 20 for touch devices and 14 for mouse devices.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/height/\" target=\"_blank\">A 30px scrollbar</a>"},{"name":"chart--height","fullname":"chart.height","title":"height","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/height/\" target=\"_blank\">300px height</a>","deprecated":false},{"name":"series<areaspline>-data-marker--height","fullname":"series<areaspline>.data.marker.height","title":"height","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover-marker--height","fullname":"plotOptions.candlestick.states.hover.marker.height","title":"height","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<column>-states-hover-marker--height","fullname":"series<column>.states.hover.marker.height","title":"height","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"yAxis--height","fullname":"yAxis.height","title":"height","parent":"yAxis","isParent":false,"returnType":"Number|String","defaults":"null","description":"<p>The height of the Y axis. If it's a number, it is interpreted as pixels.</p>\r\n<p>Since Highstock 2: If it's a percentage string, it is interpreted as percentages of the total plot height.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/candlestick-and-volume/\" target=\"_blank\">Percentage height panes</a>","seeAlso":"<a href=\"#yAxis.top\">yAxis.top</a>","deprecated":false},{"name":"series<polygon>-states-hover-marker--height","fullname":"series<polygon>.states.hover.marker.height","title":"height","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-states-hover-marker--height","fullname":"series<area>.states.hover.marker.height","title":"height","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"navigator--height","fullname":"navigator.height","title":"height","parent":"navigator","isParent":false,"returnType":"Number","defaults":"40","description":"The height of the navigator.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/height/\" target=\"_blank\">A higher navigator</a>"},{"name":"series<line>-states-hover-marker--height","fullname":"series<line>.states.hover.marker.height","title":"height","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<spline>-data-marker--height","fullname":"series<spline>.data.marker.height","title":"height","parent":"series<spline>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<polygon>-data-marker--height","fullname":"series<polygon>.data.marker.height","title":"height","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-data-marker--height","fullname":"series<scatter>.data.marker.height","title":"height","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<ohlc>-states-hover-marker--height","fullname":"series<ohlc>.states.hover.marker.height","title":"height","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover-marker--height","fullname":"plotOptions.ohlc.states.hover.marker.height","title":"height","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<areaspline>-marker--height","fullname":"series<areaspline>.marker.height","title":"height","parent":"series<areaspline>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>width</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-candlestick-events--hide","fullname":"plotOptions.candlestick.events.hide","title":"hide","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-series-events--hide","fullname":"plotOptions.series.events.hide","title":"hide","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-flags-events--hide","fullname":"plotOptions.flags.events.hide","title":"hide","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<areaspline>-events--hide","fullname":"series<areaspline>.events.hide","title":"hide","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-scatter-events--hide","fullname":"plotOptions.scatter.events.hide","title":"hide","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-areasplinerange-events--hide","fullname":"plotOptions.areasplinerange.events.hide","title":"hide","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-ohlc-events--hide","fullname":"plotOptions.ohlc.events.hide","title":"hide","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-column-events--hide","fullname":"plotOptions.column.events.hide","title":"hide","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<areasplinerange>-events--hide","fullname":"series<areasplinerange>.events.hide","title":"hide","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-areaspline-events--hide","fullname":"plotOptions.areaspline.events.hide","title":"hide","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<polygon>-events--hide","fullname":"series<polygon>.events.hide","title":"hide","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-area-events--hide","fullname":"plotOptions.area.events.hide","title":"hide","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<scatter>-events--hide","fullname":"series<scatter>.events.hide","title":"hide","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-polygon-events--hide","fullname":"plotOptions.polygon.events.hide","title":"hide","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<area>-events--hide","fullname":"series<area>.events.hide","title":"hide","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<spline>-events--hide","fullname":"series<spline>.events.hide","title":"hide","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<line>-events--hide","fullname":"series<line>.events.hide","title":"hide","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<columnrange>-events--hide","fullname":"series<columnrange>.events.hide","title":"hide","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<arearange>-events--hide","fullname":"series<arearange>.events.hide","title":"hide","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<candlestick>-events--hide","fullname":"series<candlestick>.events.hide","title":"hide","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<column>-events--hide","fullname":"series<column>.events.hide","title":"hide","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<ohlc>-events--hide","fullname":"series<ohlc>.events.hide","title":"hide","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-line-events--hide","fullname":"plotOptions.line.events.hide","title":"hide","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-arearange-events--hide","fullname":"plotOptions.arearange.events.hide","title":"hide","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"series<flags>-events--hide","fullname":"series<flags>.events.hide","title":"hide","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-spline-events--hide","fullname":"plotOptions.spline.events.hide","title":"hide","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"plotOptions-columnrange-events--hide","fullname":"plotOptions.columnrange.events.hide","title":"hide","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is hidden after chart generation time, either by clicking the legend item or by calling <code>.hide()</code>.","deprecated":false},{"name":"loading--hideDuration","fullname":"loading.hideDuration","title":"hideDuration","parent":"loading","isParent":false,"returnType":"Number","defaults":"100","description":"The duration in milliseconds of the fade out effect."},{"name":"series<columnrange>-data--high","fullname":"series<columnrange>.data.high","title":"high","parent":"series<columnrange>-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series<candlestick>-data--high","fullname":"series<candlestick>.data.high","title":"high","parent":"series<candlestick>-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series<areasplinerange>-data--high","fullname":"series<areasplinerange>.data.high","title":"high","parent":"series<areasplinerange>-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series<arearange>-data--high","fullname":"series<arearange>.data.high","title":"high","parent":"series<arearange>-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series<ohlc>-data--high","fullname":"series<ohlc>.data.high","title":"high","parent":"series<ohlc>-data","isParent":false,"returnType":"Number","description":"The high or maximum value for each data point."},{"name":"series<ohlc>-states-hover","fullname":"series<ohlc>.states.hover","title":"hover","parent":"series<ohlc>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<spline>-marker-states-hover","fullname":"series<spline>.marker.states.hover","title":"hover","parent":"series<spline>-marker-states","isParent":true},{"name":"plotOptions-flags-states-hover","fullname":"plotOptions.flags.states.hover","title":"hover","parent":"plotOptions-flags-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<areaspline>-data-marker-states-hover","fullname":"series<areaspline>.data.marker.states.hover","title":"hover","parent":"series<areaspline>-data-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-areaspline-marker-states-hover","fullname":"plotOptions.areaspline.marker.states.hover","title":"hover","parent":"plotOptions-areaspline-marker-states","isParent":true},{"name":"series<polygon>-marker-states-hover","fullname":"series<polygon>.marker.states.hover","title":"hover","parent":"series<polygon>-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<line>-marker-states-hover","fullname":"series<line>.marker.states.hover","title":"hover","parent":"series<line>-marker-states","isParent":true},{"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":"series<areaspline>-marker-states-hover","fullname":"series<areaspline>.marker.states.hover","title":"hover","parent":"series<areaspline>-marker-states","isParent":true},{"name":"series<line>-data-marker-states-hover","fullname":"series<line>.data.marker.states.hover","title":"hover","parent":"series<line>-data-marker-states","isParent":true},{"name":"series<area>-marker-states-hover","fullname":"series<area>.marker.states.hover","title":"hover","parent":"series<area>-marker-states","isParent":true},{"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-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":"series<scatter>-marker-states-hover","fullname":"series<scatter>.marker.states.hover","title":"hover","parent":"series<scatter>-marker-states","isParent":true},{"name":"series<polygon>-data-marker-states-hover","fullname":"series<polygon>.data.marker.states.hover","title":"hover","parent":"series<polygon>-data-marker-states","isParent":true},{"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<polygon>-states-hover","fullname":"series<polygon>.states.hover","title":"hover","parent":"series<polygon>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-candlestick-states-hover","fullname":"plotOptions.candlestick.states.hover","title":"hover","parent":"plotOptions-candlestick-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-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-polygon-marker-states-hover","fullname":"plotOptions.polygon.marker.states.hover","title":"hover","parent":"plotOptions-polygon-marker-states","isParent":true},{"name":"series<spline>-states-hover","fullname":"series<spline>.states.hover","title":"hover","parent":"series<spline>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<flags>-states-hover","fullname":"series<flags>.states.hover","title":"hover","parent":"series<flags>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"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":"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-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":"series<line>-states-hover","fullname":"series<line>.states.hover","title":"hover","parent":"series<line>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<areasplinerange>-states-hover","fullname":"series<areasplinerange>.states.hover","title":"hover","parent":"series<areasplinerange>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"plotOptions-series-marker-states-hover","fullname":"plotOptions.series.marker.states.hover","title":"hover","parent":"plotOptions-series-marker-states","isParent":true},{"name":"series<scatter>-states-hover","fullname":"series<scatter>.states.hover","title":"hover","parent":"series<scatter>-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":"series<arearange>-states-hover","fullname":"series<arearange>.states.hover","title":"hover","parent":"series<arearange>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<candlestick>-states-hover","fullname":"series<candlestick>.states.hover","title":"hover","parent":"series<candlestick>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<column>-states-hover","fullname":"series<column>.states.hover","title":"hover","parent":"series<column>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<area>-states-hover","fullname":"series<area>.states.hover","title":"hover","parent":"series<area>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<spline>-data-marker-states-hover","fullname":"series<spline>.data.marker.states.hover","title":"hover","parent":"series<spline>-data-marker-states","isParent":true},{"name":"plotOptions-ohlc-states-hover","fullname":"plotOptions.ohlc.states.hover","title":"hover","parent":"plotOptions-ohlc-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<areaspline>-states-hover","fullname":"series<areaspline>.states.hover","title":"hover","parent":"series<areaspline>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<columnrange>-states-hover","fullname":"series<columnrange>.states.hover","title":"hover","parent":"series<columnrange>-states","isParent":true,"description":"Options for the hovered series","deprecated":false},{"name":"series<scatter>-data-marker-states-hover","fullname":"series<scatter>.data.marker.states.hover","title":"hover","parent":"series<scatter>-data-marker-states","isParent":true},{"name":"series<area>-data-marker-states-hover","fullname":"series<area>.data.marker.states.hover","title":"hover","parent":"series<area>-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":"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."},{"name":"labels-items--html","fullname":"labels.items.html","title":"html","parent":"labels-items","isParent":false,"returnType":"String","defaults":"\"\"","description":"Inner HTML or text for the label."},{"name":"series<column>-data--id","fullname":"series<column>.data.id","title":"id","parent":"series<column>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<areasplinerange>-data--id","fullname":"series<areasplinerange>.data.id","title":"id","parent":"series<areasplinerange>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<line>--id","fullname":"series<line>.id","title":"id","parent":"series<line>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines--id","fullname":"yAxis.plotLines.id","title":"id","parent":"yAxis-plotLines","isParent":false,"returnType":"String","defaults":"null","description":"An id used for identifying the plot line in Axis.removePlotLine."},{"name":"series<area>--id","fullname":"series<area>.id","title":"id","parent":"series<area>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-data--id","fullname":"series<arearange>.data.id","title":"id","parent":"series<arearange>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<candlestick>--id","fullname":"series<candlestick>.id","title":"id","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>--id","fullname":"series<areaspline>.id","title":"id","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>--id","fullname":"series<column>.id","title":"id","parent":"series<column>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series--id","fullname":"series.id","title":"id","parent":"series","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-data--id","fullname":"series<polygon>.data.id","title":"id","parent":"series<polygon>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"xAxis-plotLines--id","fullname":"xAxis.plotLines.id","title":"id","parent":"xAxis-plotLines","isParent":false,"returnType":"String","defaults":"null","description":"An id used for identifying the plot line in Axis.removePlotLine."},{"name":"yAxis--id","fullname":"yAxis.id","title":"id","parent":"yAxis","isParent":false,"returnType":"String","defaults":"null","description":"An id for the axis. This can be used after render time to get a pointer to the axis object through <code>chart.get()</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/id/\" target=\"_blank\">Get the object</a>"},{"name":"xAxis--id","fullname":"xAxis.id","title":"id","parent":"xAxis","isParent":false,"returnType":"String","defaults":"null","description":"An id for the axis. This can be used after render time to get a pointer to the axis object through <code>chart.get()</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/id/\" target=\"_blank\">Get the object</a>"},{"name":"series<scatter>-data--id","fullname":"series<scatter>.data.id","title":"id","parent":"series<scatter>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<flags>--id","fullname":"series<flags>.id","title":"id","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-data--id","fullname":"series<areaspline>.data.id","title":"id","parent":"series<areaspline>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<areasplinerange>--id","fullname":"series<areasplinerange>.id","title":"id","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>--id","fullname":"series<polygon>.id","title":"id","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-data--id","fullname":"series<spline>.data.id","title":"id","parent":"series<spline>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<candlestick>-data--id","fullname":"series<candlestick>.data.id","title":"id","parent":"series<candlestick>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<flags>-data--id","fullname":"series<flags>.data.id","title":"id","parent":"series<flags>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<line>-data--id","fullname":"series<line>.data.id","title":"id","parent":"series<line>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<area>-data--id","fullname":"series<area>.data.id","title":"id","parent":"series<area>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<arearange>--id","fullname":"series<arearange>.id","title":"id","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-plotBands--id","fullname":"yAxis.plotBands.id","title":"id","parent":"yAxis-plotBands","isParent":false,"returnType":"String","defaults":"null","description":"An id used for identifying the plot band in Axis.removePlotBand.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/plotbands-id/\" target=\"_blank\">Remove plot band by id</a>","deprecated":false},{"name":"series<scatter>--id","fullname":"series<scatter>.id","title":"id","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-data--id","fullname":"series<columnrange>.data.id","title":"id","parent":"series<columnrange>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"series<ohlc>--id","fullname":"series<ohlc>.id","title":"id","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-data--id","fullname":"series<ohlc>.data.id","title":"id","parent":"series<ohlc>-data","isParent":false,"returnType":"String","defaults":"null","description":"An id for the point. This can be used after render time to get a pointer to the point object through <code>chart.get()</code>."},{"name":"xAxis-plotBands--id","fullname":"xAxis.plotBands.id","title":"id","parent":"xAxis-plotBands","isParent":false,"returnType":"String","defaults":"null","description":"An id used for identifying the plot band in Axis.removePlotBand.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/plotbands-id/\" target=\"_blank\">Remove plot band by id</a>","deprecated":false},{"name":"series<spline>--id","fullname":"series<spline>.id","title":"id","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>--id","fullname":"series<columnrange>.id","title":"id","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"","description":"An id for the series. This can be used after render time to get a pointer to the series object through <code>chart.get()</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"chart--ignoreHiddenSeries","fullname":"chart.ignoreHiddenSeries","title":"ignoreHiddenSeries","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/ignorehiddenseries-true/\" target=\"_blank\">True by default</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/ignorehiddenseries-false/\" target=\"_blank\">false</a>"},{"name":"legend-navigation--inactiveColor","fullname":"legend.navigation.inactiveColor","title":"inactiveColor","parent":"legend-navigation","isParent":false,"returnType":"Color","defaults":"#CCC","since":"1.1.5","description":"The color of the inactive up or down arrow in the legend page navigation.  .","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/navigation/\" target=\"_blank\">\n\t\t\t\tLegend page navigation demonstrated</a>"},{"name":"series<areasplinerange>--index","fullname":"series<areasplinerange>.index","title":"index","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>--index","fullname":"series<areaspline>.index","title":"index","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>--index","fullname":"series<polygon>.index","title":"index","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>--index","fullname":"series<candlestick>.index","title":"index","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>--index","fullname":"series<arearange>.index","title":"index","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>--index","fullname":"series<column>.index","title":"index","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>--index","fullname":"series<area>.index","title":"index","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>--index","fullname":"series<spline>.index","title":"index","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>--index","fullname":"series<ohlc>.index","title":"index","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>--index","fullname":"series<flags>.index","title":"index","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>--index","fullname":"series<columnrange>.index","title":"index","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>--index","fullname":"series<scatter>.index","title":"index","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> 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","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>--index","fullname":"series<line>.index","title":"index","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"The index of the series in the chart, affecting the internal index in the <code>chart.series</code> array, the visible Z index as well as the order in the legend.","demo":"","seeAlso":"","deprecated":false},{"name":"rangeSelector--inputBoxBorderColor","fullname":"rangeSelector.inputBoxBorderColor","title":"inputBoxBorderColor","parent":"rangeSelector","isParent":false,"returnType":"Color","defaults":"silver","since":"1.3.7","description":"The border color of the date input boxes.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>","deprecated":false},{"name":"rangeSelector--inputBoxHeight","fullname":"rangeSelector.inputBoxHeight","title":"inputBoxHeight","parent":"rangeSelector","isParent":false,"returnType":"Number","defaults":"17","since":"1.3.7","description":"The pixel height of the date input boxes.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>","deprecated":false},{"name":"rangeSelector--inputBoxStyle","fullname":"rangeSelector.inputBoxStyle","title":"inputBoxStyle","parent":"rangeSelector","isParent":false,"returnType":"CSSObject","description":"CSS for the container DIV holding the input boxes. Deprecated as of 1.2.5. Use <a href=\"#rangeSelector.inputPosition\">inputPosition</a> instead.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>","deprecated":true},{"name":"rangeSelector--inputBoxWidth","fullname":"rangeSelector.inputBoxWidth","title":"inputBoxWidth","parent":"rangeSelector","isParent":false,"returnType":"Number","defaults":"90","since":"1.3.7","description":"The pixel width of the date input boxes. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>","deprecated":false},{"name":"rangeSelector--inputDateFormat","fullname":"rangeSelector.inputDateFormat","title":"inputDateFormat","parent":"rangeSelector","isParent":false,"returnType":"String","defaults":"%b %e %Y,","description":"The date format in the input boxes when not selected for editing.\r\n\t\t Defaults to <code>%b %e, %Y</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/input-format/\" target=\"_blank\">Milliseconds in the range selector</a>","deprecated":false},{"name":"rangeSelector--inputDateParser","fullname":"rangeSelector.inputDateParser","title":"inputDateParser","parent":"rangeSelector","isParent":false,"returnType":"Function","defaults":"","values":"","since":"1.3.3","description":"A custom callback function to parse values entered in the input boxes and return a valid JavaScript time as milliseconds since 1970.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/input-format/\" target=\"_blank\">Milliseconds in the range selector</a>","seeAlso":"","deprecated":false},{"name":"rangeSelector--inputEditDateFormat","fullname":"rangeSelector.inputEditDateFormat","title":"inputEditDateFormat","parent":"rangeSelector","isParent":false,"returnType":"String","defaults":"%Y-%m-%d","description":"The date format in the input boxes when they are selected for editing. This must be a format that\r is recognized by JavaScript Date.parse.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/input-format/\" target=\"_blank\">Milliseconds in the range selector</a>","deprecated":false},{"name":"rangeSelector--inputEnabled","fullname":"rangeSelector.inputEnabled","title":"inputEnabled","parent":"rangeSelector","isParent":false,"returnType":"Boolean","description":"Enable or disable the date input boxes. Defaults to enabled when there is enough space, disabled if not (typically mobile).","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/input-datepicker/\" target=\"_blank\">\r\n\t\t\t\tExtending the input with a jQuery UI datepicker</a>","deprecated":false},{"name":"rangeSelector--inputPosition","fullname":"rangeSelector.inputPosition","title":"inputPosition","parent":"rangeSelector","isParent":false,"returnType":"Object","defaults":"{ align: \"right\" }","values":"","since":"1.2.5","description":"Positioning for the input boxes. Allowed properties are <code>align</code>, <code>verticalAlign</code>, <code>x</code> and <code>y</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"rangeSelector--inputStyle","fullname":"rangeSelector.inputStyle","title":"inputStyle","parent":"rangeSelector","isParent":false,"returnType":"CSSObject","defaults":"","description":"CSS for the HTML inputs in the range selector.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>"},{"name":"plotOptions-scatter-dataLabels--inside","fullname":"plotOptions.scatter.dataLabels.inside","title":"inside","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<line>-dataLabels--inside","fullname":"series<line>.dataLabels.inside","title":"inside","parent":"series<line>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"plotOptions-flags-dataLabels--inside","fullname":"plotOptions.flags.dataLabels.inside","title":"inside","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<column>-dataLabels--inside","fullname":"series<column>.dataLabels.inside","title":"inside","parent":"series<column>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<polygon>-dataLabels--inside","fullname":"series<polygon>.dataLabels.inside","title":"inside","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<areasplinerange>-dataLabels--inside","fullname":"series<areasplinerange>.dataLabels.inside","title":"inside","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<scatter>-dataLabels--inside","fullname":"series<scatter>.dataLabels.inside","title":"inside","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<area>-dataLabels--inside","fullname":"series<area>.dataLabels.inside","title":"inside","parent":"series<area>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<areaspline>-dataLabels--inside","fullname":"series<areaspline>.dataLabels.inside","title":"inside","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<candlestick>-dataLabels--inside","fullname":"series<candlestick>.dataLabels.inside","title":"inside","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--inside","fullname":"plotOptions.areaspline.dataLabels.inside","title":"inside","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<arearange>-dataLabels--inside","fullname":"series<arearange>.dataLabels.inside","title":"inside","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<ohlc>-dataLabels--inside","fullname":"series<ohlc>.dataLabels.inside","title":"inside","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--inside","fullname":"plotOptions.candlestick.dataLabels.inside","title":"inside","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--inside","fullname":"plotOptions.ohlc.dataLabels.inside","title":"inside","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<flags>-dataLabels--inside","fullname":"series<flags>.dataLabels.inside","title":"inside","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<spline>-dataLabels--inside","fullname":"series<spline>.dataLabels.inside","title":"inside","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"series<columnrange>-dataLabels--inside","fullname":"series<columnrange>.dataLabels.inside","title":"inside","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Boolean","since":"1.3","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 <code>false</code> in most cases, <code>true</code> 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":"1.3","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 <code>false</code> in most cases, <code>true</code> in stacked columns.","deprecated":false},{"name":"lang--invalidDate","fullname":"lang.invalidDate","title":"invalidDate","parent":"lang","isParent":false,"returnType":"String","since":"2.1.8","description":"What to show in a date field, specifically in the range selector inputs, for invalid dates. Defaults to an empty string.","deprecated":false},{"name":"legend--itemDistance","fullname":"legend.itemDistance","title":"itemDistance","parent":"legend","isParent":false,"returnType":"Number","defaults":"20","since":"1.3.3","description":"In a legend with horizontal layout, the itemDistance defines the pixel distance between each item. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/layout-horizontal/\" target=\"_blank\">50px item distance</a>","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 <code>style</code> unless overridden here. Defaults to:\r\n<pre>itemHiddenStyle: {\r\n\tcolor: '#CCC'\r\n}</pre>","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 <code>style</code> unless overridden here. Defaults to:\r\n<pre>itemHoverStyle: {\r\n\tcolor: '#000'\r\n}</pre>","deprecated":false},{"name":"legend--itemMarginBottom","fullname":"legend.itemMarginBottom","title":"itemMarginBottom","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"1.1","description":"The pixel bottom margin for each legend item.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/padding-itemmargin/\" target=\"_blank\">\r\n\t\t\t\tPadding and item margins demonstrated</a>","deprecated":false},{"name":"legend--itemMarginTop","fullname":"legend.itemMarginTop","title":"itemMarginTop","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","since":"1.1","description":"The pixel top margin for each legend item.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/padding-itemmargin/\" target=\"_blank\">\r\n\t\t\t\tPadding and item margins demonstrated</a>","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.","deprecated":false},{"name":"legend--itemWidth","fullname":"legend.itemWidth","title":"itemWidth","parent":"legend","isParent":false,"returnType":"Number","defaults":"null","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.  ."},{"name":"labels-items","fullname":"labels.items","title":"items","parent":"labels","isParent":true,"description":"A HTML label that can be positioned anywhere in the chart area.","deprecated":false},{"name":"plotOptions-series--keys","fullname":"plotOptions.series.keys","title":"keys","parent":"plotOptions-series","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-flags--keys","fullname":"plotOptions.flags.keys","title":"keys","parent":"plotOptions-flags","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<ohlc>--keys","fullname":"series<ohlc>.keys","title":"keys","parent":"series<ohlc>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-areaspline--keys","fullname":"plotOptions.areaspline.keys","title":"keys","parent":"plotOptions-areaspline","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-spline--keys","fullname":"plotOptions.spline.keys","title":"keys","parent":"plotOptions-spline","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<areasplinerange>--keys","fullname":"series<areasplinerange>.keys","title":"keys","parent":"series<areasplinerange>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-ohlc--keys","fullname":"plotOptions.ohlc.keys","title":"keys","parent":"plotOptions-ohlc","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<spline>--keys","fullname":"series<spline>.keys","title":"keys","parent":"series<spline>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<column>--keys","fullname":"series<column>.keys","title":"keys","parent":"series<column>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<polygon>--keys","fullname":"series<polygon>.keys","title":"keys","parent":"series<polygon>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<candlestick>--keys","fullname":"series<candlestick>.keys","title":"keys","parent":"series<candlestick>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-scatter--keys","fullname":"plotOptions.scatter.keys","title":"keys","parent":"plotOptions-scatter","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<scatter>--keys","fullname":"series<scatter>.keys","title":"keys","parent":"series<scatter>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-columnrange--keys","fullname":"plotOptions.columnrange.keys","title":"keys","parent":"plotOptions-columnrange","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-polygon--keys","fullname":"plotOptions.polygon.keys","title":"keys","parent":"plotOptions-polygon","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<arearange>--keys","fullname":"series<arearange>.keys","title":"keys","parent":"series<arearange>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<line>--keys","fullname":"series<line>.keys","title":"keys","parent":"series<line>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-area--keys","fullname":"plotOptions.area.keys","title":"keys","parent":"plotOptions-area","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<columnrange>--keys","fullname":"series<columnrange>.keys","title":"keys","parent":"series<columnrange>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-column--keys","fullname":"plotOptions.column.keys","title":"keys","parent":"plotOptions-column","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<area>--keys","fullname":"series<area>.keys","title":"keys","parent":"series<area>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<flags>--keys","fullname":"series<flags>.keys","title":"keys","parent":"series<flags>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-arearange--keys","fullname":"plotOptions.arearange.keys","title":"keys","parent":"plotOptions-arearange","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-line--keys","fullname":"plotOptions.line.keys","title":"keys","parent":"plotOptions-line","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-areasplinerange--keys","fullname":"plotOptions.areasplinerange.keys","title":"keys","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"plotOptions-candlestick--keys","fullname":"plotOptions.candlestick.keys","title":"keys","parent":"plotOptions-candlestick","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"series<areaspline>--keys","fullname":"series<areaspline>.keys","title":"keys","parent":"series<areaspline>","isParent":false,"returnType":"Array<String>","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/data-keys/\" target=\"_blank\">An extended data array with keys</a>","seeAlso":"<a href=\"#series<line>.data\">series.data</a>","deprecated":false},{"name":"yAxis-plotBands-label","fullname":"yAxis.plotBands.label","title":"label","parent":"yAxis-plotBands","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-crosshair-label","fullname":"xAxis.crosshair.label","title":"label","parent":"xAxis-crosshair","isParent":true,"returnType":"Object","since":"2.1","description":"A label on the axis next to the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-label/\" target=\"_blank\">Crosshair labels</a>","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-plotLines-label","fullname":"xAxis.plotLines.label","title":"label","parent":"xAxis-plotLines","isParent":true,"description":"Text labels for the plot bands"},{"name":"yAxis-crosshair-label","fullname":"yAxis.crosshair.label","title":"label","parent":"yAxis-crosshair","isParent":true,"returnType":"Object","since":"2.1","description":"A label on the axis next to the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-label/\" target=\"_blank\">Crosshair labels</a>","deprecated":false},{"name":"legend--labelFormat","fullname":"legend.labelFormat","title":"labelFormat","parent":"legend","isParent":false,"returnType":"String","defaults":"{name}","since":"3.0","description":"A <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting\">format string</a> 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","defaults":"","description":"Callback function to format each of the series' labels. The <em>this</em> keyword refers to the series object, or the point object in case of pie charts. By default the series or point name is printed.","deprecated":false},{"name":"rangeSelector--labelStyle","fullname":"rangeSelector.labelStyle","title":"labelStyle","parent":"rangeSelector","isParent":false,"returnType":"CSSObject","defaults":"","description":"CSS styles for the labels - the Zoom, From and To texts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/rangeselector/styling/\" target=\"_blank\">Styling the buttons and inputs</a>"},{"name":"loading--labelStyle","fullname":"loading.labelStyle","title":"labelStyle","parent":"loading","isParent":false,"returnType":"CSSObject","defaults":"{ \"fontWeight\": \"bold\", \"position\": \"relative\", \"top\": \"45%\" }","description":"CSS styles for the loading label <code>span</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/loading/general/\" target=\"_blank\">Label styles</a>","deprecated":false},{"name":"yAxis-labels","fullname":"yAxis.labels","title":"labels","parent":"yAxis","isParent":true,"deprecated":false},{"name":"labels","fullname":"labels","title":"labels","isParent":true,"description":"HTML labels that can be positioned anywhere in the chart area.","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":"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 <code>Highcharts.setOptions</code> to\n\t\tset it before any chart is initiated. \n<pre>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});</pre>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/layout-horizontal/\" target=\"_blank\">Horizontal by default</a>"},{"name":"legend","fullname":"legend","title":"legend","isParent":true,"description":"The legend is a box containing a symbol and name for each series item\n\tor point item in the chart."},{"name":"plotOptions-areaspline--legendIndex","fullname":"plotOptions.areaspline.legendIndex","title":"legendIndex","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-column--legendIndex","fullname":"plotOptions.column.legendIndex","title":"legendIndex","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-spline--legendIndex","fullname":"plotOptions.spline.legendIndex","title":"legendIndex","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-ohlc--legendIndex","fullname":"plotOptions.ohlc.legendIndex","title":"legendIndex","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"series<polygon>--legendIndex","fullname":"series<polygon>.legendIndex","title":"legendIndex","parent":"series<polygon>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<candlestick>--legendIndex","fullname":"series<candlestick>.legendIndex","title":"legendIndex","parent":"series<candlestick>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-polygon--legendIndex","fullname":"plotOptions.polygon.legendIndex","title":"legendIndex","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"series<columnrange>--legendIndex","fullname":"series<columnrange>.legendIndex","title":"legendIndex","parent":"series<columnrange>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<area>--legendIndex","fullname":"series<area>.legendIndex","title":"legendIndex","parent":"series<area>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<column>--legendIndex","fullname":"series<column>.legendIndex","title":"legendIndex","parent":"series<column>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<spline>--legendIndex","fullname":"series<spline>.legendIndex","title":"legendIndex","parent":"series<spline>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-line--legendIndex","fullname":"plotOptions.line.legendIndex","title":"legendIndex","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-scatter--legendIndex","fullname":"plotOptions.scatter.legendIndex","title":"legendIndex","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"series<areasplinerange>--legendIndex","fullname":"series<areasplinerange>.legendIndex","title":"legendIndex","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<ohlc>--legendIndex","fullname":"series<ohlc>.legendIndex","title":"legendIndex","parent":"series<ohlc>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-area--legendIndex","fullname":"plotOptions.area.legendIndex","title":"legendIndex","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"series--legendIndex","fullname":"series.legendIndex","title":"legendIndex","parent":"series","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-arearange--legendIndex","fullname":"plotOptions.arearange.legendIndex","title":"legendIndex","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-series--legendIndex","fullname":"plotOptions.series.legendIndex","title":"legendIndex","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-candlestick--legendIndex","fullname":"plotOptions.candlestick.legendIndex","title":"legendIndex","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-columnrange--legendIndex","fullname":"plotOptions.columnrange.legendIndex","title":"legendIndex","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"plotOptions-flags--legendIndex","fullname":"plotOptions.flags.legendIndex","title":"legendIndex","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"name":"series<flags>--legendIndex","fullname":"series<flags>.legendIndex","title":"legendIndex","parent":"series<flags>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<areaspline>--legendIndex","fullname":"series<areaspline>.legendIndex","title":"legendIndex","parent":"series<areaspline>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<scatter>--legendIndex","fullname":"series<scatter>.legendIndex","title":"legendIndex","parent":"series<scatter>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<arearange>--legendIndex","fullname":"series<arearange>.legendIndex","title":"legendIndex","parent":"series<arearange>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<line>--legendIndex","fullname":"series<line>.legendIndex","title":"legendIndex","parent":"series<line>","isParent":false,"returnType":"Number","description":"The sequential index of the series in the legend.  <div class=\"demo\">Try it:  \t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/series/legendindex/\" target=\"_blank\">Legend in opposite order</a> </div>.","seeAlso":"<a href=\"#legend.reversed\">legend.reversed</a>, <a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-areasplinerange--legendIndex","fullname":"plotOptions.areasplinerange.legendIndex","title":"legendIndex","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"0","description":"The sequential index of the series within the legend."},{"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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<flags>-events--legendItemClick","fullname":"series<flags>.events.legendItemClick","title":"legendItemClick","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<arearange>-events--legendItemClick","fullname":"series<arearange>.events.legendItemClick","title":"legendItemClick","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<columnrange>-events--legendItemClick","fullname":"series<columnrange>.events.legendItemClick","title":"legendItemClick","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"plotOptions-candlestick-events--legendItemClick","fullname":"plotOptions.candlestick.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"plotOptions-ohlc-events--legendItemClick","fullname":"plotOptions.ohlc.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<line>-events--legendItemClick","fullname":"series<line>.events.legendItemClick","title":"legendItemClick","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<areaspline>-events--legendItemClick","fullname":"series<areaspline>.events.legendItemClick","title":"legendItemClick","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<candlestick>-events--legendItemClick","fullname":"series<candlestick>.events.legendItemClick","title":"legendItemClick","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<ohlc>-events--legendItemClick","fullname":"series<ohlc>.events.legendItemClick","title":"legendItemClick","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<column>-events--legendItemClick","fullname":"series<column>.events.legendItemClick","title":"legendItemClick","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"plotOptions-flags-events--legendItemClick","fullname":"plotOptions.flags.events.legendItemClick","title":"legendItemClick","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<areasplinerange>-events--legendItemClick","fullname":"series<areasplinerange>.events.legendItemClick","title":"legendItemClick","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<scatter>-events--legendItemClick","fullname":"series<scatter>.events.legendItemClick","title":"legendItemClick","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<polygon>-events--legendItemClick","fullname":"series<polygon>.events.legendItemClick","title":"legendItemClick","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<spline>-events--legendItemClick","fullname":"series<spline>.events.legendItemClick","title":"legendItemClick","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"series<area>-events--legendItemClick","fullname":"series<area>.events.legendItemClick","title":"legendItemClick","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the legend item belonging to the series is clicked. One parameter, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","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, <code>event</code>, is passed 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 is to toggle the visibility of the series. This can be prevented by returning <code>false</code> or calling <code>event.preventDefault()</code>.","deprecated":false},{"name":"plotOptions-line","fullname":"plotOptions.line","title":"line","parent":"plotOptions","isParent":true},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-data-marker-states-select--lineColor","fullname":"series<areaspline>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<areaspline>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker--lineColor","fullname":"series<spline>.data.marker.lineColor","title":"lineColor","parent":"series<spline>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areasplinerange--lineColor","fullname":"plotOptions.areasplinerange.lineColor","title":"lineColor","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<area>-states-hover-marker--lineColor","fullname":"series<area>.states.hover.marker.lineColor","title":"lineColor","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areasplinerange>-states-hover-marker--lineColor","fullname":"series<areasplinerange>.states.hover.marker.lineColor","title":"lineColor","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-marker-states-select--lineColor","fullname":"series<polygon>.marker.states.select.lineColor","title":"lineColor","parent":"series<polygon>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-flags--lineColor","fullname":"plotOptions.flags.lineColor","title":"lineColor","parent":"plotOptions-flags","isParent":false,"returnType":"Color","defaults":"\"black\"","description":"The color of the line/border of the flag. Defaults to <code>\"black\"</code>."},{"name":"series<line>-data-marker--lineColor","fullname":"series<line>.data.marker.lineColor","title":"lineColor","parent":"series<line>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker-states-hover--lineColor","fullname":"series<scatter>.marker.states.hover.lineColor","title":"lineColor","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-candlestick-states-hover-marker--lineColor","fullname":"plotOptions.candlestick.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker-states-hover--lineColor","fullname":"series<areaspline>.marker.states.hover.lineColor","title":"lineColor","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areasplinerange>--lineColor","fullname":"series<areasplinerange>.lineColor","title":"lineColor","parent":"series<areasplinerange>","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<area>-marker-states-select--lineColor","fullname":"series<area>.marker.states.select.lineColor","title":"lineColor","parent":"series<area>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-data-marker-states-select--lineColor","fullname":"series<scatter>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<scatter>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-marker--lineColor","fullname":"series<spline>.marker.lineColor","title":"lineColor","parent":"series<spline>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-marker-states-hover--lineColor","fullname":"series<area>.marker.states.hover.lineColor","title":"lineColor","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-data-marker-states-hover--lineColor","fullname":"series<polygon>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<arearange>-states-hover-marker--lineColor","fullname":"series<arearange>.states.hover.marker.lineColor","title":"lineColor","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<column>-states-hover-marker--lineColor","fullname":"series<column>.states.hover.marker.lineColor","title":"lineColor","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<line>-states-hover-marker--lineColor","fullname":"series<line>.states.hover.marker.lineColor","title":"lineColor","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-marker-states-select--lineColor","fullname":"series<spline>.marker.states.select.lineColor","title":"lineColor","parent":"series<spline>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/linecolor/\" target=\"_blank\">A red line on X axis</a>"},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-data-marker-states-select--lineColor","fullname":"series<polygon>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<polygon>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-candlestick--lineColor","fullname":"plotOptions.candlestick.lineColor","title":"lineColor","parent":"plotOptions-candlestick","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the line/border of the candlestick. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-linecolor/\" target=\"_blank\">Candlestick line colors</a>","seeAlso":"<a href=\"#plotOptions.candlestick.upLineColor\">upLineColor</a>","deprecated":false},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-marker--lineColor","fullname":"series<polygon>.marker.lineColor","title":"lineColor","parent":"series<polygon>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-areaspline--lineColor","fullname":"plotOptions.areaspline.lineColor","title":"lineColor","parent":"plotOptions-areaspline","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<candlestick>--lineColor","fullname":"series<candlestick>.lineColor","title":"lineColor","parent":"series<candlestick>","isParent":false,"returnType":"Color","defaults":"#000000","description":"The color of the line/border of the candlestick. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-linecolor/\" target=\"_blank\">Candlestick line colors</a>","seeAlso":"<a href=\"#plotOptions.candlestick.upLineColor\">upLineColor</a>","deprecated":false},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<line>-marker-states-select--lineColor","fullname":"series<line>.marker.states.select.lineColor","title":"lineColor","parent":"series<line>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-states-hover-marker--lineColor","fullname":"series<areaspline>.states.hover.marker.lineColor","title":"lineColor","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-data-marker--lineColor","fullname":"series<area>.data.marker.lineColor","title":"lineColor","parent":"series<area>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-data-marker-states-hover--lineColor","fullname":"series<areaspline>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker--lineColor","fullname":"series<areaspline>.marker.lineColor","title":"lineColor","parent":"series<areaspline>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<line>-marker-states-hover--lineColor","fullname":"series<line>.marker.states.hover.lineColor","title":"lineColor","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/linecolor/\" target=\"_blank\">A red line on X axis</a>"},{"name":"series<areaspline>-data-marker--lineColor","fullname":"series<areaspline>.data.marker.lineColor","title":"lineColor","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-data-marker-states-select--lineColor","fullname":"series<area>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<area>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-data-marker-states-hover--lineColor","fullname":"series<scatter>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-states-hover-marker--lineColor","fullname":"series<spline>.states.hover.marker.lineColor","title":"lineColor","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<flags>-states-hover-marker--lineColor","fullname":"series<flags>.states.hover.marker.lineColor","title":"lineColor","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-states-hover-marker--lineColor","fullname":"series<scatter>.states.hover.marker.lineColor","title":"lineColor","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker-states-hover--lineColor","fullname":"series<spline>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-area--lineColor","fullname":"plotOptions.area.lineColor","title":"lineColor","parent":"plotOptions-area","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"plotOptions-arearange--lineColor","fullname":"plotOptions.arearange.lineColor","title":"lineColor","parent":"plotOptions-arearange","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<candlestick>-states-hover-marker--lineColor","fullname":"series<candlestick>.states.hover.marker.lineColor","title":"lineColor","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<area>-data-marker-states-hover--lineColor","fullname":"series<area>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker--lineColor","fullname":"series<scatter>.marker.lineColor","title":"lineColor","parent":"series<scatter>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<line>-data-marker-states-hover--lineColor","fullname":"series<line>.data.marker.states.hover.lineColor","title":"lineColor","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker-states-select--lineColor","fullname":"series<scatter>.marker.states.select.lineColor","title":"lineColor","parent":"series<scatter>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-flags-states-hover-marker--lineColor","fullname":"plotOptions.flags.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-states-hover-marker--lineColor","fullname":"series<polygon>.states.hover.marker.lineColor","title":"lineColor","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>-marker-states-select--lineColor","fullname":"series<areaspline>.marker.states.select.lineColor","title":"lineColor","parent":"series<areaspline>-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<ohlc>-states-hover-marker--lineColor","fullname":"series<ohlc>.states.hover.marker.lineColor","title":"lineColor","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-marker-states-hover--lineColor","fullname":"series<spline>.marker.states.hover.lineColor","title":"lineColor","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"plotOptions-ohlc-states-hover-marker--lineColor","fullname":"plotOptions.ohlc.states.hover.marker.lineColor","title":"lineColor","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<polygon>-marker-states-hover--lineColor","fullname":"series<polygon>.marker.states.hover.lineColor","title":"lineColor","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<line>-data-marker-states-select--lineColor","fullname":"series<line>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<line>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-data-marker--lineColor","fullname":"series<scatter>.data.marker.lineColor","title":"lineColor","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<areaspline>--lineColor","fullname":"series<areaspline>.lineColor","title":"lineColor","parent":"series<areaspline>","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<polygon>-data-marker--lineColor","fullname":"series<polygon>.data.marker.lineColor","title":"lineColor","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<spline>-data-marker-states-select--lineColor","fullname":"series<spline>.data.marker.states.select.lineColor","title":"lineColor","parent":"series<spline>-data-marker-states-select","isParent":false,"returnType":"Color","defaults":"\"#000000\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<arearange>--lineColor","fullname":"series<arearange>.lineColor","title":"lineColor","parent":"series<arearange>","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<area>-marker--lineColor","fullname":"series<area>.marker.lineColor","title":"lineColor","parent":"series<area>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<area>--lineColor","fullname":"series<area>.lineColor","title":"lineColor","parent":"series<area>","isParent":false,"returnType":"Color","defaults":"null","description":"A separate color for the graph line. By default the line takes the <code>color</code> of the series, but the lineColor setting allows setting a separate color for the line without altering the <code>fillColor</code>."},{"name":"series<line>-marker--lineColor","fullname":"series<line>.marker.lineColor","title":"lineColor","parent":"series<line>-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<flags>--lineColor","fullname":"series<flags>.lineColor","title":"lineColor","parent":"series<flags>","isParent":false,"returnType":"Color","defaults":"\"black\"","description":"The color of the line/border of the flag. Defaults to <code>\"black\"</code>."},{"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 <code>null</code>, the series' or point's color is used."},{"name":"series<columnrange>-states-hover-marker--lineColor","fullname":"series<columnrange>.states.hover.marker.lineColor","title":"lineColor","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Color","defaults":"\"#FFFFFF\"","description":"The color of the point marker's outline. When <code>null</code>, the series' or point's color is used."},{"name":"series<scatter>-marker-states-hover--lineWidth","fullname":"series<scatter>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<area>-states-hover--lineWidth","fullname":"series<area>.states.hover.lineWidth","title":"lineWidth","parent":"series<area>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<scatter>-states-hover--lineWidth","fullname":"series<scatter>.states.hover.lineWidth","title":"lineWidth","parent":"series<scatter>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<scatter>-marker-states-select--lineWidth","fullname":"series<scatter>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<scatter>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<area>-data-marker--lineWidth","fullname":"series<area>.data.marker.lineWidth","title":"lineWidth","parent":"series<area>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<arearange>--lineWidth","fullname":"series<arearange>.lineWidth","title":"lineWidth","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"1","since":"1.2.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"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."},{"name":"series<spline>-data-marker-states-select--lineWidth","fullname":"series<spline>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<spline>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"plotOptions-flags--lineWidth","fullname":"plotOptions.flags.lineWidth","title":"lineWidth","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the candlestick line/border. Defaults to <code>1</code>."},{"name":"series<ohlc>--lineWidth","fullname":"series<ohlc>.lineWidth","title":"lineWidth","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the line/border. Defaults to <code>1</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/ohlc-linewidth/\" target=\"_blank\">A greater line width</a>"},{"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."},{"name":"series<area>-marker-states-hover--lineWidth","fullname":"series<area>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<spline>-data-marker--lineWidth","fullname":"series<spline>.data.marker.lineWidth","title":"lineWidth","parent":"series<spline>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"plotOptions-flags-states-hover-marker--lineWidth","fullname":"plotOptions.flags.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<flags>-states-hover-marker--lineWidth","fullname":"series<flags>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<line>-states-hover--lineWidth","fullname":"series<line>.states.hover.lineWidth","title":"lineWidth","parent":"series<line>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<line>-states-hover-marker--lineWidth","fullname":"series<line>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<spline>-states-hover--lineWidth","fullname":"series<spline>.states.hover.lineWidth","title":"lineWidth","parent":"series<spline>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/linewidth/\" target=\"_blank\">A 2px line on X axis</a>"},{"name":"series<area>-marker--lineWidth","fullname":"series<area>.marker.lineWidth","title":"lineWidth","parent":"series<area>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"plotOptions-areasplinerange--lineWidth","fullname":"plotOptions.areasplinerange.lineWidth","title":"lineWidth","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1","since":"1.2.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-states-hover-marker--lineWidth","fullname":"series<spline>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<areaspline>-marker-states-hover--lineWidth","fullname":"series<areaspline>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<polygon>-states-hover-marker--lineWidth","fullname":"series<polygon>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"plotOptions-candlestick-states-hover--lineWidth","fullname":"plotOptions.candlestick.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-candlestick-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"plotOptions-ohlc-states-hover--lineWidth","fullname":"plotOptions.ohlc.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-ohlc-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"name":"series<area>-states-hover-marker--lineWidth","fullname":"series<area>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<line>-data-marker-states-hover--lineWidth","fullname":"series<line>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"plotOptions-candlestick-states-hover-marker--lineWidth","fullname":"plotOptions.candlestick.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"series<areasplinerange>-states-hover-marker--lineWidth","fullname":"series<areasplinerange>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<candlestick>--lineWidth","fullname":"series<candlestick>.lineWidth","title":"lineWidth","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the candlestick line/border. Defaults to <code>1</code>."},{"name":"plotOptions-arearange--lineWidth","fullname":"plotOptions.arearange.lineWidth","title":"lineWidth","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1","since":"1.2.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-data-marker-states-hover--lineWidth","fullname":"series<area>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<areaspline>-data-marker-states-hover--lineWidth","fullname":"series<areaspline>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<candlestick>-states-hover--lineWidth","fullname":"series<candlestick>.states.hover.lineWidth","title":"lineWidth","parent":"series<candlestick>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<area>-marker-states-select--lineWidth","fullname":"series<area>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<area>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<spline>-data-marker-states-hover--lineWidth","fullname":"series<spline>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"series<polygon>-states-hover--lineWidth","fullname":"series<polygon>.states.hover.lineWidth","title":"lineWidth","parent":"series<polygon>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"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."},{"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."},{"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."},{"name":"series<spline>-marker--lineWidth","fullname":"series<spline>.marker.lineWidth","title":"lineWidth","parent":"series<spline>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<polygon>-marker--lineWidth","fullname":"series<polygon>.marker.lineWidth","title":"lineWidth","parent":"series<polygon>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<line>-data-marker-states-select--lineWidth","fullname":"series<line>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<line>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<column>-states-hover--lineWidth","fullname":"series<column>.states.hover.lineWidth","title":"lineWidth","parent":"series<column>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/linewidth/\" target=\"_blank\">A 2px line on X axis</a>"},{"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."},{"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."},{"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."},{"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."},{"name":"series<scatter>-states-hover-marker--lineWidth","fullname":"series<scatter>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<ohlc>-states-hover--lineWidth","fullname":"series<ohlc>.states.hover.lineWidth","title":"lineWidth","parent":"series<ohlc>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<line>-marker-states-hover--lineWidth","fullname":"series<line>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<areaspline>-marker-states-select--lineWidth","fullname":"series<areaspline>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<areaspline>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"series<arearange>-states-hover-marker--lineWidth","fullname":"series<arearange>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<scatter>-data-marker--lineWidth","fullname":"series<scatter>.data.marker.lineWidth","title":"lineWidth","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<polygon>-marker-states-select--lineWidth","fullname":"series<polygon>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<polygon>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<polygon>--lineWidth","fullname":"series<polygon>.lineWidth","title":"lineWidth","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points."},{"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."},{"name":"series<scatter>-marker--lineWidth","fullname":"series<scatter>.marker.lineWidth","title":"lineWidth","parent":"series<scatter>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<line>-marker-states-select--lineWidth","fullname":"series<line>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<line>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<line>--lineWidth","fullname":"series<line>.lineWidth","title":"lineWidth","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"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."},{"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."},{"name":"plotOptions-candlestick--lineWidth","fullname":"plotOptions.candlestick.lineWidth","title":"lineWidth","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the candlestick line/border. Defaults to <code>1</code>."},{"name":"series<scatter>-data-marker-states-select--lineWidth","fullname":"series<scatter>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<scatter>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"plotOptions-flags-states-hover--lineWidth","fullname":"plotOptions.flags.states.hover.lineWidth","title":"lineWidth","parent":"plotOptions-flags-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"name":"series<ohlc>-states-hover-marker--lineWidth","fullname":"series<ohlc>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"series<spline>-marker-states-select--lineWidth","fullname":"series<spline>.marker.states.select.lineWidth","title":"lineWidth","parent":"series<spline>-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"plotOptions-ohlc-states-hover-marker--lineWidth","fullname":"plotOptions.ohlc.states.hover.marker.lineWidth","title":"lineWidth","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<line>-data-marker--lineWidth","fullname":"series<line>.data.marker.lineWidth","title":"lineWidth","parent":"series<line>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<columnrange>-states-hover-marker--lineWidth","fullname":"series<columnrange>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<scatter>-data-marker-states-hover--lineWidth","fullname":"series<scatter>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<polygon>-data-marker-states-select--lineWidth","fullname":"series<polygon>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<polygon>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<polygon>-data-marker-states-hover--lineWidth","fullname":"series<polygon>.data.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<candlestick>-states-hover-marker--lineWidth","fullname":"series<candlestick>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"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."},{"name":"series<flags>--lineWidth","fullname":"series<flags>.lineWidth","title":"lineWidth","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the candlestick line/border. Defaults to <code>1</code>."},{"name":"series<scatter>--lineWidth","fullname":"series<scatter>.lineWidth","title":"lineWidth","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the line connecting the data points."},{"name":"series<line>-marker--lineWidth","fullname":"series<line>.marker.lineWidth","title":"lineWidth","parent":"series<line>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<areaspline>-data-marker-states-select--lineWidth","fullname":"series<areaspline>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<areaspline>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<areaspline>--lineWidth","fullname":"series<areaspline>.lineWidth","title":"lineWidth","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<area>--lineWidth","fullname":"series<area>.lineWidth","title":"lineWidth","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"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."},{"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."},{"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."},{"name":"series<areasplinerange>--lineWidth","fullname":"series<areasplinerange>.lineWidth","title":"lineWidth","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"1","since":"1.2.0","description":"Pixel width of the arearange graph line.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-states-hover--lineWidth","fullname":"series<areaspline>.states.hover.lineWidth","title":"lineWidth","parent":"series<areaspline>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<areasplinerange>-states-hover--lineWidth","fullname":"series<areasplinerange>.states.hover.lineWidth","title":"lineWidth","parent":"series<areasplinerange>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<area>-data-marker-states-select--lineWidth","fullname":"series<area>.data.marker.states.select.lineWidth","title":"lineWidth","parent":"series<area>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<polygon>-data-marker--lineWidth","fullname":"series<polygon>.data.marker.lineWidth","title":"lineWidth","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<areaspline>-marker--lineWidth","fullname":"series<areaspline>.marker.lineWidth","title":"lineWidth","parent":"series<areaspline>-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"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."},{"name":"series<areaspline>-data-marker--lineWidth","fullname":"series<areaspline>.data.marker.lineWidth","title":"lineWidth","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<column>-states-hover-marker--lineWidth","fullname":"series<column>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<flags>-states-hover--lineWidth","fullname":"series<flags>.states.hover.lineWidth","title":"lineWidth","parent":"series<flags>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"name":"series<areaspline>-states-hover-marker--lineWidth","fullname":"series<areaspline>.states.hover.marker.lineWidth","title":"lineWidth","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<spline>--lineWidth","fullname":"series<spline>.lineWidth","title":"lineWidth","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<spline>-marker-states-hover--lineWidth","fullname":"series<spline>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"plotOptions-ohlc--lineWidth","fullname":"plotOptions.ohlc.lineWidth","title":"lineWidth","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel width of the line/border. Defaults to <code>1</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/ohlc-linewidth/\" target=\"_blank\">A greater line width</a>"},{"name":"series<columnrange>-states-hover--lineWidth","fullname":"series<columnrange>.states.hover.lineWidth","title":"lineWidth","parent":"series<columnrange>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"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."},{"name":"series<polygon>-marker-states-hover--lineWidth","fullname":"series<polygon>.marker.states.hover.lineWidth","title":"lineWidth","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"0","description":"The width of the point marker's outline."},{"name":"series<arearange>-states-hover--lineWidth","fullname":"series<arearange>.states.hover.lineWidth","title":"lineWidth","parent":"series<arearange>-states-hover","isParent":false,"returnType":"Number","defaults":"2","description":"Pixel with of the graph line."},{"name":"series<line>-data-marker-states-hover--lineWidthPlus","fullname":"series<line>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<area>-states-hover--lineWidthPlus","fullname":"series<area>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<area>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<spline>-states-hover--lineWidthPlus","fullname":"series<spline>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<spline>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover--lineWidthPlus","fullname":"plotOptions.candlestick.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-candlestick-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<arearange>-states-hover--lineWidthPlus","fullname":"series<arearange>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<arearange>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<scatter>-marker-states-hover--lineWidthPlus","fullname":"series<scatter>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<areaspline>-marker-states-hover--lineWidthPlus","fullname":"series<areaspline>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<scatter>-data-marker-states-hover--lineWidthPlus","fullname":"series<scatter>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<spline>-marker-states-hover--lineWidthPlus","fullname":"series<spline>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<areasplinerange>-states-hover--lineWidthPlus","fullname":"series<areasplinerange>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<areasplinerange>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<areaspline>-data-marker-states-hover--lineWidthPlus","fullname":"series<areaspline>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<areaspline>-states-hover--lineWidthPlus","fullname":"series<areaspline>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<areaspline>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<flags>-states-hover--lineWidthPlus","fullname":"series<flags>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<flags>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<area>-data-marker-states-hover--lineWidthPlus","fullname":"series<area>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<line>-states-hover--lineWidthPlus","fullname":"series<line>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<line>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<area>-marker-states-hover--lineWidthPlus","fullname":"series<area>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<ohlc>-states-hover--lineWidthPlus","fullname":"series<ohlc>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<ohlc>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<spline>-data-marker-states-hover--lineWidthPlus","fullname":"series<spline>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<columnrange>-states-hover--lineWidthPlus","fullname":"series<columnrange>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<columnrange>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<line>-marker-states-hover--lineWidthPlus","fullname":"series<line>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover--lineWidthPlus","fullname":"plotOptions.ohlc.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-ohlc-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<scatter>-states-hover--lineWidthPlus","fullname":"series<scatter>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<scatter>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<column>-states-hover--lineWidthPlus","fullname":"series<column>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<column>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","deprecated":false},{"name":"series<polygon>-marker-states-hover--lineWidthPlus","fullname":"series<polygon>.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"plotOptions-flags-states-hover--lineWidthPlus","fullname":"plotOptions.flags.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"plotOptions-flags-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<polygon>-states-hover--lineWidthPlus","fullname":"series<polygon>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<polygon>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<candlestick>-states-hover--lineWidthPlus","fullname":"series<candlestick>.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<candlestick>-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<polygon>-data-marker-states-hover--lineWidthPlus","fullname":"series<polygon>.data.marker.states.hover.lineWidthPlus","title":"lineWidthPlus","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"1","since":"2.0.3","description":"The additional line width for a hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">2 pixels wider on hover</a>","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":"1.0.3","description":"The additional line width for the graph of a hovered series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels wider</a>","deprecated":false},{"name":"series<areaspline>--linecap","fullname":"series<areaspline>.linecap","title":"linecap","parent":"series<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<line>--linecap","fullname":"series<line>.linecap","title":"linecap","parent":"series<line>","isParent":false,"returnType":"String","defaults":"round","values":"[\"round\", \"butt\", \"square\"]","since":"3.0.7","description":"The SVG value used for the <code>stroke-linecap</code> and <code>stroke-linejoin</code> of a line graph. Round means that lines are rounded in the ends and bends.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>--linecap","fullname":"series<areasplinerange>.linecap","title":"linecap","parent":"series<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<arearange>--linecap","fullname":"series<arearange>.linecap","title":"linecap","parent":"series<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":"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-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":"series<spline>--linecap","fullname":"series<spline>.linecap","title":"linecap","parent":"series<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-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-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-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<area>--linecap","fullname":"series<area>.linecap","title":"linecap","parent":"series<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-line--linecap","fullname":"plotOptions.line.linecap","title":"linecap","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"round","values":"[\"round\", \"butt\", \"square\"]","since":"3.0.7","description":"The SVG value used for the <code>stroke-linecap</code> and <code>stroke-linejoin</code> of a line graph. Round means that lines are rounded in the ends and bends.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--linkedTo","fullname":"plotOptions.areasplinerange.linkedTo","title":"linkedTo","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>--linkedTo","fullname":"series<areaspline>.linkedTo","title":"linkedTo","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>--linkedTo","fullname":"series<scatter>.linkedTo","title":"linkedTo","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>--linkedTo","fullname":"series<areasplinerange>.linkedTo","title":"linkedTo","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>--linkedTo","fullname":"series<columnrange>.linkedTo","title":"linkedTo","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--linkedTo","fullname":"plotOptions.scatter.linkedTo","title":"linkedTo","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick--linkedTo","fullname":"plotOptions.candlestick.linkedTo","title":"linkedTo","parent":"plotOptions-candlestick","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"xAxis--linkedTo","fullname":"xAxis.linkedTo","title":"linkedTo","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"null","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."},{"name":"plotOptions-series--linkedTo","fullname":"plotOptions.series.linkedTo","title":"linkedTo","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>--linkedTo","fullname":"series<polygon>.linkedTo","title":"linkedTo","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<spline>--linkedTo","fullname":"series<spline>.linkedTo","title":"linkedTo","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--linkedTo","fullname":"plotOptions.columnrange.linkedTo","title":"linkedTo","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<candlestick>--linkedTo","fullname":"series<candlestick>.linkedTo","title":"linkedTo","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--linkedTo","fullname":"plotOptions.polygon.linkedTo","title":"linkedTo","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<area>--linkedTo","fullname":"series<area>.linkedTo","title":"linkedTo","parent":"series<area>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-line--linkedTo","fullname":"plotOptions.line.linkedTo","title":"linkedTo","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange--linkedTo","fullname":"plotOptions.arearange.linkedTo","title":"linkedTo","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-areaspline--linkedTo","fullname":"plotOptions.areaspline.linkedTo","title":"linkedTo","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<flags>--linkedTo","fullname":"series<flags>.linkedTo","title":"linkedTo","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<column>--linkedTo","fullname":"series<column>.linkedTo","title":"linkedTo","parent":"series<column>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<arearange>--linkedTo","fullname":"series<arearange>.linkedTo","title":"linkedTo","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc--linkedTo","fullname":"plotOptions.ohlc.linkedTo","title":"linkedTo","parent":"plotOptions-ohlc","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-area--linkedTo","fullname":"plotOptions.area.linkedTo","title":"linkedTo","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<line>--linkedTo","fullname":"series<line>.linkedTo","title":"linkedTo","parent":"series<line>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags--linkedTo","fullname":"plotOptions.flags.linkedTo","title":"linkedTo","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--linkedTo","fullname":"plotOptions.spline.linkedTo","title":"linkedTo","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"series<ohlc>--linkedTo","fullname":"series<ohlc>.linkedTo","title":"linkedTo","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-column--linkedTo","fullname":"plotOptions.column.linkedTo","title":"linkedTo","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"","values":"","since":"1.3","description":"The <a href=\"#series.id\">id</a> 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/arearange-line/\" target=\"_blank\">Linked series</a>","seeAlso":"","deprecated":false},{"name":"yAxis--linkedTo","fullname":"yAxis.linkedTo","title":"linkedTo","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"null","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."},{"name":"scrollbar--liveRedraw","fullname":"scrollbar.liveRedraw","title":"liveRedraw","parent":"scrollbar","isParent":false,"returnType":"Boolean","defaults":"","values":"","since":"1.3","description":"Whether to redraw the main chart as the scrollbar or the navigator zoomed window is moved. Defaults to <code>true</code> for modern browsers and <code>false</code> for legacy IE browsers as well as mobile devices.","demo":"","seeAlso":"","deprecated":false},{"name":"chart-events--load","fullname":"chart.events.load","title":"load","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","description":"<p>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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.</p>\r\n\r\n<p>There is also a second parameter to the chart constructor where a callback function can be passed to be executed on chart.load.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/events-load/\" target=\"_blank\">Alert on chart load</a>","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 <code>chart.showLoading()</code>. 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 <code>lang</code> 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 <code>chart.showLoading</code>."},{"name":"series<areasplinerange>-data--low","fullname":"series<areasplinerange>.data.low","title":"low","parent":"series<areasplinerange>-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series<columnrange>-data--low","fullname":"series<columnrange>.data.low","title":"low","parent":"series<columnrange>-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series<ohlc>-data--low","fullname":"series<ohlc>.data.low","title":"low","parent":"series<ohlc>-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series<candlestick>-data--low","fullname":"series<candlestick>.data.low","title":"low","parent":"series<candlestick>-data","isParent":false,"returnType":"Number","description":"The low or minimum value for each data point."},{"name":"series<arearange>-data--low","fullname":"series<arearange>.data.low","title":"low","parent":"series<arearange>-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","defaults":"","description":"The pixel distance between the axis labels or line and the title. Defaults to 0 for horizontal axes, 10 for vertical"},{"name":"legend--margin","fullname":"legend.margin","title":"margin","parent":"legend","isParent":false,"returnType":"Number","defaults":"12","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.","deprecated":false},{"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 or line and the title. Defaults to 0 for horizontal axes, 10 for vertical."},{"name":"title--margin","fullname":"title.margin","title":"margin","parent":"title","isParent":false,"returnType":"Number","defaults":"15","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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-margin/\" target=\"_blank\">A chart title margin of 50</a>."},{"name":"chart--margin","fullname":"chart.margin","title":"margin","parent":"chart","isParent":false,"returnType":"Array","defaults":"[null]","description":"<p>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 <code>marginTop</code>, <code>marginRight</code>, <code>marginBottom</code> and <code>marginLeft</code> for shorthand setting of one option.</p> <p>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 <code>spacingTop</code>, <code>spacingRight</code>, <code>spacingBottom</code> and <code>spacingLeft</code> options.</p>\n\t\t Defaults to <code>[null]</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/margin-zero/\" target=\"_blank\">Zero margins</a>"},{"name":"navigator--margin","fullname":"navigator.margin","title":"margin","parent":"navigator","isParent":false,"returnType":"Number","defaults":"25","description":"The distance from the nearest element, the X axis or X axis labels.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/margin/\" target=\"_blank\">A margin of 2 draws the\r\n\t\t\t\tnavigator closer to the X axis labels</a>","deprecated":false},{"name":"chart--marginBottom","fullname":"chart.marginBottom","title":"marginBottom","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","since":"","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 <code>spacingBottom</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/marginbottom/\" target=\"_blank\">100px bottom margin</a>","seeAlso":"","deprecated":false},{"name":"chart--marginLeft","fullname":"chart.marginLeft","title":"marginLeft","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","since":"","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 <code>spacingLeft</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/marginleft/\" target=\"_blank\">150px left margin</a>","seeAlso":"","deprecated":false},{"name":"chart--marginRight","fullname":"chart.marginRight","title":"marginRight","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","since":"","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 <code>spacingRight</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/marginright/\" target=\"_blank\">100px right margin</a>","seeAlso":"","deprecated":false},{"name":"chart--marginTop","fullname":"chart.marginTop","title":"marginTop","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","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 <code>spacingTop</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/margintop/\" target=\"_blank\">100px top margin</a>"},{"name":"series<scatter>-marker","fullname":"series<scatter>.marker","title":"marker","parent":"series<scatter>","isParent":true},{"name":"plotOptions-area-marker","fullname":"plotOptions.area.marker","title":"marker","parent":"plotOptions-area","isParent":true},{"name":"plotOptions-polygon-marker","fullname":"plotOptions.polygon.marker","title":"marker","parent":"plotOptions-polygon","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<arearange>-states-hover-marker","fullname":"series<arearange>.states.hover.marker","title":"marker","parent":"series<arearange>-states-hover","isParent":true},{"name":"series<line>-marker","fullname":"series<line>.marker","title":"marker","parent":"series<line>","isParent":true},{"name":"series<scatter>-states-hover-marker","fullname":"series<scatter>.states.hover.marker","title":"marker","parent":"series<scatter>-states-hover","isParent":true},{"name":"series<flags>-states-hover-marker","fullname":"series<flags>.states.hover.marker","title":"marker","parent":"series<flags>-states-hover","isParent":true},{"name":"plotOptions-ohlc-states-hover-marker","fullname":"plotOptions.ohlc.states.hover.marker","title":"marker","parent":"plotOptions-ohlc-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<polygon>-marker","fullname":"series<polygon>.marker","title":"marker","parent":"series<polygon>","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-scatter-states-hover-marker","fullname":"plotOptions.scatter.states.hover.marker","title":"marker","parent":"plotOptions-scatter-states-hover","isParent":true},{"name":"series<spline>-data-marker","fullname":"series<spline>.data.marker","title":"marker","parent":"series<spline>-data","isParent":true},{"name":"plotOptions-line-marker","fullname":"plotOptions.line.marker","title":"marker","parent":"plotOptions-line","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<line>-data-marker","fullname":"series<line>.data.marker","title":"marker","parent":"series<line>-data","isParent":true},{"name":"series<polygon>-data-marker","fullname":"series<polygon>.data.marker","title":"marker","parent":"series<polygon>-data","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-spline-marker","fullname":"plotOptions.spline.marker","title":"marker","parent":"plotOptions-spline","isParent":true},{"name":"series<candlestick>-states-hover-marker","fullname":"series<candlestick>.states.hover.marker","title":"marker","parent":"series<candlestick>-states-hover","isParent":true},{"name":"series<area>-data-marker","fullname":"series<area>.data.marker","title":"marker","parent":"series<area>-data","isParent":true},{"name":"series<area>-states-hover-marker","fullname":"series<area>.states.hover.marker","title":"marker","parent":"series<area>-states-hover","isParent":true},{"name":"series<area>-marker","fullname":"series<area>.marker","title":"marker","parent":"series<area>","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<areaspline>-states-hover-marker","fullname":"series<areaspline>.states.hover.marker","title":"marker","parent":"series<areaspline>-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<column>-states-hover-marker","fullname":"series<column>.states.hover.marker","title":"marker","parent":"series<column>-states-hover","isParent":true},{"name":"plotOptions-series-marker","fullname":"plotOptions.series.marker","title":"marker","parent":"plotOptions-series","isParent":true},{"name":"series<polygon>-states-hover-marker","fullname":"series<polygon>.states.hover.marker","title":"marker","parent":"series<polygon>-states-hover","isParent":true},{"name":"series<ohlc>-states-hover-marker","fullname":"series<ohlc>.states.hover.marker","title":"marker","parent":"series<ohlc>-states-hover","isParent":true},{"name":"series<scatter>-data-marker","fullname":"series<scatter>.data.marker","title":"marker","parent":"series<scatter>-data","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-candlestick-states-hover-marker","fullname":"plotOptions.candlestick.states.hover.marker","title":"marker","parent":"plotOptions-candlestick-states-hover","isParent":true},{"name":"series<columnrange>-states-hover-marker","fullname":"series<columnrange>.states.hover.marker","title":"marker","parent":"series<columnrange>-states-hover","isParent":true},{"name":"series<areaspline>-data-marker","fullname":"series<areaspline>.data.marker","title":"marker","parent":"series<areaspline>-data","isParent":true},{"name":"series<spline>-marker","fullname":"series<spline>.marker","title":"marker","parent":"series<spline>","isParent":true},{"name":"series<line>-states-hover-marker","fullname":"series<line>.states.hover.marker","title":"marker","parent":"series<line>-states-hover","isParent":true},{"name":"plotOptions-areaspline-marker","fullname":"plotOptions.areaspline.marker","title":"marker","parent":"plotOptions-areaspline","isParent":true},{"name":"plotOptions-column-states-hover-marker","fullname":"plotOptions.column.states.hover.marker","title":"marker","parent":"plotOptions-column-states-hover","isParent":true},{"name":"series<areaspline>-marker","fullname":"series<areaspline>.marker","title":"marker","parent":"series<areaspline>","isParent":true},{"name":"series<spline>-states-hover-marker","fullname":"series<spline>.states.hover.marker","title":"marker","parent":"series<spline>-states-hover","isParent":true},{"name":"plotOptions-areaspline-states-hover-marker","fullname":"plotOptions.areaspline.states.hover.marker","title":"marker","parent":"plotOptions-areaspline-states-hover","isParent":true},{"name":"series<areasplinerange>-states-hover-marker","fullname":"series<areasplinerange>.states.hover.marker","title":"marker","parent":"series<areasplinerange>-states-hover","isParent":true},{"name":"plotOptions-scatter-marker","fullname":"plotOptions.scatter.marker","title":"marker","parent":"plotOptions-scatter","isParent":true},{"name":"plotOptions-flags-states-hover-marker","fullname":"plotOptions.flags.states.hover.marker","title":"marker","parent":"plotOptions-flags-states-hover","isParent":true},{"name":"navigator--maskFill","fullname":"navigator.maskFill","title":"maskFill","parent":"navigator","isParent":false,"returnType":"Color","defaults":"rgba(128,179,236,0.3)","description":"The color of the mask covering the areas of the navigator series that are currently not visible in the main series. The default color is bluish with an opacity of 0.3 to see the series below.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/maskfill/\" target=\"_blank\">Blue, semi transparent mask</a>","deprecated":false},{"name":"navigator--maskInside","fullname":"navigator.maskInside","title":"maskInside","parent":"navigator","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"2.0","description":"Whether the mask should be inside the range marking the zoomed range, or outside. In Highstock 1.x it was always <code>false</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/maskinside-false/\" target=\"_blank\">False, mask outside</a>","seeAlso":"","deprecated":false},{"name":"yAxis--max","fullname":"yAxis.max","title":"max","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"null","description":"The maximum value of the axis. If <code>null</code>, the max value is automatically calculated. If the <code>endOnTick</code> option is true, the <code>max</code> value might be rounded up. The actual maximum value is also influenced by  <a class=\"internal\" href=\"#chart\">chart.alignTicks</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/min-max/\" target=\"_blank\">Fixed min and max</a>"},{"name":"xAxis--max","fullname":"xAxis.max","title":"max","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"null","description":"The maximum value of the axis. If <code>null</code>, the max value is automatically calculated. If the <code>endOnTick</code> option is true, the <code>max</code> value might be rounded up. The actual maximum value is also influenced by  <a class=\"internal\" href=\"#chart\">chart.alignTicks</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/min-max/\" target=\"_blank\">Fixed min and max</a>"},{"name":"legend--maxHeight","fullname":"legend.maxHeight","title":"maxHeight","parent":"legend","isParent":false,"returnType":"Number","defaults":"undefined","since":"1.2.0","description":"Maximum pixel height for the legend. When the maximum height is extended, navigation will show.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--maxPadding","fullname":"yAxis.maxPadding","title":"maxPadding","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0.05","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' <code>max</code> option is set or a max extreme is set using <code>axis.setExtremes()</code>, the maxPadding will be ignored.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minpadding-maxpadding/\" target=\"_blank\">Greater min- and maxPadding</a>"},{"name":"xAxis--maxPadding","fullname":"xAxis.maxPadding","title":"maxPadding","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"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' <code>max</code> option is set or a max extreme is set using <code>axis.setExtremes()</code>, the maxPadding will be ignored.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minpadding-maxpadding/\" target=\"_blank\">Greater min- and maxPadding</a>"},{"name":"series<flags>--maxPointWidth","fullname":"series<flags>.maxPointWidth","title":"maxPointWidth","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"plotOptions-columnrange--maxPointWidth","fullname":"plotOptions.columnrange.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"plotOptions-candlestick--maxPointWidth","fullname":"plotOptions.candlestick.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"series<columnrange>--maxPointWidth","fullname":"series<columnrange>.maxPointWidth","title":"maxPointWidth","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"series<column>--maxPointWidth","fullname":"series<column>.maxPointWidth","title":"maxPointWidth","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"series<ohlc>--maxPointWidth","fullname":"series<ohlc>.maxPointWidth","title":"maxPointWidth","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"plotOptions-flags--maxPointWidth","fullname":"plotOptions.flags.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"plotOptions-ohlc--maxPointWidth","fullname":"plotOptions.ohlc.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"plotOptions-column--maxPointWidth","fullname":"plotOptions.column.maxPointWidth","title":"maxPointWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"series<candlestick>--maxPointWidth","fullname":"series<candlestick>.maxPointWidth","title":"maxPointWidth","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"null","since":"2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/column-maxpointwidth-20/\" target=\"_blank\">Limited to 50</a>","seeAlso":"<a href=\"#plotOptions.column.pointWidth\">pointWidth</a>","deprecated":false},{"name":"xAxis-labels--maxStaggerLines","fullname":"xAxis.labels.maxStaggerLines","title":"maxStaggerLines","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"5","since":"1.3.3","description":"Horizontal axis only. When <code>staggerLines</code> is not set, <code>maxStaggerLines</code> defines how many lines the axis is allowed to add to automatically avoid overlapping X labels. Set to <code>1</code> to disable overlap detection. ","deprecated":true},{"name":"xAxis--maxZoom","fullname":"xAxis.maxZoom","title":"maxZoom","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"","description":"Deprecated. Use <code>minRange</code> instead.","deprecated":true},{"name":"yAxis--maxZoom","fullname":"yAxis.maxZoom","title":"maxZoom","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"","description":"Deprecated. Use <code>minRange</code> instead.","deprecated":true},{"name":"navigation--menuItemHoverStyle","fullname":"navigation.menuItemHoverStyle","title":"menuItemHoverStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","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 \r\n<pre>menuItemHoverStyle: {\r\n\tbackground: '#4572A5',\r\n\tcolor: '#FFFFFF'\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/menuitemhoverstyle/\" target=\"_blank\">Bold text on hover</a>","deprecated":false},{"name":"navigation--menuItemStyle","fullname":"navigation.menuItemStyle","title":"menuItemStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","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 \r\n<pre>menuItemStyle: {\r\n\tpadding: '0 5px',\r\n\tbackground: NONE,\r\n\tcolor: '#303030'\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/menuitemstyle/\" target=\"_blank\">Add a grey stripe to the left</a>","deprecated":false},{"name":"exporting-buttons-contextButton--menuItems","fullname":"exporting.buttons.contextButton.menuItems","title":"menuItems","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A collection of config options for the menu items. Each options object consists\r of a <code>text</code> option which is a string to show in the menu item, as\r well as an <code>onclick</code> parameter which is a callback function to run\r on click.</p>\r <p>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 <code>null</code> to unwanted positions (see override example below).</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-contextbutton-onclick/\" target=\"_blank\">Skip the menu and export the chart directly</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-contextbutton-menuitems/\" target=\"_blank\">override the menu items</a>","seeAlso":"","deprecated":false},{"name":"navigation--menuStyle","fullname":"navigation.menuStyle","title":"menuStyle","parent":"navigation","isParent":false,"returnType":"CSSObject","description":"CSS styles for the popup menu appearing by default when the export icon is clicked. This menu is rendered in HTML. Defaults to \r\n<pre>menuStyle: {\r\n\tborder: '1px solid #A0A0A0',\r\n\tbackground: '#FFFFFF'\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/menustyle/\" target=\"_blank\">Light gray menu background</a>","deprecated":false},{"name":"xAxis--min","fullname":"xAxis.min","title":"min","parent":"xAxis","isParent":false,"returnType":"Number","description":"The minimum value of the axis. If <code>null</code> the min value is automatically calculated. If the <code>startOnTick</code> option is true, the <code>min</code> value might be rounded down.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/min-max/\" target=\"_blank\">Fixed min and max</a>","deprecated":false},{"name":"yAxis--min","fullname":"yAxis.min","title":"min","parent":"yAxis","isParent":false,"returnType":"Number","description":"<p>The minimum value of the axis. If <code>null</code> the min value is automatically calculated.</p>\r\n\r\n<p>If the <code>startOnTick</code> option is true, the <code>min</code> value might be rounded down.</p>\r\n\r\n<p>The automatically calculated minimum value is also affected by <a href=\"#yAxis.floor\">floor</a>, <a href=\"#yAxis.minPadding\">minPadding</a>, <a href=\"#yAxis.minRange\">minRange</a> as well as <a href=\"#plotOptions.series.threshold\">series.threshold</a> and <a href=\"#plotOptions.series.softThreshold\">series.softThreshold</a>.</p>","demo":"Y axis min of <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/min-startontick-false/\" target=\"_blank\">-50 with startOnTick to false</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/min-startontick-true/\" target=\"_blank\">-50 with startOnTick true by default</a>","deprecated":false},{"name":"xAxis--minPadding","fullname":"xAxis.minPadding","title":"minPadding","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"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' <code>min</code> option is set or a min extreme is set using <code>axis.setExtremes()</code>, the minPadding will be ignored.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minpadding-maxpadding/\" target=\"_blank\">Greater min- and maxPadding</a>"},{"name":"yAxis--minPadding","fullname":"yAxis.minPadding","title":"minPadding","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"0.05","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' <code>min</code> option is set or a min extreme is set using <code>axis.setExtremes()</code>, the minPadding will be ignored.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minpadding-maxpadding/\" target=\"_blank\">Greater min- and maxPadding</a>"},{"name":"series<ohlc>--minPointLength","fullname":"series<ohlc>.minPointLength","title":"minPointLength","parent":"series<ohlc>","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."},{"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."},{"name":"plotOptions-ohlc--minPointLength","fullname":"plotOptions.ohlc.minPointLength","title":"minPointLength","parent":"plotOptions-ohlc","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."},{"name":"plotOptions-candlestick--minPointLength","fullname":"plotOptions.candlestick.minPointLength","title":"minPointLength","parent":"plotOptions-candlestick","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."},{"name":"series<columnrange>--minPointLength","fullname":"series<columnrange>.minPointLength","title":"minPointLength","parent":"series<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."},{"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."},{"name":"series<column>--minPointLength","fullname":"series<column>.minPointLength","title":"minPointLength","parent":"series<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."},{"name":"series<candlestick>--minPointLength","fullname":"series<candlestick>.minPointLength","title":"minPointLength","parent":"series<candlestick>","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."},{"name":"xAxis--minRange","fullname":"xAxis.minRange","title":"minRange","parent":"xAxis","isParent":false,"returnType":"Number","description":"<p>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.</p> \r\n\r\n<p>The default minRange for the x axis is five times the smallest interval between any of the data points.</p> \r\n\r\n<p>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.</p>\r\n\r\n<p>Note that the <code>minPadding</code>, <code>maxPadding</code>, <code>startOnTick</code> and <code>endOnTick</code> settings also affect how the extremes of the axis are computed.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minrange/\" target=\"_blank\">Max zoom of 6 months overrides user selections</a>","deprecated":false},{"name":"yAxis--minRange","fullname":"yAxis.minRange","title":"minRange","parent":"yAxis","isParent":false,"returnType":"Number","description":"<p>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.</p> \r\n\r\n<p>The default minRange for the x axis is five times the smallest interval between any of the data points.</p> \r\n\r\n<p>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.</p>\r\n\r\n<p>Note that the <code>minPadding</code>, <code>maxPadding</code>, <code>startOnTick</code> and <code>endOnTick</code> settings also affect how the extremes of the axis are computed.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minrange/\" target=\"_blank\">Max zoom of 6 months overrides user selections</a>","deprecated":false},{"name":"xAxis--minTickInterval","fullname":"xAxis.minTickInterval","title":"minTickInterval","parent":"xAxis","isParent":false,"returnType":"Number","since":"1.2.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--minTickInterval","fullname":"yAxis.minTickInterval","title":"minTickInterval","parent":"yAxis","isParent":false,"returnType":"Number","since":"1.2.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":"scrollbar--minWidth","fullname":"scrollbar.minWidth","title":"minWidth","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.5","description":"The minimum width of the scrollbar.","demo":"","seeAlso":"","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinecolor/\" target=\"_blank\">Bright grey lines from Y axis</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinecolor/\" target=\"_blank\">Bright grey lines from Y axis</a>"},{"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\"]","description":"The dash or dot style of the minor grid lines. For possible values, see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this demonstration</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinedashstyle/\" target=\"_blank\">Long dashes on minor grid lines</a>","deprecated":false},{"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\"]","description":"The dash or dot style of the minor grid lines. For possible values, see <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.1/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-dashstyle-all/\">this demonstration</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinedashstyle/\" target=\"_blank\">Long dashes on minor grid lines</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinewidth/\" target=\"_blank\">2px lines from Y axis </a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorgridlinewidth/\" target=\"_blank\">2px lines from Y axis </a>"},{"name":"yAxis--minorTickColor","fullname":"yAxis.minorTickColor","title":"minorTickColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#A0A0A0","description":"Color for the minor tick marks.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">Black tick marks on Y axis</a>"},{"name":"xAxis--minorTickColor","fullname":"xAxis.minorTickColor","title":"minorTickColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#A0A0A0","description":"Color for the minor tick marks.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">Black tick marks on Y axis</a>"},{"name":"xAxis--minorTickInterval","fullname":"xAxis.minorTickInterval","title":"minorTickInterval","parent":"xAxis","isParent":false,"returnType":"String|Number","description":"<p>Tick interval in scale units for the minor ticks. On a linear axis, if <code>\"auto\"</code>, \r\n the minor tick interval is calculated as a fifth of the tickInterval. If\r\n <code>null</code>, minor ticks are not shown.</p>\r\n <p>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.</p>\r\n\r\n<p>If user settings dictate minor ticks to become too dense, they don't make sense, and will be ignored to prevent performance problems.</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/basic-line/\" target=\"_blank\">Null by default</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minortickinterval-auto/\" target=\"_blank\">\"auto\"</a>","deprecated":false},{"name":"yAxis--minorTickInterval","fullname":"yAxis.minorTickInterval","title":"minorTickInterval","parent":"yAxis","isParent":false,"returnType":"String|Number","description":"<p>Tick interval in scale units for the minor ticks. On a linear axis, if <code>\"auto\"</code>, \r\n the minor tick interval is calculated as a fifth of the tickInterval. If\r\n <code>null</code>, minor ticks are not shown.</p>\r\n <p>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.</p>\r\n\r\n<p>If user settings dictate minor ticks to become too dense, they don't make sense, and will be ignored to prevent performance problems.</a>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/basic-line/\" target=\"_blank\">Null by default</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minortickinterval-auto/\" target=\"_blank\">\"auto\"</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">10px on Y axis</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">10px on Y axis</a>"},{"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 <code>inside</code> and <code>outside</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">Inside</a>"},{"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 <code>inside</code> and <code>outside</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">Inside</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">1px width</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/minorticks/\" target=\"_blank\">1px width</a>"},{"name":"lang--months","fullname":"lang.months","title":"months","parent":"lang","isParent":false,"returnType":"Array<String>;","defaults":"['January' 'February', 'March', 'April', 'May', 'June', 'July', \n\t\t\t\t'August', 'September', 'October', 'November', 'December'],","description":"An array containing the months names.\n\t\t Defaults to <code>['January', 'February', 'March', 'April', 'May', 'June', 'July',  \t'August', 'September', 'October', 'November', 'December']</code>."},{"name":"series<line>-events--mouseOut","fullname":"series<line>.events.mouseOut","title":"mouseOut","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<line>-data-events--mouseOut","fullname":"series<line>.data.events.mouseOut","title":"mouseOut","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-events--mouseOut","fullname":"series<flags>.events.mouseOut","title":"mouseOut","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<columnrange>-data-events--mouseOut","fullname":"series<columnrange>.data.events.mouseOut","title":"mouseOut","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<polygon>-events--mouseOut","fullname":"series<polygon>.events.mouseOut","title":"mouseOut","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<columnrange>-point-events--mouseOut","fullname":"series<columnrange>.point.events.mouseOut","title":"mouseOut","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areasplinerange>-data-events--mouseOut","fullname":"series<areasplinerange>.data.events.mouseOut","title":"mouseOut","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-data-events--mouseOut","fullname":"series<flags>.data.events.mouseOut","title":"mouseOut","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"plotOptions-flags-point-events--mouseOut","fullname":"plotOptions.flags.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-data-events--mouseOut","fullname":"series<candlestick>.data.events.mouseOut","title":"mouseOut","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<area>-point-events--mouseOut","fullname":"series<area>.point.events.mouseOut","title":"mouseOut","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<line>-point-events--mouseOut","fullname":"series<line>.point.events.mouseOut","title":"mouseOut","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<polygon>-point-events--mouseOut","fullname":"series<polygon>.point.events.mouseOut","title":"mouseOut","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<scatter>-events--mouseOut","fullname":"series<scatter>.events.mouseOut","title":"mouseOut","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<spline>-point-events--mouseOut","fullname":"series<spline>.point.events.mouseOut","title":"mouseOut","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areaspline>-data-events--mouseOut","fullname":"series<areaspline>.data.events.mouseOut","title":"mouseOut","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-candlestick-events--mouseOut","fullname":"plotOptions.candlestick.events.mouseOut","title":"mouseOut","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<scatter>-data-events--mouseOut","fullname":"series<scatter>.data.events.mouseOut","title":"mouseOut","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<column>-point-events--mouseOut","fullname":"series<column>.point.events.mouseOut","title":"mouseOut","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<polygon>-data-events--mouseOut","fullname":"series<polygon>.data.events.mouseOut","title":"mouseOut","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areaspline>-events--mouseOut","fullname":"series<areaspline>.events.mouseOut","title":"mouseOut","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<column>-events--mouseOut","fullname":"series<column>.events.mouseOut","title":"mouseOut","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-point-events--mouseOut","fullname":"series<ohlc>.point.events.mouseOut","title":"mouseOut","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<areasplinerange>-point-events--mouseOut","fullname":"series<areasplinerange>.point.events.mouseOut","title":"mouseOut","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<areaspline>-point-events--mouseOut","fullname":"series<areaspline>.point.events.mouseOut","title":"mouseOut","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-point-events--mouseOut","fullname":"series<candlestick>.point.events.mouseOut","title":"mouseOut","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<area>-events--mouseOut","fullname":"series<area>.events.mouseOut","title":"mouseOut","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"plotOptions-flags-events--mouseOut","fullname":"plotOptions.flags.events.mouseOut","title":"mouseOut","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"plotOptions-candlestick-point-events--mouseOut","fullname":"plotOptions.candlestick.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<area>-data-events--mouseOut","fullname":"series<area>.data.events.mouseOut","title":"mouseOut","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<arearange>-events--mouseOut","fullname":"series<arearange>.events.mouseOut","title":"mouseOut","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"plotOptions-ohlc-events--mouseOut","fullname":"plotOptions.ohlc.events.mouseOut","title":"mouseOut","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"plotOptions-ohlc-point-events--mouseOut","fullname":"plotOptions.ohlc.point.events.mouseOut","title":"mouseOut","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<column>-data-events--mouseOut","fullname":"series<column>.data.events.mouseOut","title":"mouseOut","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-events--mouseOut","fullname":"series<ohlc>.events.mouseOut","title":"mouseOut","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-point-events--mouseOut","fullname":"series<flags>.point.events.mouseOut","title":"mouseOut","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-data-events--mouseOut","fullname":"series<ohlc>.data.events.mouseOut","title":"mouseOut","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<scatter>-point-events--mouseOut","fullname":"series<scatter>.point.events.mouseOut","title":"mouseOut","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<columnrange>-events--mouseOut","fullname":"series<columnrange>.events.mouseOut","title":"mouseOut","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<arearange>-data-events--mouseOut","fullname":"series<arearange>.data.events.mouseOut","title":"mouseOut","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-events--mouseOut","fullname":"series<candlestick>.events.mouseOut","title":"mouseOut","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","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, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<spline>-events--mouseOut","fullname":"series<spline>.events.mouseOut","title":"mouseOut","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<areasplinerange>-events--mouseOut","fullname":"series<areasplinerange>.events.mouseOut","title":"mouseOut","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse leaves the graph. One parameter, <code>event</code>, is passed 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  <a class=\"internal\" href=\"#plotOptions.series\">stickyTracking</a> option is true, <code>mouseOut</code> doesn't happen before the mouse enters another graph or leaves the plot area.","deprecated":false},{"name":"series<arearange>-point-events--mouseOut","fullname":"series<arearange>.point.events.mouseOut","title":"mouseOut","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<spline>-data-events--mouseOut","fullname":"series<spline>.data.events.mouseOut","title":"mouseOut","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse leaves the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<line>-data-events--mouseOver","fullname":"series<line>.data.events.mouseOver","title":"mouseOver","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<line>-point-events--mouseOver","fullname":"series<line>.point.events.mouseOver","title":"mouseOver","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-candlestick-events--mouseOver","fullname":"plotOptions.candlestick.events.mouseOver","title":"mouseOver","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<spline>-events--mouseOver","fullname":"series<spline>.events.mouseOver","title":"mouseOver","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<scatter>-point-events--mouseOver","fullname":"series<scatter>.point.events.mouseOver","title":"mouseOver","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-data-events--mouseOver","fullname":"series<candlestick>.data.events.mouseOver","title":"mouseOver","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<polygon>-data-events--mouseOver","fullname":"series<polygon>.data.events.mouseOver","title":"mouseOver","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<scatter>-data-events--mouseOver","fullname":"series<scatter>.data.events.mouseOver","title":"mouseOver","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areaspline>-point-events--mouseOver","fullname":"series<areaspline>.point.events.mouseOver","title":"mouseOver","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areaspline>-events--mouseOver","fullname":"series<areaspline>.events.mouseOver","title":"mouseOver","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-events--mouseOver","fullname":"series<ohlc>.events.mouseOver","title":"mouseOver","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<area>-events--mouseOver","fullname":"series<area>.events.mouseOver","title":"mouseOver","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areasplinerange>-data-events--mouseOver","fullname":"series<areasplinerange>.data.events.mouseOver","title":"mouseOver","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<arearange>-point-events--mouseOver","fullname":"series<arearange>.point.events.mouseOver","title":"mouseOver","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<columnrange>-events--mouseOver","fullname":"series<columnrange>.events.mouseOver","title":"mouseOver","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<spline>-point-events--mouseOver","fullname":"series<spline>.point.events.mouseOver","title":"mouseOver","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<line>-events--mouseOver","fullname":"series<line>.events.mouseOver","title":"mouseOver","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<column>-point-events--mouseOver","fullname":"series<column>.point.events.mouseOver","title":"mouseOver","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<area>-data-events--mouseOver","fullname":"series<area>.data.events.mouseOver","title":"mouseOver","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areasplinerange>-point-events--mouseOver","fullname":"series<areasplinerange>.point.events.mouseOver","title":"mouseOver","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<column>-events--mouseOver","fullname":"series<column>.events.mouseOver","title":"mouseOver","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<arearange>-data-events--mouseOver","fullname":"series<arearange>.data.events.mouseOver","title":"mouseOver","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<columnrange>-data-events--mouseOver","fullname":"series<columnrange>.data.events.mouseOver","title":"mouseOver","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<scatter>-events--mouseOver","fullname":"series<scatter>.events.mouseOver","title":"mouseOver","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<column>-data-events--mouseOver","fullname":"series<column>.data.events.mouseOver","title":"mouseOver","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-events--mouseOver","fullname":"series<candlestick>.events.mouseOver","title":"mouseOver","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-point-events--mouseOver","fullname":"series<flags>.point.events.mouseOver","title":"mouseOver","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<arearange>-events--mouseOver","fullname":"series<arearange>.events.mouseOver","title":"mouseOver","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-ohlc-point-events--mouseOver","fullname":"plotOptions.ohlc.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areasplinerange>-events--mouseOver","fullname":"series<areasplinerange>.events.mouseOver","title":"mouseOver","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<candlestick>-point-events--mouseOver","fullname":"series<candlestick>.point.events.mouseOver","title":"mouseOver","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<area>-point-events--mouseOver","fullname":"series<area>.point.events.mouseOver","title":"mouseOver","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<columnrange>-point-events--mouseOver","fullname":"series<columnrange>.point.events.mouseOver","title":"mouseOver","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-data-events--mouseOver","fullname":"series<ohlc>.data.events.mouseOver","title":"mouseOver","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<ohlc>-point-events--mouseOver","fullname":"series<ohlc>.point.events.mouseOver","title":"mouseOver","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-candlestick-point-events--mouseOver","fullname":"plotOptions.candlestick.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-events--mouseOver","fullname":"series<flags>.events.mouseOver","title":"mouseOver","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<areaspline>-data-events--mouseOver","fullname":"series<areaspline>.data.events.mouseOver","title":"mouseOver","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-flags-events--mouseOver","fullname":"plotOptions.flags.events.mouseOver","title":"mouseOver","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-ohlc-events--mouseOver","fullname":"plotOptions.ohlc.events.mouseOver","title":"mouseOver","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<polygon>-point-events--mouseOver","fullname":"series<polygon>.point.events.mouseOver","title":"mouseOver","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<polygon>-events--mouseOver","fullname":"series<polygon>.events.mouseOver","title":"mouseOver","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the mouse enters the graph. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"plotOptions-flags-point-events--mouseOver","fullname":"plotOptions.flags.point.events.mouseOver","title":"mouseOver","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<flags>-data-events--mouseOver","fullname":"series<flags>.data.events.mouseOver","title":"mouseOver","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<spline>-data-events--mouseOver","fullname":"series<spline>.data.events.mouseOver","title":"mouseOver","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the mouse enters the area close to the point. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","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, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on  which library is used as the base for Highcharts.","deprecated":false},{"name":"series<columnrange>-data--name","fullname":"series<columnrange>.data.name","title":"name","parent":"series<columnrange>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<arearange>--name","fullname":"series<arearange>.name","title":"name","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<areasplinerange>-data--name","fullname":"series<areasplinerange>.data.name","title":"name","parent":"series<areasplinerange>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<area>-data--name","fullname":"series<area>.data.name","title":"name","parent":"series<area>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<candlestick>--name","fullname":"series<candlestick>.name","title":"name","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<scatter>-data--name","fullname":"series<scatter>.data.name","title":"name","parent":"series<scatter>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<ohlc>--name","fullname":"series<ohlc>.name","title":"name","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<arearange>-data--name","fullname":"series<arearange>.data.name","title":"name","parent":"series<arearange>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<area>--name","fullname":"series<area>.name","title":"name","parent":"series<area>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<line>--name","fullname":"series<line>.name","title":"name","parent":"series<line>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series--name","fullname":"series.name","title":"name","parent":"series","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<spline>--name","fullname":"series<spline>.name","title":"name","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<areaspline>-data--name","fullname":"series<areaspline>.data.name","title":"name","parent":"series<areaspline>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<flags>--name","fullname":"series<flags>.name","title":"name","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<polygon>--name","fullname":"series<polygon>.name","title":"name","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<column>--name","fullname":"series<column>.name","title":"name","parent":"series<column>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<candlestick>-data--name","fullname":"series<candlestick>.data.name","title":"name","parent":"series<candlestick>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<line>-data--name","fullname":"series<line>.data.name","title":"name","parent":"series<line>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<polygon>-data--name","fullname":"series<polygon>.data.name","title":"name","parent":"series<polygon>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<columnrange>--name","fullname":"series<columnrange>.name","title":"name","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<scatter>--name","fullname":"series<scatter>.name","title":"name","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<areaspline>--name","fullname":"series<areaspline>.name","title":"name","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<areasplinerange>--name","fullname":"series<areasplinerange>.name","title":"name","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"\"\"","description":"The name of the series as shown in the legend, tooltip etc."},{"name":"series<ohlc>-data--name","fullname":"series<ohlc>.data.name","title":"name","parent":"series<ohlc>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<spline>-data--name","fullname":"series<spline>.data.name","title":"name","parent":"series<spline>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"name":"series<column>-data--name","fullname":"series<column>.data.name","title":"name","parent":"series<column>-data","isParent":false,"returnType":"String","description":"The name of the point as shown in the legend, tooltip, dataLabel etc.","deprecated":false},{"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."},{"name":"navigation","fullname":"navigation","title":"navigation","isParent":true,"description":"A collection of options for buttons and menus appearing in the exporting module."},{"name":"navigator","fullname":"navigator","title":"navigator","isParent":true,"description":"The navigator is a small series below the main series, displaying a view of \n\t\tthe entire data set. It provides tools to zoom in and out on parts of the\n\t\tdata as well as panning across the dataset."},{"name":"lang--numericSymbols","fullname":"lang.numericSymbols","title":"numericSymbols","parent":"lang","isParent":false,"returnType":"Array<String>","defaults":"[ \"k\" , \"M\" , \"G\" , \"T\" , \"P\" , \"E\"]","since":"1.2.0","description":"<a href=\"http://en.wikipedia.org/wiki/Metric_prefix\">Metric prefixes</a> used to shorten high numbers in axis labels. Replacing any of the positions with <code>null</code> causes the full number to be written. Setting <code>numericSymbols</code> to <code>null</code> disables shortening altogether.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/lang/numericsymbols/\" target=\"_blank\">Replacing the symbols with text</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/offset/\" target=\"_blank\">Y axis offset by 70 px</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/offset/\" target=\"_blank\">Y axis offset by 70 px</a>"},{"name":"yAxis-title--offset","fullname":"yAxis.title.offset","title":"offset","parent":"yAxis-title","isParent":false,"returnType":"Number","since":"1.1","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/title-offset/\" target=\"_blank\">Place the axis title on top of the Y axis</a>","deprecated":false},{"name":"xAxis-title--offset","fullname":"xAxis.title.offset","title":"offset","parent":"xAxis-title","isParent":false,"returnType":"Number","since":"1.1","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/title-offset/\" target=\"_blank\">Place the axis title on top of the Y axis</a>","deprecated":false},{"name":"plotOptions-ohlc","fullname":"plotOptions.ohlc","title":"ohlc","parent":"plotOptions","isParent":true,"returnType":"","since":"","description":"","demo":"","deprecated":false},{"name":"plotOptions-flags--onKey","fullname":"plotOptions.flags.onKey","title":"onKey","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"y","values":"[\"y\", \"open\", \"high\", \"low\", \"close\"]","since":"4.2.2","description":"In case the flag is placed on a series, on what point key to place it. Line and columns have one key, <code>y</code>. In range or OHLC-type series, however, the flag can optionally be placed on the <code>open</code>, <code>high</code>, <code>low</code> or <code>close</code> key.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/stock/plotoptions/flags-onkey/\" target=\"_blank\">Range series, flag on high</a>.","deprecated":false},{"name":"series<flags>--onKey","fullname":"series<flags>.onKey","title":"onKey","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"y","values":"[\"y\", \"open\", \"high\", \"low\", \"close\"]","since":"4.2.2","description":"In case the flag is placed on a series, on what point key to place it. Line and columns have one key, <code>y</code>. In range or OHLC-type series, however, the flag can optionally be placed on the <code>open</code>, <code>high</code>, <code>low</code> or <code>close</code> key.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highcharts/highcharts/tree/master/samples/stock/plotoptions/flags-onkey/\" target=\"_blank\">Range series, flag on high</a>.","deprecated":false},{"name":"series<flags>--onSeries","fullname":"series<flags>.onSeries","title":"onSeries","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"undefined","description":"The id of the series that the flags should be drawn on. If no id is given, the flags are drawn on the x axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags/\" target=\"_blank\">Flags on series and on x axis</a>","deprecated":false},{"name":"plotOptions-flags--onSeries","fullname":"plotOptions.flags.onSeries","title":"onSeries","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"undefined","description":"The id of the series that the flags should be drawn on. If no id is given, the flags are drawn on the x axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags/\" target=\"_blank\">Flags on series and on x axis</a>","deprecated":false},{"name":"exporting-buttons-contextButton--onclick","fullname":"exporting.buttons.contextButton.onclick","title":"onclick","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Function","defaults":"","description":"A click handler callback to use on the button directly instead of the popup menu.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-contextbutton-onclick/\" target=\"_blank\">Skip the menu and export the chart directly</a>","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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-candlestick-states-hover-halo--opacity","fullname":"plotOptions.candlestick.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-candlestick-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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<areaspline>-states-hover-halo--opacity","fullname":"series<areaspline>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<line>-states-hover-halo--opacity","fullname":"series<line>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<scatter>-states-hover-halo--opacity","fullname":"series<scatter>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<flags>-states-hover-halo--opacity","fullname":"series<flags>.states.hover.halo.opacity","title":"opacity","parent":"series<flags>-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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<spline>-states-hover-halo--opacity","fullname":"series<spline>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<columnrange>-states-hover-halo--opacity","fullname":"series<columnrange>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-ohlc-states-hover-halo--opacity","fullname":"plotOptions.ohlc.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-ohlc-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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<ohlc>-states-hover-halo--opacity","fullname":"series<ohlc>.states.hover.halo.opacity","title":"opacity","parent":"series<ohlc>-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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<areasplinerange>-states-hover-halo--opacity","fullname":"series<areasplinerange>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<area>-states-hover-halo--opacity","fullname":"series<area>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<candlestick>-states-hover-halo--opacity","fullname":"series<candlestick>.states.hover.halo.opacity","title":"opacity","parent":"series<candlestick>-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 <code>attributes</code> 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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<polygon>-states-hover-halo--opacity","fullname":"series<polygon>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> 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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"plotOptions-flags-states-hover-halo--opacity","fullname":"plotOptions.flags.states.hover.halo.opacity","title":"opacity","parent":"plotOptions-flags-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 <code>attributes</code> 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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<column>-states-hover-halo--opacity","fullname":"series<column>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<arearange>-states-hover-halo--opacity","fullname":"series<arearange>.states.hover.halo.opacity","title":"opacity","parent":"series<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 <code>attributes</code> setting. Note that Highcharts is only able to apply opacity to colors of hex or rgb(a) formats.","deprecated":false},{"name":"series<candlestick>-data--open","fullname":"series<candlestick>.data.open","title":"open","parent":"series<candlestick>-data","isParent":false,"returnType":"Number","description":"The opening value of each data point."},{"name":"series<ohlc>-data--open","fullname":"series<ohlc>.data.open","title":"open","parent":"series<ohlc>-data","isParent":false,"returnType":"Number","description":"The opening value of each data point."},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/opposite/\" target=\"_blank\">Y axis on left side</a>","deprecated":false},{"name":"yAxis--opposite","fullname":"yAxis.opposite","title":"opposite","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","values":"","since":"","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. In Highstock 1.x, the Y axis was placed on the left side by default.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/opposite/\" target=\"_blank\">Y axis on left side</a>","seeAlso":"","deprecated":false},{"name":"xAxis--ordinal","fullname":"xAxis.ordinal","title":"ordinal","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.1","description":"In an ordinal axis, the points are equally spaced in the chart regardless of the actual time or x distance between them. This means that missing data for nights or weekends will not take  up space in the chart.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ordinal-true/\" target=\"_blank\">True by default</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ordinal-false/\" target=\"_blank\">false</a>"},{"name":"yAxis--ordinal","fullname":"yAxis.ordinal","title":"ordinal","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.1","description":"In an ordinal axis, the points are equally spaced in the chart regardless of the actual time or x distance between them. This means that missing data for nights or weekends will not take  up space in the chart.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ordinal-true/\" target=\"_blank\">True by default</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ordinal-false/\" target=\"_blank\">false</a>"},{"name":"navigator--outlineColor","fullname":"navigator.outlineColor","title":"outlineColor","parent":"navigator","isParent":false,"returnType":"Color","defaults":"#b2b1b6","description":"The color of the line marking the currently zoomed area in the navigator.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/outline/\" target=\"_blank\">2px blue outline</a>","deprecated":false},{"name":"navigator--outlineWidth","fullname":"navigator.outlineWidth","title":"outlineWidth","parent":"navigator","isParent":false,"returnType":"Number","defaults":"2","description":"The width of the line marking the currently zoomed area in the navigator.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/outline/\" target=\"_blank\">2px blue outline</a>","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.1.6","description":"How to handle overflowing labels on horizontal axis. Can be undefined, <code>false</code> or <code>\"justify\"</code>. By default it aligns inside the chart area. If \"justify\", labels will not render outside the plot area. If <code>false</code>, 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-column-dataLabels--overflow","fullname":"plotOptions.column.dataLabels.overflow","title":"overflow","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--overflow","fullname":"series<area>.dataLabels.overflow","title":"overflow","parent":"series<area>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--overflow","fullname":"plotOptions.candlestick.dataLabels.overflow","title":"overflow","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--overflow","fullname":"series<polygon>.dataLabels.overflow","title":"overflow","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataLabels--overflow","fullname":"series<line>.dataLabels.overflow","title":"overflow","parent":"series<line>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--overflow","fullname":"plotOptions.flags.dataLabels.overflow","title":"overflow","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--overflow","fullname":"series<flags>.dataLabels.overflow","title":"overflow","parent":"series<flags>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--overflow","fullname":"series<scatter>.dataLabels.overflow","title":"overflow","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-dataLabels--overflow","fullname":"series<column>.dataLabels.overflow","title":"overflow","parent":"series<column>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--overflow","fullname":"series<columnrange>.dataLabels.overflow","title":"overflow","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--overflow","fullname":"series<areasplinerange>.dataLabels.overflow","title":"overflow","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--overflow","fullname":"series<ohlc>.dataLabels.overflow","title":"overflow","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--overflow","fullname":"series<areaspline>.dataLabels.overflow","title":"overflow","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--overflow","fullname":"series<spline>.dataLabels.overflow","title":"overflow","parent":"series<spline>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--overflow","fullname":"plotOptions.ohlc.dataLabels.overflow","title":"overflow","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--overflow","fullname":"series<arearange>.dataLabels.overflow","title":"overflow","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--overflow","fullname":"series<candlestick>.dataLabels.overflow","title":"overflow","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"String","defaults":"justify","values":"[\"justify\", \"none\"]","since":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","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":"1.3.6","description":"How to handle data labels that flow outside the plot area. The default is <code>justify</code>, 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 <code>crop</code> to <code>false</code> and <code>overflow</code> to <code>\"none\"</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--padding","fullname":"series<spline>.dataLabels.padding","title":"padding","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--padding","fullname":"plotOptions.candlestick.dataLabels.padding","title":"padding","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"yAxis-crosshair-label--padding","fullname":"yAxis.crosshair.label.padding","title":"padding","parent":"yAxis-crosshair-label","isParent":false,"returnType":"Number","defaults":"8","since":"2.1","description":"Padding inside the crosshair label.","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<arearange>-dataLabels--padding","fullname":"series<arearange>.dataLabels.padding","title":"padding","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<polygon>-dataLabels--padding","fullname":"series<polygon>.dataLabels.padding","title":"padding","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"legend--padding","fullname":"legend.padding","title":"padding","parent":"legend","isParent":false,"returnType":"Number","defaults":"8","since":"1.1","description":"The inner padding of the legend box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/padding-itemmargin/\" target=\"_blank\">\r\n\t\t\t\tPadding and item margins demonstrated</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--padding","fullname":"plotOptions.flags.dataLabels.padding","title":"padding","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<scatter>-dataLabels--padding","fullname":"series<scatter>.dataLabels.padding","title":"padding","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--padding","fullname":"plotOptions.ohlc.dataLabels.padding","title":"padding","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<ohlc>-dataLabels--padding","fullname":"series<ohlc>.dataLabels.padding","title":"padding","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--padding","fullname":"series<areasplinerange>.dataLabels.padding","title":"padding","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<line>-dataLabels--padding","fullname":"series<line>.dataLabels.padding","title":"padding","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<flags>-dataLabels--padding","fullname":"series<flags>.dataLabels.padding","title":"padding","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<candlestick>-dataLabels--padding","fullname":"series<candlestick>.dataLabels.padding","title":"padding","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<areaspline>-dataLabels--padding","fullname":"series<areaspline>.dataLabels.padding","title":"padding","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<columnrange>-dataLabels--padding","fullname":"series<columnrange>.dataLabels.padding","title":"padding","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<area>-dataLabels--padding","fullname":"series<area>.dataLabels.padding","title":"padding","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"series<column>-dataLabels--padding","fullname":"series<column>.dataLabels.padding","title":"padding","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"5","since":"1.1.6","description":"When either the <code>borderWidth</code> or the <code>backgroundColor</code> is set, this\r\n is the padding within the box.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","deprecated":false},{"name":"xAxis-crosshair-label--padding","fullname":"xAxis.crosshair.label.padding","title":"padding","parent":"xAxis-crosshair-label","isParent":false,"returnType":"Number","defaults":"8","since":"2.1","description":"Padding inside the crosshair label.","deprecated":false},{"name":"chart--panning","fullname":"chart.panning","title":"panning","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","description":"Allow panning the zoomed area by click and drag on the chart. When the <code>zoomType</code> option is set, panning is disabled."},{"name":"chart--pinchType","fullname":"chart.pinchType","title":"pinchType","parent":"chart","isParent":false,"returnType":"String","defaults":"x","values":"[\"x\", \"y\", \"xy\"]","since":"1.3","description":"Equivalent to <a href=\"#chart.zoomType\">zoomType</a>, but for multitouch gestures only. By default, the <code>pinchType</code> is the same as the <code>zoomType</code> 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":"chart--plotBackgroundColor","fullname":"chart.plotBackgroundColor","title":"plotBackgroundColor","parent":"chart","isParent":false,"returnType":"Color","defaults":"null","description":"The background color or gradient for the plot area.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotbackgroundcolor-color/\" target=\"_blank\">Color</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotbackgroundcolor-gradient/\" target=\"_blank\">gradient</a>"},{"name":"chart--plotBackgroundImage","fullname":"chart.plotBackgroundImage","title":"plotBackgroundImage","parent":"chart","isParent":false,"returnType":"String","defaults":"null","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotbackgroundimage/\" target=\"_blank\">Skies</a>","deprecated":false},{"name":"xAxis-plotBands","fullname":"xAxis.plotBands","title":"plotBands","parent":"xAxis","isParent":true,"returnType":"Array<Object>","description":"An array of colored bands stretching across the plot area marking an interval on the axis.","deprecated":false},{"name":"yAxis-plotBands","fullname":"yAxis.plotBands","title":"plotBands","parent":"yAxis","isParent":true,"returnType":"Array<Object>","description":"An array of objects defining plot bands on the Y axis.","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotborder/\" target=\"_blank\">Blue border</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotborder/\" target=\"_blank\">2px border</a>"},{"name":"yAxis-plotLines","fullname":"yAxis.plotLines","title":"plotLines","parent":"yAxis","isParent":true,"returnType":"Array<Object>","description":"An array of lines stretching across the plot area, marking a specific value on one of the axes.","deprecated":false},{"name":"xAxis-plotLines","fullname":"xAxis.plotLines","title":"plotLines","parent":"xAxis","isParent":true,"returnType":"Array<Object>","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":"<p>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.</p>\n\t\t<p>Configuration options for the series are given in three levels. Options\n\t\tfor all series in a chart are given in the <a class=\"internal\" href=\"#plotOptions.series\">plotOptions.series</a> 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 <a class=\"internal\" href=\"#series\">the \n\t\tseries array</a>.</p>"},{"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\r be set. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/plotshadow/\" target=\"_blank\">Plot shadow</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-point","fullname":"plotOptions.flags.point","title":"point","parent":"plotOptions-flags","isParent":true,"description":"Properties for each single point"},{"name":"series<line>-point","fullname":"series<line>.point","title":"point","parent":"series<line>","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<spline>-point","fullname":"series<spline>.point","title":"point","parent":"series<spline>","isParent":true,"description":"Properties for each single point"},{"name":"series<flags>-point","fullname":"series<flags>.point","title":"point","parent":"series<flags>","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":"series<arearange>-point","fullname":"series<arearange>.point","title":"point","parent":"series<arearange>","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-candlestick-point","fullname":"plotOptions.candlestick.point","title":"point","parent":"plotOptions-candlestick","isParent":true,"description":"Properties for each single point"},{"name":"series<columnrange>-point","fullname":"series<columnrange>.point","title":"point","parent":"series<columnrange>","isParent":true,"description":"Properties for each single point"},{"name":"series<candlestick>-point","fullname":"series<candlestick>.point","title":"point","parent":"series<candlestick>","isParent":true,"description":"Properties for each single point"},{"name":"series<ohlc>-point","fullname":"series<ohlc>.point","title":"point","parent":"series<ohlc>","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-arearange-point","fullname":"plotOptions.arearange.point","title":"point","parent":"plotOptions-arearange","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":"series<area>-point","fullname":"series<area>.point","title":"point","parent":"series<area>","isParent":true,"description":"Properties for each single point"},{"name":"series<areaspline>-point","fullname":"series<areaspline>.point","title":"point","parent":"series<areaspline>","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<column>-point","fullname":"series<column>.point","title":"point","parent":"series<column>","isParent":true,"description":"Properties for each single point"},{"name":"series<areasplinerange>-point","fullname":"series<areasplinerange>.point","title":"point","parent":"series<areasplinerange>","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-series-point","fullname":"plotOptions.series.point","title":"point","parent":"plotOptions-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-ohlc-point","fullname":"plotOptions.ohlc.point","title":"point","parent":"plotOptions-ohlc","isParent":true,"description":"Properties for each single point"},{"name":"series<scatter>-point","fullname":"series<scatter>.point","title":"point","parent":"series<scatter>","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-areasplinerange-point","fullname":"plotOptions.areasplinerange.point","title":"point","parent":"plotOptions-areasplinerange","isParent":true,"description":"Properties for each single point"},{"name":"series<polygon>-point","fullname":"series<polygon>.point","title":"point","parent":"series<polygon>","isParent":true,"description":"Properties for each single point"},{"name":"plotOptions-spline-tooltip--pointFormat","fullname":"plotOptions.spline.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<flags>-tooltip--pointFormat","fullname":"series<flags>.tooltip.pointFormat","title":"pointFormat","parent":"series<flags>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<ohlc>-tooltip--pointFormat","fullname":"series<ohlc>.tooltip.pointFormat","title":"pointFormat","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<line>-tooltip--pointFormat","fullname":"series<line>.tooltip.pointFormat","title":"pointFormat","parent":"series<line>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--pointFormat","fullname":"plotOptions.areasplinerange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<areaspline>-tooltip--pointFormat","fullname":"series<areaspline>.tooltip.pointFormat","title":"pointFormat","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<columnrange>-tooltip--pointFormat","fullname":"series<columnrange>.tooltip.pointFormat","title":"pointFormat","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<spline>-tooltip--pointFormat","fullname":"series<spline>.tooltip.pointFormat","title":"pointFormat","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-series-tooltip--pointFormat","fullname":"plotOptions.series.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<candlestick>-tooltip--pointFormat","fullname":"series<candlestick>.tooltip.pointFormat","title":"pointFormat","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-areaspline-tooltip--pointFormat","fullname":"plotOptions.areaspline.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-arearange-tooltip--pointFormat","fullname":"plotOptions.arearange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-area-tooltip--pointFormat","fullname":"plotOptions.area.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-ohlc-tooltip--pointFormat","fullname":"plotOptions.ohlc.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<areasplinerange>-tooltip--pointFormat","fullname":"series<areasplinerange>.tooltip.pointFormat","title":"pointFormat","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-flags-tooltip--pointFormat","fullname":"plotOptions.flags.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--pointFormat","fullname":"plotOptions.columnrange.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<area>-tooltip--pointFormat","fullname":"series<area>.tooltip.pointFormat","title":"pointFormat","parent":"series<area>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-column-tooltip--pointFormat","fullname":"plotOptions.column.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<column>-tooltip--pointFormat","fullname":"series<column>.tooltip.pointFormat","title":"pointFormat","parent":"series<column>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--pointFormat","fullname":"plotOptions.candlestick.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"series<arearange>-tooltip--pointFormat","fullname":"series<arearange>.tooltip.pointFormat","title":"pointFormat","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"tooltip--pointFormat","fullname":"tooltip.pointFormat","title":"pointFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","deprecated":false},{"name":"plotOptions-line-tooltip--pointFormat","fullname":"plotOptions.line.tooltip.pointFormat","title":"pointFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"<span style=\"color:{point.color}\">\\u25CFÂ</span> {series.name}: <b>{point.y}</b><br/>","description":"<p>The HTML of the point's line in the tooltip. Variables are enclosed by curly brackets. Available variables are point.x, point.y, point.change, 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.</p>","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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-tooltip--pointFormatter","fullname":"series<ohlc>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-tooltip--pointFormatter","fullname":"series<areasplinerange>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-tooltip--pointFormatter","fullname":"plotOptions.ohlc.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>-tooltip--pointFormatter","fullname":"series<columnrange>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-tooltip--pointFormatter","fullname":"series<line>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<line>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-tooltip--pointFormatter","fullname":"series<flags>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<flags>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-tooltip--pointFormatter","fullname":"series<areaspline>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-tooltip--pointFormatter","fullname":"series<area>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<area>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-tooltip--pointFormatter","fullname":"plotOptions.candlestick.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-tooltip--pointFormatter","fullname":"series<column>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<column>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-tooltip--pointFormatter","fullname":"plotOptions.flags.tooltip.pointFormatter","title":"pointFormatter","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-tooltip--pointFormatter","fullname":"series<spline>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<spline>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-tooltip--pointFormatter","fullname":"series<arearange>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-tooltip--pointFormatter","fullname":"series<candlestick>.tooltip.pointFormatter","title":"pointFormatter","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Function","context":"Point","defaults":"","values":"","since":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> 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":"2.1.0","description":"A callback function for formatting the HTML output for a single point in the tooltip. Like the <code>pointFormat</code> string, but with more flexibility.","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":"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":"plotOptions-ohlc--pointInterval","fullname":"plotOptions.ohlc.pointInterval","title":"pointInterval","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<line>--pointInterval","fullname":"series<line>.pointInterval","title":"pointInterval","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-scatter--pointInterval","fullname":"plotOptions.scatter.pointInterval","title":"pointInterval","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-arearange--pointInterval","fullname":"plotOptions.arearange.pointInterval","title":"pointInterval","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<column>--pointInterval","fullname":"series<column>.pointInterval","title":"pointInterval","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-candlestick--pointInterval","fullname":"plotOptions.candlestick.pointInterval","title":"pointInterval","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<area>--pointInterval","fullname":"series<area>.pointInterval","title":"pointInterval","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-spline--pointInterval","fullname":"plotOptions.spline.pointInterval","title":"pointInterval","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<scatter>--pointInterval","fullname":"series<scatter>.pointInterval","title":"pointInterval","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<areasplinerange>--pointInterval","fullname":"series<areasplinerange>.pointInterval","title":"pointInterval","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-area--pointInterval","fullname":"plotOptions.area.pointInterval","title":"pointInterval","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<candlestick>--pointInterval","fullname":"series<candlestick>.pointInterval","title":"pointInterval","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-polygon--pointInterval","fullname":"plotOptions.polygon.pointInterval","title":"pointInterval","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<ohlc>--pointInterval","fullname":"series<ohlc>.pointInterval","title":"pointInterval","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-series--pointInterval","fullname":"plotOptions.series.pointInterval","title":"pointInterval","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-line--pointInterval","fullname":"plotOptions.line.pointInterval","title":"pointInterval","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<areaspline>--pointInterval","fullname":"series<areaspline>.pointInterval","title":"pointInterval","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-areasplinerange--pointInterval","fullname":"plotOptions.areasplinerange.pointInterval","title":"pointInterval","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-columnrange--pointInterval","fullname":"plotOptions.columnrange.pointInterval","title":"pointInterval","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<columnrange>--pointInterval","fullname":"series<columnrange>.pointInterval","title":"pointInterval","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-column--pointInterval","fullname":"plotOptions.column.pointInterval","title":"pointInterval","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-areaspline--pointInterval","fullname":"plotOptions.areaspline.pointInterval","title":"pointInterval","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<polygon>--pointInterval","fullname":"series<polygon>.pointInterval","title":"pointInterval","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<spline>--pointInterval","fullname":"series<spline>.pointInterval","title":"pointInterval","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"series<arearange>--pointInterval","fullname":"series<arearange>.pointInterval","title":"pointInterval","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"1","description":"<p>If no x values are given for the points in a series, pointInterval defines the interval of the x values in milliseconds. For example, if a series contains one value each day, set pointInterval to <code>24 * 3600 * 1000</code>.</p>\r\n<p>Since Highstock 2.1, it can be combined with <code>pointIntervalUnit</code> to draw irregular intervals.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\r\n\t\t\t\tUsing pointStart and pointInterval</a>","deprecated":false},{"name":"plotOptions-column--pointIntervalUnit","fullname":"plotOptions.column.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-column","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<columnrange>--pointIntervalUnit","fullname":"series<columnrange>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<columnrange>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<arearange>--pointIntervalUnit","fullname":"series<arearange>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<arearange>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<ohlc>--pointIntervalUnit","fullname":"series<ohlc>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<ohlc>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<areaspline>--pointIntervalUnit","fullname":"series<areaspline>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<areaspline>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-flags--pointIntervalUnit","fullname":"plotOptions.flags.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-flags","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<areasplinerange>--pointIntervalUnit","fullname":"series<areasplinerange>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<areasplinerange>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-ohlc--pointIntervalUnit","fullname":"plotOptions.ohlc.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-ohlc","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<polygon>--pointIntervalUnit","fullname":"series<polygon>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<polygon>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-series--pointIntervalUnit","fullname":"plotOptions.series.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-series","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-candlestick--pointIntervalUnit","fullname":"plotOptions.candlestick.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-candlestick","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<candlestick>--pointIntervalUnit","fullname":"series<candlestick>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<candlestick>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-area--pointIntervalUnit","fullname":"plotOptions.area.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-area","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<area>--pointIntervalUnit","fullname":"series<area>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<area>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<column>--pointIntervalUnit","fullname":"series<column>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<column>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<flags>--pointIntervalUnit","fullname":"series<flags>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<flags>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<scatter>--pointIntervalUnit","fullname":"series<scatter>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<scatter>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<spline>--pointIntervalUnit","fullname":"series<spline>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<spline>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<line>--pointIntervalUnit","fullname":"series<line>.pointIntervalUnit","title":"pointIntervalUnit","parent":"series<line>","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-scatter--pointIntervalUnit","fullname":"plotOptions.scatter.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-scatter","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-polygon--pointIntervalUnit","fullname":"plotOptions.polygon.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-polygon","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-line--pointIntervalUnit","fullname":"plotOptions.line.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-line","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-areaspline--pointIntervalUnit","fullname":"plotOptions.areaspline.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-columnrange--pointIntervalUnit","fullname":"plotOptions.columnrange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-arearange--pointIntervalUnit","fullname":"plotOptions.arearange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-arearange","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-spline--pointIntervalUnit","fullname":"plotOptions.spline.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-spline","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"plotOptions-areasplinerange--pointIntervalUnit","fullname":"plotOptions.areasplinerange.pointIntervalUnit","title":"pointIntervalUnit","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","values":"[null, \"month\", \"year\"]","since":"2.1.0","description":"On datetime series, this allows for setting the <a href=\"plotOptions.series.pointInterval\">pointInterval</a> to the two irregular time units, <code>month</code> and <code>year</code>. Combine it with <code>pointInterval</code> to draw quarters, 6 months, 10 years etc.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointintervalunit/\" target=\"_blank\">One point a month</a>","deprecated":false},{"name":"series<ohlc>--pointPadding","fullname":"series<ohlc>.pointPadding","title":"pointPadding","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"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."},{"name":"series<column>--pointPadding","fullname":"series<column>.pointPadding","title":"pointPadding","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"name":"series<columnrange>--pointPadding","fullname":"series<columnrange>.pointPadding","title":"pointPadding","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"name":"plotOptions-ohlc--pointPadding","fullname":"plotOptions.ohlc.pointPadding","title":"pointPadding","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"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."},{"name":"series<candlestick>--pointPadding","fullname":"series<candlestick>.pointPadding","title":"pointPadding","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"name":"plotOptions-candlestick--pointPadding","fullname":"plotOptions.candlestick.pointPadding","title":"pointPadding","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"0.1","description":"Padding between each column or bar, in x axis units."},{"name":"plotOptions-scatter--pointPlacement","fullname":"plotOptions.scatter.pointPlacement","title":"pointPlacement","parent":"plotOptions-scatter","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<column>--pointPlacement","fullname":"series<column>.pointPlacement","title":"pointPlacement","parent":"series<column>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-area--pointPlacement","fullname":"plotOptions.area.pointPlacement","title":"pointPlacement","parent":"plotOptions-area","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-line--pointPlacement","fullname":"plotOptions.line.pointPlacement","title":"pointPlacement","parent":"plotOptions-line","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-polygon--pointPlacement","fullname":"plotOptions.polygon.pointPlacement","title":"pointPlacement","parent":"plotOptions-polygon","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-series--pointPlacement","fullname":"plotOptions.series.pointPlacement","title":"pointPlacement","parent":"plotOptions-series","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-spline--pointPlacement","fullname":"plotOptions.spline.pointPlacement","title":"pointPlacement","parent":"plotOptions-spline","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<area>--pointPlacement","fullname":"series<area>.pointPlacement","title":"pointPlacement","parent":"series<area>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<line>--pointPlacement","fullname":"series<line>.pointPlacement","title":"pointPlacement","parent":"series<line>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-areasplinerange--pointPlacement","fullname":"plotOptions.areasplinerange.pointPlacement","title":"pointPlacement","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<arearange>--pointPlacement","fullname":"series<arearange>.pointPlacement","title":"pointPlacement","parent":"series<arearange>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-columnrange--pointPlacement","fullname":"plotOptions.columnrange.pointPlacement","title":"pointPlacement","parent":"plotOptions-columnrange","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<areaspline>--pointPlacement","fullname":"series<areaspline>.pointPlacement","title":"pointPlacement","parent":"series<areaspline>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<scatter>--pointPlacement","fullname":"series<scatter>.pointPlacement","title":"pointPlacement","parent":"series<scatter>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<ohlc>--pointPlacement","fullname":"series<ohlc>.pointPlacement","title":"pointPlacement","parent":"series<ohlc>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-candlestick--pointPlacement","fullname":"plotOptions.candlestick.pointPlacement","title":"pointPlacement","parent":"plotOptions-candlestick","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-arearange--pointPlacement","fullname":"plotOptions.arearange.pointPlacement","title":"pointPlacement","parent":"plotOptions-arearange","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<columnrange>--pointPlacement","fullname":"series<columnrange>.pointPlacement","title":"pointPlacement","parent":"series<columnrange>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<candlestick>--pointPlacement","fullname":"series<candlestick>.pointPlacement","title":"pointPlacement","parent":"series<candlestick>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<areasplinerange>--pointPlacement","fullname":"series<areasplinerange>.pointPlacement","title":"pointPlacement","parent":"series<areasplinerange>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<polygon>--pointPlacement","fullname":"series<polygon>.pointPlacement","title":"pointPlacement","parent":"series<polygon>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"series<spline>--pointPlacement","fullname":"series<spline>.pointPlacement","title":"pointPlacement","parent":"series<spline>","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-ohlc--pointPlacement","fullname":"plotOptions.ohlc.pointPlacement","title":"pointPlacement","parent":"plotOptions-ohlc","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-column--pointPlacement","fullname":"plotOptions.column.pointPlacement","title":"pointPlacement","parent":"plotOptions-column","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-areaspline--pointPlacement","fullname":"plotOptions.areaspline.pointPlacement","title":"pointPlacement","parent":"plotOptions-areaspline","isParent":false,"returnType":"String|Number","defaults":"null","values":"[null, \"on\", \"between\"]","since":"1.2.0","description":"<p>Possible values: <code>null</code>, <code>\"on\"</code>, <code>\"between\"</code>.</p>\r\n<p>In a column chart, when pointPlacement is <code>\"on\"</code>, 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 <code>\"between\"</code>, 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.</p>\r\n<p>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.</p>\r\n<p>Note that pointPlacement needs a <a href=\"#plotOptions.series.pointRange\">pointRange</a> to work. For column series this is computed, but for line-type series it needs to be set.</p>\r\n<p>Defaults to <code>null</code> in cartesian charts, <code>\"between\"</code> in polar charts.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-between/\" target=\"_blank\">Between in a column chart</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-pointplacement-numeric/\" target=\"_blank\">numeric placement for custom layout</a>.","deprecated":false},{"name":"plotOptions-areaspline--pointRange","fullname":"plotOptions.areaspline.pointRange","title":"pointRange","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-column--pointRange","fullname":"plotOptions.column.pointRange","title":"pointRange","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc--pointRange","fullname":"plotOptions.ohlc.pointRange","title":"pointRange","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>--pointRange","fullname":"series<arearange>.pointRange","title":"pointRange","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<line>--pointRange","fullname":"series<line>.pointRange","title":"pointRange","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-areasplinerange--pointRange","fullname":"plotOptions.areasplinerange.pointRange","title":"pointRange","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<area>--pointRange","fullname":"series<area>.pointRange","title":"pointRange","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-area--pointRange","fullname":"plotOptions.area.pointRange","title":"pointRange","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-scatter--pointRange","fullname":"plotOptions.scatter.pointRange","title":"pointRange","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-candlestick--pointRange","fullname":"plotOptions.candlestick.pointRange","title":"pointRange","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>--pointRange","fullname":"series<areasplinerange>.pointRange","title":"pointRange","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<polygon>--pointRange","fullname":"series<polygon>.pointRange","title":"pointRange","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<areaspline>--pointRange","fullname":"series<areaspline>.pointRange","title":"pointRange","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<candlestick>--pointRange","fullname":"series<candlestick>.pointRange","title":"pointRange","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-columnrange--pointRange","fullname":"plotOptions.columnrange.pointRange","title":"pointRange","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>--pointRange","fullname":"series<ohlc>.pointRange","title":"pointRange","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>--pointRange","fullname":"series<column>.pointRange","title":"pointRange","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>--pointRange","fullname":"series<columnrange>.pointRange","title":"pointRange","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"null","since":"1.2","description":"The width of each point on the x axis. For example in a column chart with one value each day,\r the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed\r automatically, but this option can be used to override the automatic value. In a series on\r a categorized axis the pointRange is 1 by default.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-polygon--pointRange","fullname":"plotOptions.polygon.pointRange","title":"pointRange","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-line--pointRange","fullname":"plotOptions.line.pointRange","title":"pointRange","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<spline>--pointRange","fullname":"series<spline>.pointRange","title":"pointRange","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-series--pointRange","fullname":"plotOptions.series.pointRange","title":"pointRange","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-arearange--pointRange","fullname":"plotOptions.arearange.pointRange","title":"pointRange","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"plotOptions-spline--pointRange","fullname":"plotOptions.spline.pointRange","title":"pointRange","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"name":"series<scatter>--pointRange","fullname":"series<scatter>.pointRange","title":"pointRange","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"0","description":"The width of each point on the x axis. For example in a column chart with one value each day, the pointRange would be 1 day (= 24 * 3600 * 1000 milliseconds). This is normally computed automatically, but this option can be used to override the automatic value."},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<areaspline>--pointStart","fullname":"series<areaspline>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<spline>--pointStart","fullname":"series<spline>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"plotOptions-candlestick--pointStart","fullname":"plotOptions.candlestick.pointStart","title":"pointStart","parent":"plotOptions-candlestick","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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<scatter>--pointStart","fullname":"series<scatter>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<arearange>--pointStart","fullname":"series<arearange>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<line>--pointStart","fullname":"series<line>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<candlestick>--pointStart","fullname":"series<candlestick>.pointStart","title":"pointStart","parent":"series<candlestick>","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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<polygon>--pointStart","fullname":"series<polygon>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<ohlc>--pointStart","fullname":"series<ohlc>.pointStart","title":"pointStart","parent":"series<ohlc>","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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"plotOptions-ohlc--pointStart","fullname":"plotOptions.ohlc.pointStart","title":"pointStart","parent":"plotOptions-ohlc","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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<areasplinerange>--pointStart","fullname":"series<areasplinerange>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<column>--pointStart","fullname":"series<column>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<area>--pointStart","fullname":"series<area>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"series<columnrange>--pointStart","fullname":"series<columnrange>.pointStart","title":"pointStart","parent":"series<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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"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. On a datetime X axis, the number will be given as milliseconds since 1970-01-01, for example <code>Date.UTC(2011, 0, 1)</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/pointinterval-pointstart/\" target=\"_blank\">\n\t\t\t\tUsing pointStart and pointInterval</a>"},{"name":"plotOptions-column--pointWidth","fullname":"plotOptions.column.pointWidth","title":"pointWidth","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"series<candlestick>--pointWidth","fullname":"series<candlestick>.pointWidth","title":"pointWidth","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"plotOptions-ohlc--pointWidth","fullname":"plotOptions.ohlc.pointWidth","title":"pointWidth","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"series<columnrange>--pointWidth","fullname":"series<columnrange>.pointWidth","title":"pointWidth","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"series<column>--pointWidth","fullname":"series<column>.pointWidth","title":"pointWidth","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"series<ohlc>--pointWidth","fullname":"series<ohlc>.pointWidth","title":"pointWidth","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"plotOptions-columnrange--pointWidth","fullname":"plotOptions.columnrange.pointWidth","title":"pointWidth","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"plotOptions-candlestick--pointWidth","fullname":"plotOptions.candlestick.pointWidth","title":"pointWidth","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"null","description":"A pixel value specifying a fixed width for each column or bar. When <code>null</code>, the width is calculated from the <code>pointPadding</code> and <code>groupPadding</code>.","seeAlso":"<a href=\"#plotOptions.column.maxPointWidth\">maxPointWidth</a>","deprecated":false},{"name":"plotOptions-polygon","fullname":"plotOptions.polygon","title":"polygon","parent":"plotOptions","isParent":true,"returnType":"Object","since":"2.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 <code>color</code> option, and stroke is applied through <code>lineWidth</code> and <code>lineColor</code> options. Requires the <code>highcharts-more.js</code> file.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/polygon/\" target=\"_blank\">Polygon</a>","deprecated":false},{"name":"credits--position","fullname":"credits.position","title":"position","parent":"credits","isParent":false,"returnType":"Object","description":"Position configuration for the credits label. Supported properties are  <code>align</code>, <code>verticalAlign</code>, <code>x</code> and <code>y</code>. Defaults to \r\n<pre>position: {\r\n\talign: 'right',\r\n\tx: -10,\r\n\tverticalAlign: 'bottom',\r\n\ty: -5\r\n}</pre>","deprecated":false},{"name":"tooltip--positioner","fullname":"tooltip.positioner","title":"positioner","parent":"tooltip","isParent":false,"returnType":"Function","defaults":"","since":"1.1.5","description":"<p>A callback function to place the tooltip in a default position. The callback receives three parameters: <code>labelWidth</code>, <code>labelHeight</code> and <code>point</code>, where point contains values for <code>plotX</code> and <code>plotY</code> telling where the reference point is in the plot area. Add <code>chart.plotLeft</code> and <code>chart.plotTop</code> to get the full coordinates.</p>\r\n\r\n<p>The return should be an object containing x and y values, for example <code>{ x: 100, y: 100 }</code>.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/tooltip/positioner/\" target=\"_blank\">\r\n\t\t\t\tA fixed tooltip position on top of the chart</a>","deprecated":false},{"name":"lang--printChart","fullname":"lang.printChart","title":"printChart","parent":"lang","isParent":false,"returnType":"String","defaults":"Print chart","values":"","since":"1.3.1","description":"Exporting module only. The text for the menu item to print the chart.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-states-hover-marker--radius","fullname":"plotOptions.candlestick.states.hover.marker.radius","title":"radius","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<polygon>-data-marker--radius","fullname":"series<polygon>.data.marker.radius","title":"radius","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<scatter>-marker-states-hover--radius","fullname":"series<scatter>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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.","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.","deprecated":false},{"name":"series<spline>-data-marker-states-hover--radius","fullname":"series<spline>.data.marker.states.hover.radius","title":"radius","parent":"series<spline>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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.","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.","deprecated":false},{"name":"series<columnrange>-states-hover-marker--radius","fullname":"series<columnrange>.states.hover.marker.radius","title":"radius","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<scatter>-data-marker-states-select--radius","fullname":"series<scatter>.data.marker.states.select.radius","title":"radius","parent":"series<scatter>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<polygon>-data-marker-states-hover--radius","fullname":"series<polygon>.data.marker.states.hover.radius","title":"radius","parent":"series<polygon>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<scatter>-data-marker-states-hover--radius","fullname":"series<scatter>.data.marker.states.hover.radius","title":"radius","parent":"series<scatter>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<spline>-states-hover-marker--radius","fullname":"series<spline>.states.hover.marker.radius","title":"radius","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<area>-data-marker-states-select--radius","fullname":"series<area>.data.marker.states.select.radius","title":"radius","parent":"series<area>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<line>-states-hover-marker--radius","fullname":"series<line>.states.hover.marker.radius","title":"radius","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-states-hover-marker--radius","fullname":"series<areaspline>.states.hover.marker.radius","title":"radius","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<scatter>-marker--radius","fullname":"series<scatter>.marker.radius","title":"radius","parent":"series<scatter>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<arearange>-states-hover-marker--radius","fullname":"series<arearange>.states.hover.marker.radius","title":"radius","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<polygon>-data-marker-states-select--radius","fullname":"series<polygon>.data.marker.states.select.radius","title":"radius","parent":"series<polygon>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"name":"series<line>-data-marker-states-select--radius","fullname":"series<line>.data.marker.states.select.radius","title":"radius","parent":"series<line>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"name":"series<line>-data-marker-states-hover--radius","fullname":"series<line>.data.marker.states.hover.radius","title":"radius","parent":"series<line>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<polygon>-marker-states-hover--radius","fullname":"series<polygon>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"name":"series<line>-marker--radius","fullname":"series<line>.marker.radius","title":"radius","parent":"series<line>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-marker-states-hover--radius","fullname":"series<areaspline>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<line>-marker-states-select--radius","fullname":"series<line>.marker.states.select.radius","title":"radius","parent":"series<line>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<ohlc>-states-hover-marker--radius","fullname":"series<ohlc>.states.hover.marker.radius","title":"radius","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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.","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.","deprecated":false},{"name":"plotOptions-ohlc-states-hover-marker--radius","fullname":"plotOptions.ohlc.states.hover.marker.radius","title":"radius","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areasplinerange>-states-hover-marker--radius","fullname":"series<areasplinerange>.states.hover.marker.radius","title":"radius","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<spline>-marker-states-select--radius","fullname":"series<spline>.marker.states.select.radius","title":"radius","parent":"series<spline>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<area>-marker--radius","fullname":"series<area>.marker.radius","title":"radius","parent":"series<area>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<polygon>-marker--radius","fullname":"series<polygon>.marker.radius","title":"radius","parent":"series<polygon>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<spline>-marker-states-hover--radius","fullname":"series<spline>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"plotOptions-flags-states-hover-marker--radius","fullname":"plotOptions.flags.states.hover.marker.radius","title":"radius","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-data-marker-states-select--radius","fullname":"series<areaspline>.data.marker.states.select.radius","title":"radius","parent":"series<areaspline>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<scatter>-marker-states-select--radius","fullname":"series<scatter>.marker.states.select.radius","title":"radius","parent":"series<scatter>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<candlestick>-states-hover-marker--radius","fullname":"series<candlestick>.states.hover.marker.radius","title":"radius","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<area>-states-hover-marker--radius","fullname":"series<area>.states.hover.marker.radius","title":"radius","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<area>-marker-states-select--radius","fullname":"series<area>.marker.states.select.radius","title":"radius","parent":"series<area>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"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.","deprecated":false},{"name":"series<scatter>-states-hover-marker--radius","fullname":"series<scatter>.states.hover.marker.radius","title":"radius","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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.","deprecated":false},{"name":"series<spline>-data-marker-states-select--radius","fullname":"series<spline>.data.marker.states.select.radius","title":"radius","parent":"series<spline>-data-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<line>-marker-states-hover--radius","fullname":"series<line>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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.","deprecated":false},{"name":"series<areaspline>-marker-states-select--radius","fullname":"series<areaspline>.marker.states.select.radius","title":"radius","parent":"series<areaspline>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<area>-data-marker-states-hover--radius","fullname":"series<area>.data.marker.states.hover.radius","title":"radius","parent":"series<area>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<spline>-data-marker--radius","fullname":"series<spline>.data.marker.radius","title":"radius","parent":"series<spline>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-data-marker-states-hover--radius","fullname":"series<areaspline>.data.marker.states.hover.radius","title":"radius","parent":"series<areaspline>-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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","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.","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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<line>-data-marker--radius","fullname":"series<line>.data.marker.radius","title":"radius","parent":"series<line>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<area>-marker-states-hover--radius","fullname":"series<area>.marker.states.hover.radius","title":"radius","parent":"series<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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<area>-data-marker--radius","fullname":"series<area>.data.marker.radius","title":"radius","parent":"series<area>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"name":"series<flags>-states-hover-marker--radius","fullname":"series<flags>.states.hover.marker.radius","title":"radius","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<spline>-marker--radius","fullname":"series<spline>.marker.radius","title":"radius","parent":"series<spline>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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 <a href=\"#plotOptions.series.marker.states.hover.radiusPlus\">radiusPlus</a> option.","deprecated":false},{"name":"series<scatter>-data-marker--radius","fullname":"series<scatter>.data.marker.radius","title":"radius","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"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.","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.","deprecated":false},{"name":"series<areaspline>-data-marker--radius","fullname":"series<areaspline>.data.marker.radius","title":"radius","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<polygon>-marker-states-select--radius","fullname":"series<polygon>.marker.states.select.radius","title":"radius","parent":"series<polygon>-marker-states-select","isParent":false,"returnType":"Number","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"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.","deprecated":false},{"name":"series<polygon>-states-hover-marker--radius","fullname":"series<polygon>.states.hover.marker.radius","title":"radius","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-marker--radius","fullname":"series<areaspline>.marker.radius","title":"radius","parent":"series<areaspline>-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","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","defaults":"","description":"The radius of the point marker. In hover state, it defaults\n\t\tto the normal state's radius + 2."},{"name":"series<column>-states-hover-marker--radius","fullname":"series<column>.states.hover.marker.radius","title":"radius","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"4","description":"The radius of the point marker.","deprecated":false},{"name":"series<areaspline>-data-marker-states-hover--radiusPlus","fullname":"series<areaspline>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<areaspline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<line>-marker-states-hover--radiusPlus","fullname":"series<line>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<line>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<polygon>-data-marker-states-hover--radiusPlus","fullname":"series<polygon>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<polygon>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<areaspline>-marker-states-hover--radiusPlus","fullname":"series<areaspline>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<areaspline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<scatter>-data-marker-states-hover--radiusPlus","fullname":"series<scatter>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<scatter>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<area>-marker-states-hover--radiusPlus","fullname":"series<area>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<area>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<scatter>-marker-states-hover--radiusPlus","fullname":"series<scatter>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<scatter>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<spline>-data-marker-states-hover--radiusPlus","fullname":"series<spline>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<spline>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<polygon>-marker-states-hover--radiusPlus","fullname":"series<polygon>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<polygon>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<area>-data-marker-states-hover--radiusPlus","fullname":"series<area>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<area>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<spline>-marker-states-hover--radiusPlus","fullname":"series<spline>.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<spline>-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","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","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"series<line>-data-marker-states-hover--radiusPlus","fullname":"series<line>.data.marker.states.hover.radiusPlus","title":"radiusPlus","parent":"series<line>-data-marker-states-hover","isParent":false,"returnType":"Number","defaults":"2","since":"2.0.3","description":"The number of pixels to increase the radius of the hovered point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-states-hover-linewidthplus/\" target=\"_blank\">5 pixels greater radius on hover</a>","deprecated":false},{"name":"yAxis--range","fullname":"yAxis.range","title":"range","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"undefined","description":"The zoomed range to display when only defining one or none of <code>min</code> or <code>max</code>.  For example, to show the latest month, a range of one month can be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/range/\" target=\"_blank\">Setting a zoomed range when the rangeSelector \n\t\t\t\tis disabled</a>"},{"name":"xAxis--range","fullname":"xAxis.range","title":"range","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"undefined","description":"The zoomed range to display when only defining one or none of <code>min</code> or <code>max</code>.  For example, to show the latest month, a range of one month can be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/range/\" target=\"_blank\">Setting a zoomed range when the rangeSelector \n\t\t\t\tis disabled</a>"},{"name":"rangeSelector","fullname":"rangeSelector","title":"rangeSelector","isParent":true,"description":"The range selector is a tool for selecting ranges to display within the chart. It provides\n\t\tbuttons to select preconfigured ranges in the chart, like 1 day, 1 week, 1 month etc. It\n\t\talso provides input boxes where min and max dates can be manually input."},{"name":"lang--rangeSelectorFrom","fullname":"lang.rangeSelectorFrom","title":"rangeSelectorFrom","parent":"lang","isParent":false,"returnType":"String","defaults":"From","description":"The text for the label for the \"from\" input box in the range selector."},{"name":"lang--rangeSelectorTo","fullname":"lang.rangeSelectorTo","title":"rangeSelectorTo","parent":"lang","isParent":false,"returnType":"String","defaults":"To","description":"The text for the label for the \"to\" input box in the range selector."},{"name":"lang--rangeSelectorZoom","fullname":"lang.rangeSelectorZoom","title":"rangeSelectorZoom","parent":"lang","isParent":false,"returnType":"String","defaults":"Zoom","description":"The text for the label for the range selector buttons."},{"name":"chart-events--redraw","fullname":"chart.events.redraw","title":"redraw","parent":"chart-events","isParent":false,"returnType":"Function","context":"Chart","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 <code>redraw</code> option set to true. One parameter, <code>event</code>, is passed 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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/events-redraw/\" target=\"_blank\">Alert on chart redraw, \r\n\t\t\twhen adding a series or moving the zoomed range</a>","deprecated":false},{"name":"chart--reflow","fullname":"chart.reflow","title":"reflow","parent":"chart","isParent":false,"returnType":"Boolean","defaults":"true","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\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/reflow-true/\" target=\"_blank\">True by default</a>, \n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/reflow-false/\" target=\"_blank\">false</a>."},{"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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-point-events--remove","fullname":"series<areaspline>.point.events.remove","title":"remove","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-point-events--remove","fullname":"series<areasplinerange>.point.events.remove","title":"remove","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-point-events--remove","fullname":"series<arearange>.point.events.remove","title":"remove","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-data-events--remove","fullname":"series<areaspline>.data.events.remove","title":"remove","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-data-events--remove","fullname":"series<flags>.data.events.remove","title":"remove","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-ohlc-point-events--remove","fullname":"plotOptions.ohlc.point.events.remove","title":"remove","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-point-events--remove","fullname":"series<columnrange>.point.events.remove","title":"remove","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-point-events--remove","fullname":"series<candlestick>.point.events.remove","title":"remove","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-data-events--remove","fullname":"series<arearange>.data.events.remove","title":"remove","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-point-events--remove","fullname":"series<flags>.point.events.remove","title":"remove","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-data-events--remove","fullname":"series<area>.data.events.remove","title":"remove","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-data-events--remove","fullname":"series<scatter>.data.events.remove","title":"remove","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-candlestick-point-events--remove","fullname":"plotOptions.candlestick.point.events.remove","title":"remove","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-data-events--remove","fullname":"series<columnrange>.data.events.remove","title":"remove","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-point-events--remove","fullname":"series<ohlc>.point.events.remove","title":"remove","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-data-events--remove","fullname":"series<spline>.data.events.remove","title":"remove","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-data-events--remove","fullname":"series<column>.data.events.remove","title":"remove","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-point-events--remove","fullname":"series<column>.point.events.remove","title":"remove","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-flags-point-events--remove","fullname":"plotOptions.flags.point.events.remove","title":"remove","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-point-events--remove","fullname":"series<area>.point.events.remove","title":"remove","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-data-events--remove","fullname":"series<candlestick>.data.events.remove","title":"remove","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-data-events--remove","fullname":"series<ohlc>.data.events.remove","title":"remove","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-point-events--remove","fullname":"series<line>.point.events.remove","title":"remove","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-data-events--remove","fullname":"series<areasplinerange>.data.events.remove","title":"remove","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-data-events--remove","fullname":"series<polygon>.data.events.remove","title":"remove","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-data-events--remove","fullname":"series<line>.data.events.remove","title":"remove","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-point-events--remove","fullname":"series<spline>.point.events.remove","title":"remove","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-point-events--remove","fullname":"series<polygon>.point.events.remove","title":"remove","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-point-events--remove","fullname":"series<scatter>.point.events.remove","title":"remove","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is removed using the <code>.remove()</code> method. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"chart--renderTo","fullname":"chart.renderTo","title":"renderTo","parent":"chart","isParent":false,"returnType":"String|Object","defaults":"null","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/renderto-string/\" target=\"_blank\">String</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/renderto-object/\" target=\"_blank\">object reference</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/renderto-jquery/\" target=\"_blank\">object reference through jQuery</a>,"},{"name":"yAxis-breaks--repeat","fullname":"yAxis.breaks.repeat","title":"repeat","parent":"yAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"2.1.0","description":"Defines an interval after which the break appears again. By default the breaks do not repeat.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/axisbreak/break-repeated/\">Repeated Break</a>","deprecated":false},{"name":"xAxis-breaks--repeat","fullname":"xAxis.breaks.repeat","title":"repeat","parent":"xAxis-breaks","isParent":false,"returnType":"Number","defaults":"0","since":"2.1.0","description":"Defines an interval after which the break appears again. By default the breaks do not repeat.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/axisbreak/break-repeated/\">Repeated Break</a>","deprecated":false},{"name":"lang--resetZoom","fullname":"lang.resetZoom","title":"resetZoom","parent":"lang","isParent":false,"returnType":"String","defaults":"Reset zoom","description":"The text for the label appearing when a chart is zoomed."},{"name":"lang--resetZoomTitle","fullname":"lang.resetZoomTitle","title":"resetZoomTitle","parent":"lang","isParent":false,"returnType":"String","defaults":"Reset zoom level 1:1","description":"The tooltip title for the label appearing when a chart is zoomed."},{"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.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/reversed/\" target=\"_blank\">Reversed Y axis</a>","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.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/reversed/\" target=\"_blank\">Reversed Y axis</a>","deprecated":false},{"name":"legend--reversed","fullname":"legend.reversed","title":"reversed","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","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.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>, <a href=\"#series.legendIndex\">series.legendIndex</a>","deprecated":false},{"name":"yAxis--reversedStacks","fullname":"yAxis.reversedStacks","title":"reversedStacks","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.3.10","description":"If <code>true</code>, the first series in a stack will be drawn on top in a positive, non-reversed Y axis. If <code>false</code>, the first series is in the base of the stack.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/reversedstacks-false/\" target=\"_blank\">Non-reversed stacks</a>.","deprecated":false},{"name":"scrollbar--rifleColor","fullname":"scrollbar.rifleColor","title":"rifleColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#666","description":"The color of the small rifles in the middle of the scrollbar."},{"name":"series<columnrange>-dataLabels--rotation","fullname":"series<columnrange>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"series<areasplinerange>-dataLabels--rotation","fullname":"series<areasplinerange>.dataLabels.rotation","title":"rotation","parent":"series<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.","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.","deprecated":false},{"name":"plotOptions-flags-dataLabels--rotation","fullname":"plotOptions.flags.dataLabels.rotation","title":"rotation","parent":"plotOptions-flags-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.","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."},{"name":"plotOptions-ohlc-dataLabels--rotation","fullname":"plotOptions.ohlc.dataLabels.rotation","title":"rotation","parent":"plotOptions-ohlc-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.","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.","deprecated":false},{"name":"yAxis-plotBands-label--rotation","fullname":"yAxis.plotBands.label.rotation","title":"rotation","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"0","description":"Rotation of the text label in degrees ."},{"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."},{"name":"series<ohlc>-dataLabels--rotation","fullname":"series<ohlc>.dataLabels.rotation","title":"rotation","parent":"series<ohlc>-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.","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.","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--rotation","fullname":"plotOptions.candlestick.dataLabels.rotation","title":"rotation","parent":"plotOptions-candlestick-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.","deprecated":false},{"name":"series<polygon>-dataLabels--rotation","fullname":"series<polygon>.dataLabels.rotation","title":"rotation","parent":"series<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.","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.","deprecated":false},{"name":"xAxis-plotBands-label--rotation","fullname":"xAxis.plotBands.label.rotation","title":"rotation","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"0","description":"Rotation of the text label in degrees ."},{"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.","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.","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.","deprecated":false},{"name":"series<column>-dataLabels--rotation","fullname":"series<column>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"xAxis-plotLines-label--rotation","fullname":"xAxis.plotLines.label.rotation","title":"rotation","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Rotation of the text label in degrees. Defaults to 0 for horizontal plot lines and 90 for vertical lines."},{"name":"series<area>-dataLabels--rotation","fullname":"series<area>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"series<arearange>-dataLabels--rotation","fullname":"series<arearange>.dataLabels.rotation","title":"rotation","parent":"series<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.","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."},{"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."},{"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.","deprecated":false},{"name":"series<line>-dataLabels--rotation","fullname":"series<line>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"series<candlestick>-dataLabels--rotation","fullname":"series<candlestick>.dataLabels.rotation","title":"rotation","parent":"series<candlestick>-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.","deprecated":false},{"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.","deprecated":false},{"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.","deprecated":false},{"name":"series<spline>-dataLabels--rotation","fullname":"series<spline>.dataLabels.rotation","title":"rotation","parent":"series<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.","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.","deprecated":false},{"name":"series<flags>-dataLabels--rotation","fullname":"series<flags>.dataLabels.rotation","title":"rotation","parent":"series<flags>-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.","deprecated":false},{"name":"series<scatter>-dataLabels--rotation","fullname":"series<scatter>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"yAxis-plotLines-label--rotation","fullname":"yAxis.plotLines.label.rotation","title":"rotation","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Rotation of the text label in degrees. Defaults to 0 for horizontal plot lines and 90 for vertical lines."},{"name":"series<areaspline>-dataLabels--rotation","fullname":"series<areaspline>.dataLabels.rotation","title":"rotation","parent":"series<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.","deprecated":false},{"name":"exporting--scale","fullname":"exporting.scale","title":"scale","parent":"exporting","isParent":false,"returnType":"Number","defaults":"2","values":"","since":"1.3","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/scale/\" target=\"_blank\">Scale demonstrated</a>","seeAlso":"<a href=\"#chart.width\">chart.width</a>, <a href=\"#exporting.sourceWidth\">exporting.sourceWidth</a>","deprecated":false},{"name":"plotOptions-scatter","fullname":"plotOptions.scatter","title":"scatter","parent":"plotOptions","isParent":true,"deprecated":false},{"name":"scrollbar","fullname":"scrollbar","title":"scrollbar","isParent":true,"description":"The scrollbar is a means of panning over the X axis of a chart."},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-point-events--select","fullname":"series<spline>.point.events.select","title":"select","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-data-events--select","fullname":"series<area>.data.events.select","title":"select","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"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 <code>series.allowPointSelect</code> option to true."},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-data-events--select","fullname":"series<scatter>.data.events.select","title":"select","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-data-marker-states-select","fullname":"series<line>.data.marker.states.select","title":"select","parent":"series<line>-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 <code>series.allowPointSelect</code> option to true."},{"name":"series<arearange>-data-events--select","fullname":"series<arearange>.data.events.select","title":"select","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-data-events--select","fullname":"series<flags>.data.events.select","title":"select","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-data-marker-states-select","fullname":"series<polygon>.data.marker.states.select","title":"select","parent":"series<polygon>-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 <code>series.allowPointSelect</code> option to true."},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-data-events--select","fullname":"series<candlestick>.data.events.select","title":"select","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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 <code>series.allowPointSelect</code> option to true."},{"name":"series<scatter>-data-marker-states-select","fullname":"series<scatter>.data.marker.states.select","title":"select","parent":"series<scatter>-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 <code>series.allowPointSelect</code> option to true."},{"name":"series<column>-data-events--select","fullname":"series<column>.data.events.select","title":"select","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-point-events--select","fullname":"series<areasplinerange>.point.events.select","title":"select","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-ohlc-point-events--select","fullname":"plotOptions.ohlc.point.events.select","title":"select","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-marker-states-select","fullname":"series<areaspline>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> option to true."},{"name":"series<areaspline>-data-marker-states-select","fullname":"series<areaspline>.data.marker.states.select","title":"select","parent":"series<areaspline>-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 <code>series.allowPointSelect</code> option to true."},{"name":"series<spline>-data-events--select","fullname":"series<spline>.data.events.select","title":"select","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-marker-states-select","fullname":"series<line>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> 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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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 <code>series.allowPointSelect</code> option to true."},{"name":"series<columnrange>-point-events--select","fullname":"series<columnrange>.point.events.select","title":"select","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-point-events--select","fullname":"series<ohlc>.point.events.select","title":"select","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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 <code>series.allowPointSelect</code> option to true."},{"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 <code>series.allowPointSelect</code> option to true."},{"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 <code>series.allowPointSelect</code> option to true."},{"name":"plotOptions-flags-point-events--select","fullname":"plotOptions.flags.point.events.select","title":"select","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-point-events--select","fullname":"series<areaspline>.point.events.select","title":"select","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-data-events--select","fullname":"series<polygon>.data.events.select","title":"select","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-data-marker-states-select","fullname":"series<spline>.data.marker.states.select","title":"select","parent":"series<spline>-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 <code>series.allowPointSelect</code> option to true."},{"name":"series<line>-data-events--select","fullname":"series<line>.data.events.select","title":"select","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-point-events--select","fullname":"series<area>.point.events.select","title":"select","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-marker-states-select","fullname":"series<scatter>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> option to true."},{"name":"series<polygon>-marker-states-select","fullname":"series<polygon>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> option to true."},{"name":"series<area>-marker-states-select","fullname":"series<area>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> option to true."},{"name":"series<spline>-marker-states-select","fullname":"series<spline>.marker.states.select","title":"select","parent":"series<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 <code>series.allowPointSelect</code> option to true."},{"name":"series<flags>-point-events--select","fullname":"series<flags>.point.events.select","title":"select","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-point-events--select","fullname":"series<candlestick>.point.events.select","title":"select","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-point-events--select","fullname":"series<arearange>.point.events.select","title":"select","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-data-marker-states-select","fullname":"series<area>.data.marker.states.select","title":"select","parent":"series<area>-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 <code>series.allowPointSelect</code> option to true."},{"name":"plotOptions-candlestick-point-events--select","fullname":"plotOptions.candlestick.point.events.select","title":"select","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-data-events--select","fullname":"series<columnrange>.data.events.select","title":"select","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-point-events--select","fullname":"series<line>.point.events.select","title":"select","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-point-events--select","fullname":"series<scatter>.point.events.select","title":"select","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-point-events--select","fullname":"series<column>.point.events.select","title":"select","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-data-events--select","fullname":"series<areasplinerange>.data.events.select","title":"select","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-data-events--select","fullname":"series<ohlc>.data.events.select","title":"select","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-point-events--select","fullname":"series<polygon>.point.events.select","title":"select","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-data-events--select","fullname":"series<areaspline>.data.events.select","title":"select","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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 <code>series.allowPointSelect</code> option to true."},{"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","description":"Fires when the point is selected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-data--selected","fullname":"series<area>.data.selected","title":"selected","parent":"series<area>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<scatter>--selected","fullname":"series<scatter>.selected","title":"selected","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<column>--selected","fullname":"series<column>.selected","title":"selected","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<areaspline>--selected","fullname":"series<areaspline>.selected","title":"selected","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-areasplinerange--selected","fullname":"plotOptions.areasplinerange.selected","title":"selected","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<line>-data--selected","fullname":"series<line>.data.selected","title":"selected","parent":"series<line>-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","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<arearange>--selected","fullname":"series<arearange>.selected","title":"selected","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<spline>--selected","fullname":"series<spline>.selected","title":"selected","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<polygon>--selected","fullname":"series<polygon>.selected","title":"selected","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<arearange>-data--selected","fullname":"series<arearange>.data.selected","title":"selected","parent":"series<arearange>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<ohlc>-data--selected","fullname":"series<ohlc>.data.selected","title":"selected","parent":"series<ohlc>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-spline--selected","fullname":"plotOptions.spline.selected","title":"selected","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<flags>-data--selected","fullname":"series<flags>.data.selected","title":"selected","parent":"series<flags>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-candlestick--selected","fullname":"plotOptions.candlestick.selected","title":"selected","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<areasplinerange>--selected","fullname":"series<areasplinerange>.selected","title":"selected","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-columnrange--selected","fullname":"plotOptions.columnrange.selected","title":"selected","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-scatter--selected","fullname":"plotOptions.scatter.selected","title":"selected","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<columnrange>-data--selected","fullname":"series<columnrange>.data.selected","title":"selected","parent":"series<columnrange>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<polygon>-data--selected","fullname":"series<polygon>.data.selected","title":"selected","parent":"series<polygon>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<candlestick>--selected","fullname":"series<candlestick>.selected","title":"selected","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<line>--selected","fullname":"series<line>.selected","title":"selected","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"rangeSelector--selected","fullname":"rangeSelector.selected","title":"selected","parent":"rangeSelector","isParent":false,"returnType":"Number","defaults":"undefined","description":"The index of the button to appear pre-selected."},{"name":"plotOptions-polygon--selected","fullname":"plotOptions.polygon.selected","title":"selected","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<scatter>-data--selected","fullname":"series<scatter>.data.selected","title":"selected","parent":"series<scatter>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-line--selected","fullname":"plotOptions.line.selected","title":"selected","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-column--selected","fullname":"plotOptions.column.selected","title":"selected","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<flags>--selected","fullname":"series<flags>.selected","title":"selected","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-areaspline--selected","fullname":"plotOptions.areaspline.selected","title":"selected","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-ohlc--selected","fullname":"plotOptions.ohlc.selected","title":"selected","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-series--selected","fullname":"plotOptions.series.selected","title":"selected","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"plotOptions-area--selected","fullname":"plotOptions.area.selected","title":"selected","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<columnrange>--selected","fullname":"series<columnrange>.selected","title":"selected","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<areasplinerange>-data--selected","fullname":"series<areasplinerange>.data.selected","title":"selected","parent":"series<areasplinerange>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<column>-data--selected","fullname":"series<column>.data.selected","title":"selected","parent":"series<column>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"plotOptions-flags--selected","fullname":"plotOptions.flags.selected","title":"selected","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<candlestick>-data--selected","fullname":"series<candlestick>.data.selected","title":"selected","parent":"series<candlestick>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<spline>-data--selected","fullname":"series<spline>.data.selected","title":"selected","parent":"series<spline>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<areaspline>-data--selected","fullname":"series<areaspline>.data.selected","title":"selected","parent":"series<areaspline>-data","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether the data point is selected initially."},{"name":"series<area>--selected","fullname":"series<area>.selected","title":"selected","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"series<ohlc>--selected","fullname":"series<ohlc>.selected","title":"selected","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to select the series initially. If <code>showCheckbox</code> is true, the checkbox next to the series name in the legend will be checked for a selected series."},{"name":"chart-events--selection","fullname":"chart.events.selection","title":"selection","parent":"chart-events","isParent":false,"returnType":"Function","description":"<p>Fires when an area of the chart has been selected. Selection is enabled by setting the chart's zoomType. One parameter, <code>event</code>, is passed 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  <code>event.preventDefault()</code>.</p> <p>Information on the selected area can be found through <code>event.xAxis</code> and  <code>event.yAxis</code>, which are arrays containing the axes of each dimension and each axis' min and max values. The primary axes are <code>event.xAxis[0]</code> and <code>event.yAxis[0]</code>. Remember the unit of a datetime axis is milliseconds since 1970-01-01 00:00:00.</p> \r\n<pre>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}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/events-selection/\" target=\"_blank\">Report on selection and reset</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/chart/events-selection-points/\" target=\"_blank\">select a range of points through a drag selection (Highcharts)</a>.","deprecated":false},{"name":"chart--selectionMarkerFill","fullname":"chart.selectionMarkerFill","title":"selectionMarkerFill","parent":"chart","isParent":false,"returnType":"Color","defaults":"rgba(69114,167,0.25),","description":"The background color of the marker square when selecting (zooming in on) an area of the chart.\n\t\t Defaults to <code>rgba(69,114,167,0.25)</code>."},{"name":"navigator--series","fullname":"navigator.series","title":"series","parent":"navigator","isParent":false,"returnType":"Object","description":"<p>Options for the navigator series. Available options are the same as any series, documented at <a class=\"internal\" href=\"#plotOptions.series\">plotOptions</a> and <a class=\"internal\" href=\"#series\">series</a>.</p>\r\n\r\n<p>Unless data is explicitly defined on navigator.series, the data is borrowed from the first series in the chart.</p>\r\n\r\n<p>Default series options for the navigator series are:</p>\r\n<pre>series: {\r\n\ttype: 'areaspline',\r\n\tcolor: '#4572A7',\r\n\tfillOpacity: 0.05,\r\n\tdataGrouping: {\r\n\t\tsmoothed: true\r\n\t},\r\n\tlineWidth: 1,\r\n\tmarker: {\r\n\t\tenabled: false\r\n\t}\r\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/series-data/\" target=\"_blank\">Using a separate data set for the navigator</a>;\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/navigator/series/\" target=\"_blank\">A green navigator series</a>","deprecated":false},{"name":"series","fullname":"series","title":"series","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"The actual series to append to the chart. In addition to \r\n\tthe members listed below, any member of the <code>plotOptions</code> for that specific\r\n\ttype of plot can be added to a series individually. For example, even though a general\r\n\t<code>lineWidth</code> is specified in <code>plotOptions.series</code>, an individual\r\n\t<code>lineWidth</code> can be specified for each series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-series","fullname":"plotOptions.series","title":"series","parent":"plotOptions","isParent":true,"description":"<p>General options for all series types.</p>"},{"name":"series<area>","fullname":"series<area>","title":"series<area>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>area</code> series. If the <a href=\"#series<area>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.area\">plotOptions.area</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>","fullname":"series<arearange>","title":"series<arearange>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>arearange</code> series. If the <a href=\"#series<arearange>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.arearange\">plotOptions.arearange</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>","fullname":"series<areaspline>","title":"series<areaspline>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>areaspline</code> series. If the <a href=\"#series<areaspline>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.areaspline\">plotOptions.areaspline</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>","fullname":"series<areasplinerange>","title":"series<areasplinerange>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>areasplinerange</code> series. If the <a href=\"#series<areasplinerange>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.areasplinerange\">plotOptions.areasplinerange</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>","fullname":"series<candlestick>","title":"series<candlestick>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>candlestick</code> series. If the <a href=\"#series<candlestick>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.candlestick\">plotOptions.candlestick</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>","fullname":"series<column>","title":"series<column>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>column</code> series. If the <a href=\"#series<column>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.column\">plotOptions.column</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<columnrange>","fullname":"series<columnrange>","title":"series<columnrange>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>columnrange</code> series. If the <a href=\"#series<columnrange>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.columnrange\">plotOptions.columnrange</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>","fullname":"series<flags>","title":"series<flags>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>flags</code> series. If the <a href=\"#series<flags>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.flags\">plotOptions.flags</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>","fullname":"series<line>","title":"series<line>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>line</code> series. If the <a href=\"#series<line>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.line\">plotOptions.line</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>","fullname":"series<ohlc>","title":"series<ohlc>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>ohlc</code> series. If the <a href=\"#series<ohlc>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.ohlc\">plotOptions.ohlc</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>","fullname":"series<polygon>","title":"series<polygon>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>polygon</code> series. If the <a href=\"#series<polygon>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.polygon\">plotOptions.polygon</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<scatter>","fullname":"series<scatter>","title":"series<scatter>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>scatter</code> series. If the <a href=\"#series<scatter>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.scatter\">plotOptions.scatter</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>","fullname":"series<spline>","title":"series<spline>","isParent":true,"returnType":"Array<Object>","defaults":"","since":"","description":"<p>A <code>spline</code> series. If the <a href=\"#series<spline>.type\">type</a> option is not specified, it is inherited from <a href=\"#chart.type\">chart.type</a>.</p>\r\n\r\n<p>For options that apply to multiple series, it is recommended to add them to the <a href=\"#pointOptions.series\">pointOptions.series</a> options structure. To apply to all series of this specific type, apply it to <a href=\"#plotOptions.spline\">plotOptions.spline</a>.</p>","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis-events--setExtremes","fullname":"yAxis.events.setExtremes","title":"setExtremes","parent":"yAxis-events","isParent":false,"returnType":"Function","context":"Axis","description":"<p>Fires when the minimum and maximum is set for the axis, either by calling the <code>.setExtremes()</code> method or by selecting an area in the chart. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.</p>\r\n\r\n<p>The new user set minimum and maximum values can be found by <code>event.min</code> and <code>event.max</code>. When an axis is zoomed all the way out from the \"Reset zoom\" button, <code>event.min</code> and <code>event.max</code> are null, and the new extremes are set based on <code>this.dataMin</code> and <code>this.dataMax</code>.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/events-setextremes/\" target=\"_blank\">Log new extremes on x axis</a>","deprecated":false},{"name":"xAxis-events--setExtremes","fullname":"xAxis.events.setExtremes","title":"setExtremes","parent":"xAxis-events","isParent":false,"returnType":"Function","context":"Axis","description":"<p>Fires when the minimum and maximum is set for the axis, either by calling the <code>.setExtremes()</code> method or by selecting an area in the chart. One parameter, <code>event</code>, is passed to the function. This contains common event information based on jQuery or MooTools depending on which library is used as the base for Highcharts.</p>\r\n\r\n<p>The new user set minimum and maximum values can be found by <code>event.min</code> and <code>event.max</code>. When an axis is zoomed all the way out from the \"Reset zoom\" button, <code>event.min</code> and <code>event.max</code> are null, and the new extremes are set based on <code>this.dataMin</code> and <code>this.dataMax</code>.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/events-setextremes/\" target=\"_blank\">Log new extremes on x axis</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc--shadow","fullname":"plotOptions.ohlc.shadow","title":"shadow","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>--shadow","fullname":"series<areasplinerange>.shadow","title":"shadow","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-dataLabels--shadow","fullname":"series<area>.dataLabels.shadow","title":"shadow","parent":"series<area>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/shadow/\" target=\"_blank\">Shadow</a>","seeAlso":"","deprecated":false},{"name":"series<column>-dataLabels--shadow","fullname":"series<column>.dataLabels.shadow","title":"shadow","parent":"series<column>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--shadow","fullname":"series<columnrange>.dataLabels.shadow","title":"shadow","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags--shadow","fullname":"plotOptions.flags.shadow","title":"shadow","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--shadow","fullname":"series<areasplinerange>.dataLabels.shadow","title":"shadow","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>-dataLabels--shadow","fullname":"series<areaspline>.dataLabels.shadow","title":"shadow","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-dataLabels--shadow","fullname":"plotOptions.flags.dataLabels.shadow","title":"shadow","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 <code>backgroundColor</code>\r also needs to be applied for this to take effect. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>","seeAlso":"","deprecated":false},{"name":"series<line>--shadow","fullname":"series<line>.shadow","title":"shadow","parent":"series<line>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>--shadow","fullname":"series<candlestick>.shadow","title":"shadow","parent":"series<candlestick>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--shadow","fullname":"series<arearange>.dataLabels.shadow","title":"shadow","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>-dataLabels--shadow","fullname":"series<scatter>.dataLabels.shadow","title":"shadow","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<areaspline>--shadow","fullname":"series<areaspline>.shadow","title":"shadow","parent":"series<areaspline>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--shadow","fullname":"series<polygon>.dataLabels.shadow","title":"shadow","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--shadow","fullname":"series<ohlc>.dataLabels.shadow","title":"shadow","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--shadow","fullname":"series<candlestick>.dataLabels.shadow","title":"shadow","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>--shadow","fullname":"series<area>.shadow","title":"shadow","parent":"series<area>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>--shadow","fullname":"series<spline>.shadow","title":"shadow","parent":"series<spline>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--shadow","fullname":"series<flags>.dataLabels.shadow","title":"shadow","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>--shadow","fullname":"series<columnrange>.shadow","title":"shadow","parent":"series<columnrange>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick--shadow","fullname":"plotOptions.candlestick.shadow","title":"shadow","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>--shadow","fullname":"series<arearange>.shadow","title":"shadow","parent":"series<arearange>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>--shadow","fullname":"series<column>.shadow","title":"shadow","parent":"series<column>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>--shadow","fullname":"series<ohlc>.shadow","title":"shadow","parent":"series<ohlc>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--shadow","fullname":"plotOptions.candlestick.dataLabels.shadow","title":"shadow","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<polygon>--shadow","fullname":"series<polygon>.shadow","title":"shadow","parent":"series<polygon>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--shadow","fullname":"plotOptions.ohlc.dataLabels.shadow","title":"shadow","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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."},{"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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<spline>-dataLabels--shadow","fullname":"series<spline>.dataLabels.shadow","title":"shadow","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<scatter>--shadow","fullname":"series<scatter>.shadow","title":"shadow","parent":"series<scatter>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataLabels--shadow","fullname":"series<line>.dataLabels.shadow","title":"shadow","parent":"series<line>-dataLabels","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","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":"1.1.6","description":"The shadow of the box. Works best with <code>borderWidth</code> or <code>backgroundColor</code>. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-box/\" target=\"_blank\">Data labels box options</a>","seeAlso":"","deprecated":false},{"name":"series<flags>--shadow","fullname":"series<flags>.shadow","title":"shadow","parent":"series<flags>","isParent":false,"returnType":"Boolean|Object","defaults":"false","since":"","description":"Whether to apply a drop shadow to the graph line. Since 1.1.7 the shadow can be an object configuration containing <code>color</code>, <code>offsetX</code>, <code>offsetY</code>, <code>opacity</code> and <code>width</code>.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-tooltip--shape","fullname":"series<area>.tooltip.shape","title":"shape","parent":"series<area>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-flags-tooltip--shape","fullname":"plotOptions.flags.tooltip.shape","title":"shape","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<areaspline>-tooltip--shape","fullname":"series<areaspline>.tooltip.shape","title":"shape","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--shape","fullname":"plotOptions.candlestick.dataLabels.shape","title":"shape","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<spline>-tooltip--shape","fullname":"series<spline>.tooltip.shape","title":"shape","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-area-tooltip--shape","fullname":"plotOptions.area.tooltip.shape","title":"shape","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<arearange>-dataLabels--shape","fullname":"series<arearange>.dataLabels.shape","title":"shape","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-flags-dataLabels--shape","fullname":"plotOptions.flags.dataLabels.shape","title":"shape","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--shape","fullname":"plotOptions.ohlc.dataLabels.shape","title":"shape","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"xAxis-crosshair-label--shape","fullname":"xAxis.crosshair.label.shape","title":"shape","parent":"xAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"callout","values":"","since":"2.1","description":"The shape to use for the label box.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-tooltip--shape","fullname":"series<arearange>.tooltip.shape","title":"shape","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<ohlc>-tooltip--shape","fullname":"series<ohlc>.tooltip.shape","title":"shape","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-ohlc-tooltip--shape","fullname":"plotOptions.ohlc.tooltip.shape","title":"shape","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-column-tooltip--shape","fullname":"plotOptions.column.tooltip.shape","title":"shape","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<area>-dataLabels--shape","fullname":"series<area>.dataLabels.shape","title":"shape","parent":"series<area>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<scatter>-dataLabels--shape","fullname":"series<scatter>.dataLabels.shape","title":"shape","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<candlestick>-dataLabels--shape","fullname":"series<candlestick>.dataLabels.shape","title":"shape","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<column>-tooltip--shape","fullname":"series<column>.tooltip.shape","title":"shape","parent":"series<column>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-arearange-tooltip--shape","fullname":"plotOptions.arearange.tooltip.shape","title":"shape","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-areaspline-tooltip--shape","fullname":"plotOptions.areaspline.tooltip.shape","title":"shape","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<candlestick>-tooltip--shape","fullname":"series<candlestick>.tooltip.shape","title":"shape","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-spline-tooltip--shape","fullname":"plotOptions.spline.tooltip.shape","title":"shape","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<columnrange>-dataLabels--shape","fullname":"series<columnrange>.dataLabels.shape","title":"shape","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--shape","fullname":"plotOptions.areasplinerange.tooltip.shape","title":"shape","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<areasplinerange>-tooltip--shape","fullname":"series<areasplinerange>.tooltip.shape","title":"shape","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<ohlc>-dataLabels--shape","fullname":"series<ohlc>.dataLabels.shape","title":"shape","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<areaspline>-dataLabels--shape","fullname":"series<areaspline>.dataLabels.shape","title":"shape","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<flags>-tooltip--shape","fullname":"series<flags>.tooltip.shape","title":"shape","parent":"series<flags>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<column>-dataLabels--shape","fullname":"series<column>.dataLabels.shape","title":"shape","parent":"series<column>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-line-tooltip--shape","fullname":"plotOptions.line.tooltip.shape","title":"shape","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<line>-tooltip--shape","fullname":"series<line>.tooltip.shape","title":"shape","parent":"series<line>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<polygon>-dataLabels--shape","fullname":"series<polygon>.dataLabels.shape","title":"shape","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<flags>-dataLabels--shape","fullname":"series<flags>.dataLabels.shape","title":"shape","parent":"series<flags>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--shape","fullname":"plotOptions.columnrange.tooltip.shape","title":"shape","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-series-tooltip--shape","fullname":"plotOptions.series.tooltip.shape","title":"shape","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"yAxis-crosshair-label--shape","fullname":"yAxis.crosshair.label.shape","title":"shape","parent":"yAxis-crosshair-label","isParent":false,"returnType":"String","context":"","defaults":"callout","values":"","since":"2.1","description":"The shape to use for the label box.","demo":"","seeAlso":"","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"series<columnrange>-tooltip--shape","fullname":"series<columnrange>.tooltip.shape","title":"shape","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<spline>-dataLabels--shape","fullname":"series<spline>.dataLabels.shape","title":"shape","parent":"series<spline>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"tooltip--shape","fullname":"tooltip.shape","title":"shape","parent":"tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"series<flags>--shape","fullname":"series<flags>.shape","title":"shape","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"flag","values":"[\"flag\", \"circlepin\", \"squarepin\"]","description":"The shape of the marker. Can be one of \"flag\", \"circlepin\", \"squarepin\", or an image on the format <code>url(/path-to-image.jpg)</code>. Individual shapes can also be set for each point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags/\" target=\"_blank\">Different shapes</a>","deprecated":false},{"name":"series<line>-dataLabels--shape","fullname":"series<line>.dataLabels.shape","title":"shape","parent":"series<line>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--shape","fullname":"plotOptions.candlestick.tooltip.shape","title":"shape","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","defaults":"callout","since":"2.0","description":"The name of a symbol to use for the border around the tooltip. In Highstock 1.x, the shape was <code>square</code>. ","deprecated":false},{"name":"plotOptions-flags--shape","fullname":"plotOptions.flags.shape","title":"shape","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"flag","values":"[\"flag\", \"circlepin\", \"squarepin\"]","description":"The shape of the marker. Can be one of \"flag\", \"circlepin\", \"squarepin\", or an image on the format <code>url(/path-to-image.jpg)</code>. Individual shapes can also be set for each point.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags/\" target=\"_blank\">Different shapes</a>","deprecated":false},{"name":"series<areasplinerange>-dataLabels--shape","fullname":"series<areasplinerange>.dataLabels.shape","title":"shape","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"String","defaults":"square","since":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","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":"2.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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-datalabels-shape/\" target=\"_blank\">A callout for annotations</a>","deprecated":false},{"name":"tooltip--shared","fullname":"tooltip.shared","title":"shared","parent":"tooltip","isParent":false,"returnType":"Boolean","defaults":"true","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.","deprecated":false},{"name":"lang--shortMonths","fullname":"lang.shortMonths","title":"shortMonths","parent":"lang","isParent":false,"returnType":"Array<String>","defaults":"","since":"","description":"An array containing the months names in abbreviated form. Corresponds to the \r <code>%b</code> format in <code>Highcharts.dateFormat()</code>. ","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-events--show","fullname":"series<flags>.events.show","title":"show","parent":"series<flags>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<ohlc>-events--show","fullname":"series<ohlc>.events.show","title":"show","parent":"series<ohlc>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<columnrange>-events--show","fullname":"series<columnrange>.events.show","title":"show","parent":"series<columnrange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-arearange-events--show","fullname":"plotOptions.arearange.events.show","title":"show","parent":"plotOptions-arearange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-candlestick-events--show","fullname":"plotOptions.candlestick.events.show","title":"show","parent":"plotOptions-candlestick-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-column-events--show","fullname":"plotOptions.column.events.show","title":"show","parent":"plotOptions-column-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<polygon>-events--show","fullname":"series<polygon>.events.show","title":"show","parent":"series<polygon>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<spline>-events--show","fullname":"series<spline>.events.show","title":"show","parent":"series<spline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-flags-events--show","fullname":"plotOptions.flags.events.show","title":"show","parent":"plotOptions-flags-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<column>-events--show","fullname":"series<column>.events.show","title":"show","parent":"series<column>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-series-events--show","fullname":"plotOptions.series.events.show","title":"show","parent":"plotOptions-series-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<areasplinerange>-events--show","fullname":"series<areasplinerange>.events.show","title":"show","parent":"series<areasplinerange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<line>-events--show","fullname":"series<line>.events.show","title":"show","parent":"series<line>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<area>-events--show","fullname":"series<area>.events.show","title":"show","parent":"series<area>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-scatter-events--show","fullname":"plotOptions.scatter.events.show","title":"show","parent":"plotOptions-scatter-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-polygon-events--show","fullname":"plotOptions.polygon.events.show","title":"show","parent":"plotOptions-polygon-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<arearange>-events--show","fullname":"series<arearange>.events.show","title":"show","parent":"series<arearange>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-columnrange-events--show","fullname":"plotOptions.columnrange.events.show","title":"show","parent":"plotOptions-columnrange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<areaspline>-events--show","fullname":"series<areaspline>.events.show","title":"show","parent":"series<areaspline>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<scatter>-events--show","fullname":"series<scatter>.events.show","title":"show","parent":"series<scatter>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<candlestick>-events--show","fullname":"series<candlestick>.events.show","title":"show","parent":"series<candlestick>-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-areasplinerange-events--show","fullname":"plotOptions.areasplinerange.events.show","title":"show","parent":"plotOptions-areasplinerange-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-line-events--show","fullname":"plotOptions.line.events.show","title":"show","parent":"plotOptions-line-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-ohlc-events--show","fullname":"plotOptions.ohlc.events.show","title":"show","parent":"plotOptions-ohlc-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-spline-events--show","fullname":"plotOptions.spline.events.show","title":"show","parent":"plotOptions-spline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-areaspline-events--show","fullname":"plotOptions.areaspline.events.show","title":"show","parent":"plotOptions-areaspline-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"plotOptions-area-events--show","fullname":"plotOptions.area.events.show","title":"show","parent":"plotOptions-area-events","isParent":false,"returnType":"Function","context":"Series","description":"Fires when the series is shown after chart generation time, either by clicking the legend item or by calling <code>.show()</code>.","deprecated":false},{"name":"series<areasplinerange>--showCheckbox","fullname":"series<areasplinerange>.showCheckbox","title":"showCheckbox","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<spline>--showCheckbox","fullname":"series<spline>.showCheckbox","title":"showCheckbox","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<columnrange>--showCheckbox","fullname":"series<columnrange>.showCheckbox","title":"showCheckbox","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-area--showCheckbox","fullname":"plotOptions.area.showCheckbox","title":"showCheckbox","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<line>--showCheckbox","fullname":"series<line>.showCheckbox","title":"showCheckbox","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-column--showCheckbox","fullname":"plotOptions.column.showCheckbox","title":"showCheckbox","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-areasplinerange--showCheckbox","fullname":"plotOptions.areasplinerange.showCheckbox","title":"showCheckbox","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<arearange>--showCheckbox","fullname":"series<arearange>.showCheckbox","title":"showCheckbox","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-polygon--showCheckbox","fullname":"plotOptions.polygon.showCheckbox","title":"showCheckbox","parent":"plotOptions-polygon","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<polygon>--showCheckbox","fullname":"series<polygon>.showCheckbox","title":"showCheckbox","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-spline--showCheckbox","fullname":"plotOptions.spline.showCheckbox","title":"showCheckbox","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-series--showCheckbox","fullname":"plotOptions.series.showCheckbox","title":"showCheckbox","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<ohlc>--showCheckbox","fullname":"series<ohlc>.showCheckbox","title":"showCheckbox","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<area>--showCheckbox","fullname":"series<area>.showCheckbox","title":"showCheckbox","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<scatter>--showCheckbox","fullname":"series<scatter>.showCheckbox","title":"showCheckbox","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-candlestick--showCheckbox","fullname":"plotOptions.candlestick.showCheckbox","title":"showCheckbox","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-scatter--showCheckbox","fullname":"plotOptions.scatter.showCheckbox","title":"showCheckbox","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-line--showCheckbox","fullname":"plotOptions.line.showCheckbox","title":"showCheckbox","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-ohlc--showCheckbox","fullname":"plotOptions.ohlc.showCheckbox","title":"showCheckbox","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<column>--showCheckbox","fullname":"series<column>.showCheckbox","title":"showCheckbox","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-flags--showCheckbox","fullname":"plotOptions.flags.showCheckbox","title":"showCheckbox","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-columnrange--showCheckbox","fullname":"plotOptions.columnrange.showCheckbox","title":"showCheckbox","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<candlestick>--showCheckbox","fullname":"series<candlestick>.showCheckbox","title":"showCheckbox","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-arearange--showCheckbox","fullname":"plotOptions.arearange.showCheckbox","title":"showCheckbox","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<flags>--showCheckbox","fullname":"series<flags>.showCheckbox","title":"showCheckbox","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"series<areaspline>--showCheckbox","fullname":"series<areaspline>.showCheckbox","title":"showCheckbox","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"plotOptions-areaspline--showCheckbox","fullname":"plotOptions.areaspline.showCheckbox","title":"showCheckbox","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","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 <code>selected</code> option."},{"name":"loading--showDuration","fullname":"loading.showDuration","title":"showDuration","parent":"loading","isParent":false,"returnType":"Number","defaults":"0","description":"The duration in milliseconds of the fade in effect."},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/showempty/\" target=\"_blank\">When clicking the legend to hide series, one axis preserves line and title, the other doesn't</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/showempty/\" target=\"_blank\">When clicking the legend to hide series, one axis preserves line and title, the other doesn't</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/showfirstlabel/\" target=\"_blank\">Labels below plot lines on Y axis</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/showfirstlabel/\" target=\"_blank\">Labels below plot lines on Y axis</a>"},{"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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<polygon>--showInLegend","fullname":"series<polygon>.showInLegend","title":"showInLegend","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<areasplinerange>--showInLegend","fullname":"series<areasplinerange>.showInLegend","title":"showInLegend","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<spline>--showInLegend","fullname":"series<spline>.showInLegend","title":"showInLegend","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"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 <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<columnrange>--showInLegend","fullname":"series<columnrange>.showInLegend","title":"showInLegend","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<candlestick>--showInLegend","fullname":"series<candlestick>.showInLegend","title":"showInLegend","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<areaspline>--showInLegend","fullname":"series<areaspline>.showInLegend","title":"showInLegend","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"plotOptions-flags--showInLegend","fullname":"plotOptions.flags.showInLegend","title":"showInLegend","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<flags>--showInLegend","fullname":"series<flags>.showInLegend","title":"showInLegend","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<line>--showInLegend","fullname":"series<line>.showInLegend","title":"showInLegend","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<area>--showInLegend","fullname":"series<area>.showInLegend","title":"showInLegend","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"plotOptions-ohlc--showInLegend","fullname":"plotOptions.ohlc.showInLegend","title":"showInLegend","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<ohlc>--showInLegend","fullname":"series<ohlc>.showInLegend","title":"showInLegend","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<arearange>--showInLegend","fullname":"series<arearange>.showInLegend","title":"showInLegend","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<column>--showInLegend","fullname":"series<column>.showInLegend","title":"showInLegend","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"plotOptions-candlestick--showInLegend","fullname":"plotOptions.candlestick.showInLegend","title":"showInLegend","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","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 <code>true</code> for standalone series, <code>false</code> for linked series.","deprecated":false},{"name":"series<scatter>--showInLegend","fullname":"series<scatter>.showInLegend","title":"showInLegend","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to display this particular series or series type in the legend. The default value is <code>true</code> for standalone series, <code>false</code> for linked series.","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/showfirstlabel/\" target=\"_blank\">Labels below plot lines on Y axis</a>"},{"name":"yAxis--showLastLabel","fullname":"yAxis.showLastLabel","title":"showLastLabel","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to show the last tick label.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/showfirstlabel/\" target=\"_blank\">Labels below plot lines on Y axis</a>"},{"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<line>-states-hover-halo--size","fullname":"series<line>.states.hover.halo.size","title":"size","parent":"series<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-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":"series<polygon>-states-hover-halo--size","fullname":"series<polygon>.states.hover.halo.size","title":"size","parent":"series<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-flags-states-hover-halo--size","fullname":"plotOptions.flags.states.hover.halo.size","title":"size","parent":"plotOptions-flags-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<area>-states-hover-halo--size","fullname":"series<area>.states.hover.halo.size","title":"size","parent":"series<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<ohlc>-states-hover-halo--size","fullname":"series<ohlc>.states.hover.halo.size","title":"size","parent":"series<ohlc>-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<candlestick>-states-hover-halo--size","fullname":"series<candlestick>.states.hover.halo.size","title":"size","parent":"series<candlestick>-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<areasplinerange>-states-hover-halo--size","fullname":"series<areasplinerange>.states.hover.halo.size","title":"size","parent":"series<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":"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-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":"plotOptions-candlestick-states-hover-halo--size","fullname":"plotOptions.candlestick.states.hover.halo.size","title":"size","parent":"plotOptions-candlestick-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<areaspline>-states-hover-halo--size","fullname":"series<areaspline>.states.hover.halo.size","title":"size","parent":"series<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":"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":"series<scatter>-states-hover-halo--size","fullname":"series<scatter>.states.hover.halo.size","title":"size","parent":"series<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<column>-states-hover-halo--size","fullname":"series<column>.states.hover.halo.size","title":"size","parent":"series<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":"series<columnrange>-states-hover-halo--size","fullname":"series<columnrange>.states.hover.halo.size","title":"size","parent":"series<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":"series<arearange>-states-hover-halo--size","fullname":"series<arearange>.states.hover.halo.size","title":"size","parent":"series<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-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-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":"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<spline>-states-hover-halo--size","fullname":"series<spline>.states.hover.halo.size","title":"size","parent":"series<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-ohlc-states-hover-halo--size","fullname":"plotOptions.ohlc.states.hover.halo.size","title":"size","parent":"plotOptions-ohlc-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-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":"series<flags>-states-hover-halo--size","fullname":"series<flags>.states.hover.halo.size","title":"size","parent":"series<flags>-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-ohlc-dataGrouping--smoothed","fullname":"plotOptions.ohlc.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<areaspline>-dataGrouping--smoothed","fullname":"series<areaspline>.dataGrouping.smoothed","title":"smoothed","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<columnrange>-dataGrouping--smoothed","fullname":"series<columnrange>.dataGrouping.smoothed","title":"smoothed","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-areasplinerange-dataGrouping--smoothed","fullname":"plotOptions.areasplinerange.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<scatter>-dataGrouping--smoothed","fullname":"series<scatter>.dataGrouping.smoothed","title":"smoothed","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<ohlc>-dataGrouping--smoothed","fullname":"series<ohlc>.dataGrouping.smoothed","title":"smoothed","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-line-dataGrouping--smoothed","fullname":"plotOptions.line.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<area>-dataGrouping--smoothed","fullname":"series<area>.dataGrouping.smoothed","title":"smoothed","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--smoothed","fullname":"plotOptions.candlestick.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-area-dataGrouping--smoothed","fullname":"plotOptions.area.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<areasplinerange>-dataGrouping--smoothed","fullname":"series<areasplinerange>.dataGrouping.smoothed","title":"smoothed","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-scatter-dataGrouping--smoothed","fullname":"plotOptions.scatter.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-areaspline-dataGrouping--smoothed","fullname":"plotOptions.areaspline.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-spline-dataGrouping--smoothed","fullname":"plotOptions.spline.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-columnrange-dataGrouping--smoothed","fullname":"plotOptions.columnrange.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-series-dataGrouping--smoothed","fullname":"plotOptions.series.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-polygon-dataGrouping--smoothed","fullname":"plotOptions.polygon.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<line>-dataGrouping--smoothed","fullname":"series<line>.dataGrouping.smoothed","title":"smoothed","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-column-dataGrouping--smoothed","fullname":"plotOptions.column.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<arearange>-dataGrouping--smoothed","fullname":"series<arearange>.dataGrouping.smoothed","title":"smoothed","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"plotOptions-arearange-dataGrouping--smoothed","fullname":"plotOptions.arearange.dataGrouping.smoothed","title":"smoothed","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<polygon>-dataGrouping--smoothed","fullname":"series<polygon>.dataGrouping.smoothed","title":"smoothed","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<column>-dataGrouping--smoothed","fullname":"series<column>.dataGrouping.smoothed","title":"smoothed","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<spline>-dataGrouping--smoothed","fullname":"series<spline>.dataGrouping.smoothed","title":"smoothed","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"series<candlestick>-dataGrouping--smoothed","fullname":"series<candlestick>.dataGrouping.smoothed","title":"smoothed","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Boolean","defaults":"false","description":"Normally, a group is indexed by the start of that group, so for example when 30 daily values are grouped into one month, that month's x value will be the 1st of  the month. This apparently shifts the data to the left. When the smoothed option is true, this is compensated for. The data is shifted to the middle of the group, and min and max values are preserved. Internally, this is used in the Navigator series. ","deprecated":false},{"name":"tooltip--snap","fullname":"tooltip.snap","title":"snap","parent":"tooltip","isParent":false,"returnType":"Number","defaults":"10/25","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 Highstock 2.1 the whole plot area by default captures pointer events in order to show the tooltip, so for tooltip.snap to make sense, <a href=\"#plotOptions.series.stickyTracking\">stickyTracking</a> must be <code>false</code>.","deprecated":false},{"name":"xAxis-crosshair--snap","fullname":"xAxis.crosshair.snap","title":"snap","parent":"xAxis-crosshair","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Whether the crosshair should snap to the point or follow the pointer independent of points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-snap-false/\" target=\"_blank\">True by default</a>","deprecated":false},{"name":"yAxis-crosshair--snap","fullname":"yAxis.crosshair.snap","title":"snap","parent":"yAxis-crosshair","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1","description":"Whether the crosshair should snap to the point or follow the pointer independent of points.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-snap-false/\" target=\"_blank\">True by default</a>","deprecated":false},{"name":"series<area>--softThreshold","fullname":"series<area>.softThreshold","title":"softThreshold","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<areaspline>--softThreshold","fullname":"series<areaspline>.softThreshold","title":"softThreshold","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<ohlc>--softThreshold","fullname":"series<ohlc>.softThreshold","title":"softThreshold","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<candlestick>--softThreshold","fullname":"series<candlestick>.softThreshold","title":"softThreshold","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<scatter>--softThreshold","fullname":"series<scatter>.softThreshold","title":"softThreshold","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-flags--softThreshold","fullname":"plotOptions.flags.softThreshold","title":"softThreshold","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-ohlc--softThreshold","fullname":"plotOptions.ohlc.softThreshold","title":"softThreshold","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<spline>--softThreshold","fullname":"series<spline>.softThreshold","title":"softThreshold","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-column--softThreshold","fullname":"plotOptions.column.softThreshold","title":"softThreshold","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-spline--softThreshold","fullname":"plotOptions.spline.softThreshold","title":"softThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-line--softThreshold","fullname":"plotOptions.line.softThreshold","title":"softThreshold","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-candlestick--softThreshold","fullname":"plotOptions.candlestick.softThreshold","title":"softThreshold","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-series--softThreshold","fullname":"plotOptions.series.softThreshold","title":"softThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-area--softThreshold","fullname":"plotOptions.area.softThreshold","title":"softThreshold","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-areaspline--softThreshold","fullname":"plotOptions.areaspline.softThreshold","title":"softThreshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<flags>--softThreshold","fullname":"series<flags>.softThreshold","title":"softThreshold","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"plotOptions-scatter--softThreshold","fullname":"plotOptions.scatter.softThreshold","title":"softThreshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<line>--softThreshold","fullname":"series<line>.softThreshold","title":"softThreshold","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"series<column>--softThreshold","fullname":"series<column>.softThreshold","title":"softThreshold","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.1.9","description":"<p>When this is true, the series will not cause the Y axis to cross the zero plane (or <a href=\"#plotOptions.series.threshold\">threshold</a> option) unless the data actually crosses the plane.</p>\r\n\r\n<p>For example, if <code>softThreshold</code> is <code>false</code>, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the <code>minPadding</code> option. If <code>softThreshold</code> is <code>true</code>, the Y axis starts at 0.</p>","deprecated":false},{"name":"exporting--sourceHeight","fullname":"exporting.sourceHeight","title":"sourceHeight","parent":"exporting","isParent":false,"returnType":"Number","defaults":"","values":"","since":"1.3","description":"Analogous to <a href=\"#exporting.sourceWidth\">sourceWidth</a>","demo":"","seeAlso":"","deprecated":false},{"name":"exporting--sourceWidth","fullname":"exporting.sourceWidth","title":"sourceWidth","parent":"exporting","isParent":false,"returnType":"Number","defaults":"","values":"","since":"1.3","description":"The width of the original chart when exported, unless an explicit <a href=\"#chart.width\">chart.width</a> is set. The width exported raster image is then multiplied by <a href=\"#exporting.scale\">scale</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/sourcewidth/\" target=\"_blank\">Source size demo</a>","seeAlso":"","deprecated":false},{"name":"chart--spacing","fullname":"chart.spacing","title":"spacing","parent":"chart","isParent":false,"returnType":"Array<Number>","defaults":"[10, 10, 15, 10]","values":"","since":"1.3.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":"<a href=\"#chart.margin\">chart.margin</a>","deprecated":false},{"name":"chart--spacingBottom","fullname":"chart.spacingBottom","title":"spacingBottom","parent":"chart","isParent":false,"returnType":"Number","defaults":"15","description":"<p>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).</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/spacingbottom/\" target=\"_blank\">Spacing bottom set to 100</a>.","deprecated":false},{"name":"chart--spacingLeft","fullname":"chart.spacingLeft","title":"spacingLeft","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","description":"<p>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).</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/spacingleft/\" target=\"_blank\">Spacing left set to 100</a>","deprecated":false},{"name":"chart--spacingRight","fullname":"chart.spacingRight","title":"spacingRight","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","description":"<p>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).</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/spacingright/\" target=\"_blank\">Spacing set to 100</a>","deprecated":false},{"name":"chart--spacingTop","fullname":"chart.spacingTop","title":"spacingTop","parent":"chart","isParent":false,"returnType":"Number","defaults":"10","description":"<p>The space between the top edge of the chart and the content (plot area, axis title and labels, title, subtitle or \r legend in top position).</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/spacingtop/\" target=\"_blank\">A top spacing of 100</a>","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","defaults":"null","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.","deprecated":false},{"name":"series<column>--stack","fullname":"series<column>.stack","title":"stack","parent":"series<column>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<area>--stack","fullname":"series<area>.stack","title":"stack","parent":"series<area>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<flags>--stack","fullname":"series<flags>.stack","title":"stack","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<candlestick>--stack","fullname":"series<candlestick>.stack","title":"stack","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<ohlc>--stack","fullname":"series<ohlc>.stack","title":"stack","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<line>--stack","fullname":"series<line>.stack","title":"stack","parent":"series<line>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<spline>--stack","fullname":"series<spline>.stack","title":"stack","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"series<areaspline>--stack","fullname":"series<areaspline>.stack","title":"stack","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"null","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.","deprecated":false},{"name":"plotOptions-flags--stackDistance","fullname":"plotOptions.flags.stackDistance","title":"stackDistance","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"12","since":"","description":"When multiple flags in the same series fall on the same value, this number determines the vertical\r offset between them.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags-stackdistance/\" target=\"_blank\">A greater stack distance</a>","seeAlso":"","deprecated":false},{"name":"series<flags>--stackDistance","fullname":"series<flags>.stackDistance","title":"stackDistance","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"12","since":"","description":"When multiple flags in the same series fall on the same value, this number determines the vertical\r offset between them.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/flags-stackdistance/\" target=\"_blank\">A greater stack distance</a>","seeAlso":"","deprecated":false},{"name":"series<spline>--stacking","fullname":"series<spline>.stacking","title":"stacking","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-arearange--stacking","fullname":"plotOptions.arearange.stacking","title":"stacking","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<arearange>--stacking","fullname":"series<arearange>.stacking","title":"stacking","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<scatter>--stacking","fullname":"series<scatter>.stacking","title":"stacking","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-area--stacking","fullname":"plotOptions.area.stacking","title":"stacking","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-areaspline--stacking","fullname":"plotOptions.areaspline.stacking","title":"stacking","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<area>--stacking","fullname":"series<area>.stacking","title":"stacking","parent":"series<area>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<areaspline>--stacking","fullname":"series<areaspline>.stacking","title":"stacking","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-areasplinerange--stacking","fullname":"plotOptions.areasplinerange.stacking","title":"stacking","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<column>--stacking","fullname":"series<column>.stacking","title":"stacking","parent":"series<column>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-series--stacking","fullname":"plotOptions.series.stacking","title":"stacking","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-scatter--stacking","fullname":"plotOptions.scatter.stacking","title":"stacking","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<line>--stacking","fullname":"series<line>.stacking","title":"stacking","parent":"series<line>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-column--stacking","fullname":"plotOptions.column.stacking","title":"stacking","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-spline--stacking","fullname":"plotOptions.spline.stacking","title":"stacking","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-polygon--stacking","fullname":"plotOptions.polygon.stacking","title":"stacking","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<polygon>--stacking","fullname":"series<polygon>.stacking","title":"stacking","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"series<areasplinerange>--stacking","fullname":"series<areasplinerange>.stacking","title":"stacking","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"plotOptions-line--stacking","fullname":"plotOptions.line.stacking","title":"stacking","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"normal\", \"percent\"]","description":"Whether to stack the values of each series on top of each other. Possible values\r\n are null to disable, \"normal\" to stack by value or \"percent\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/stacking/\" target=\"_blank\">Area</a> with \"normal\" stacking.","seeAlso":"<a href=\"#yAxis.reversedStacks\">yAxis.reversedStacks</a>","deprecated":false},{"name":"xAxis-labels--staggerLines","fullname":"xAxis.labels.staggerLines","title":"staggerLines","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"null","description":"Horizontal axes only. The number of lines to spread the labels over to make room or tighter labels.  .","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/labels-staggerlines/\" target=\"_blank\">Show labels over two lines</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/startofweek-1\" target=\"_blank\">Monday by default</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/startofweek-0\" target=\"_blank\">Sunday</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/startofweek-1\" target=\"_blank\">Monday by default</a>,\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/startofweek-0\" target=\"_blank\">Sunday</a>"},{"name":"xAxis--startOnTick","fullname":"xAxis.startOnTick","title":"startOnTick","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to force the axis to start on a tick. Use this option with the <code>minPadding</code> option to control the axis start. In Highstock, startOnTick is allways false when the navigator is enabled, to prevent jumpy scrolling.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/endontick/\" target=\"_blank\">False for Y axis</a>","deprecated":false},{"name":"yAxis--startOnTick","fullname":"yAxis.startOnTick","title":"startOnTick","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","description":"Whether to force the axis to start on a tick. Use this option with the <code>maxPadding</code> option to control the axis start.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/endontick/\" target=\"_blank\">False for Y axis</a>"},{"name":"series<polygon>-data-marker-states","fullname":"series<polygon>.data.marker.states","title":"states","parent":"series<polygon>-data-marker","isParent":true},{"name":"series<candlestick>-states","fullname":"series<candlestick>.states","title":"states","parent":"series<candlestick>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-area-states","fullname":"plotOptions.area.states","title":"states","parent":"plotOptions-area","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"name":"series<polygon>-marker-states","fullname":"series<polygon>.marker.states","title":"states","parent":"series<polygon>-marker","isParent":true},{"name":"plotOptions-line-marker-states","fullname":"plotOptions.line.marker.states","title":"states","parent":"plotOptions-line-marker","isParent":true},{"name":"series<scatter>-marker-states","fullname":"series<scatter>.marker.states","title":"states","parent":"series<scatter>-marker","isParent":true},{"name":"plotOptions-scatter-marker-states","fullname":"plotOptions.scatter.marker.states","title":"states","parent":"plotOptions-scatter-marker","isParent":true},{"name":"plotOptions-ohlc-states","fullname":"plotOptions.ohlc.states","title":"states","parent":"plotOptions-ohlc","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<columnrange>-states","fullname":"series<columnrange>.states","title":"states","parent":"series<columnrange>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<line>-states","fullname":"series<line>.states","title":"states","parent":"series<line>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-candlestick-states","fullname":"plotOptions.candlestick.states","title":"states","parent":"plotOptions-candlestick","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<arearange>-states","fullname":"series<arearange>.states","title":"states","parent":"series<arearange>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-spline-marker-states","fullname":"plotOptions.spline.marker.states","title":"states","parent":"plotOptions-spline-marker","isParent":true},{"name":"plotOptions-series-states","fullname":"plotOptions.series.states","title":"states","parent":"plotOptions-series","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<spline>-data-marker-states","fullname":"series<spline>.data.marker.states","title":"states","parent":"series<spline>-data-marker","isParent":true},{"name":"series<polygon>-states","fullname":"series<polygon>.states","title":"states","parent":"series<polygon>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<areaspline>-marker-states","fullname":"series<areaspline>.marker.states","title":"states","parent":"series<areaspline>-marker","isParent":true},{"name":"series<line>-data-marker-states","fullname":"series<line>.data.marker.states","title":"states","parent":"series<line>-data-marker","isParent":true},{"name":"series<area>-marker-states","fullname":"series<area>.marker.states","title":"states","parent":"series<area>-marker","isParent":true},{"name":"plotOptions-areaspline-states","fullname":"plotOptions.areaspline.states","title":"states","parent":"plotOptions-areaspline","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-polygon-states","fullname":"plotOptions.polygon.states","title":"states","parent":"plotOptions-polygon","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"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":"","defaults":"","description":""},{"name":"series<candlestick>-states-hover-marker--states","fullname":"series<candlestick>.states.hover.marker.states","title":"states","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<spline>-states","fullname":"series<spline>.states","title":"states","parent":"series<spline>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"name":"plotOptions-candlestick-states-hover-marker--states","fullname":"plotOptions.candlestick.states.hover.marker.states","title":"states","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<areaspline>-states-hover-marker--states","fullname":"series<areaspline>.states.hover.marker.states","title":"states","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"plotOptions-areasplinerange-states","fullname":"plotOptions.areasplinerange.states","title":"states","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-flags-states","fullname":"plotOptions.flags.states","title":"states","parent":"plotOptions-flags","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<spline>-states-hover-marker--states","fullname":"series<spline>.states.hover.marker.states","title":"states","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"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":"","defaults":"","description":""},{"name":"series<areaspline>-states","fullname":"series<areaspline>.states","title":"states","parent":"series<areaspline>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"name":"series<column>-states","fullname":"series<column>.states","title":"states","parent":"series<column>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"name":"plotOptions-column-states","fullname":"plotOptions.column.states","title":"states","parent":"plotOptions-column","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<scatter>-data-marker-states","fullname":"series<scatter>.data.marker.states","title":"states","parent":"series<scatter>-data-marker","isParent":true},{"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":"","defaults":"","description":""},{"name":"plotOptions-spline-states","fullname":"plotOptions.spline.states","title":"states","parent":"plotOptions-spline","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<areaspline>-data-marker-states","fullname":"series<areaspline>.data.marker.states","title":"states","parent":"series<areaspline>-data-marker","isParent":true},{"name":"plotOptions-columnrange-states","fullname":"plotOptions.columnrange.states","title":"states","parent":"plotOptions-columnrange","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<column>-states-hover-marker--states","fullname":"series<column>.states.hover.marker.states","title":"states","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<ohlc>-states","fullname":"series<ohlc>.states","title":"states","parent":"series<ohlc>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<area>-states","fullname":"series<area>.states","title":"states","parent":"series<area>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<flags>-states","fullname":"series<flags>.states","title":"states","parent":"series<flags>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<polygon>-states-hover-marker--states","fullname":"series<polygon>.states.hover.marker.states","title":"states","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"plotOptions-ohlc-states-hover-marker--states","fullname":"plotOptions.ohlc.states.hover.marker.states","title":"states","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"plotOptions-areaspline-marker-states","fullname":"plotOptions.areaspline.marker.states","title":"states","parent":"plotOptions-areaspline-marker","isParent":true},{"name":"series<spline>-marker-states","fullname":"series<spline>.marker.states","title":"states","parent":"series<spline>-marker","isParent":true},{"name":"series<ohlc>-states-hover-marker--states","fullname":"series<ohlc>.states.hover.marker.states","title":"states","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<scatter>-states","fullname":"series<scatter>.states","title":"states","parent":"series<scatter>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"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":"","defaults":"","description":""},{"name":"series<line>-states-hover-marker--states","fullname":"series<line>.states.hover.marker.states","title":"states","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"plotOptions-arearange-states","fullname":"plotOptions.arearange.states","title":"states","parent":"plotOptions-arearange","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-line-states","fullname":"plotOptions.line.states","title":"states","parent":"plotOptions-line","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-flags-states-hover-marker--states","fullname":"plotOptions.flags.states.hover.marker.states","title":"states","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<line>-marker-states","fullname":"series<line>.marker.states","title":"states","parent":"series<line>-marker","isParent":true},{"name":"series<arearange>-states-hover-marker--states","fullname":"series<arearange>.states.hover.marker.states","title":"states","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<areasplinerange>-states","fullname":"series<areasplinerange>.states","title":"states","parent":"series<areasplinerange>","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"series<flags>-states-hover-marker--states","fullname":"series<flags>.states.hover.marker.states","title":"states","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<area>-states-hover-marker--states","fullname":"series<area>.states.hover.marker.states","title":"states","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"","defaults":"","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":"","defaults":"","description":""},{"name":"series<areasplinerange>-states-hover-marker--states","fullname":"series<areasplinerange>.states.hover.marker.states","title":"states","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<area>-data-marker-states","fullname":"series<area>.data.marker.states","title":"states","parent":"series<area>-data-marker","isParent":true},{"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":"","defaults":"","description":""},{"name":"plotOptions-polygon-marker-states","fullname":"plotOptions.polygon.marker.states","title":"states","parent":"plotOptions-polygon-marker","isParent":true},{"name":"series<columnrange>-states-hover-marker--states","fullname":"series<columnrange>.states.hover.marker.states","title":"states","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"series<scatter>-states-hover-marker--states","fullname":"series<scatter>.states.hover.marker.states","title":"states","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"","defaults":"","description":""},{"name":"plotOptions-area-marker-states","fullname":"plotOptions.area.marker.states","title":"states","parent":"plotOptions-area-marker","isParent":true},{"name":"plotOptions-series-marker-states","fullname":"plotOptions.series.marker.states","title":"states","parent":"plotOptions-series-marker","isParent":true},{"name":"plotOptions-scatter-states","fullname":"plotOptions.scatter.states","title":"states","parent":"plotOptions-scatter","isParent":true,"returnType":"plotOptions.series.states","description":"A wrapper object for all the series options in specific states."},{"name":"plotOptions-arearange--step","fullname":"plotOptions.arearange.step","title":"step","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","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\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","deprecated":false},{"name":"xAxis-labels--step","fullname":"xAxis.labels.step","title":"step","parent":"xAxis-labels","isParent":false,"returnType":"Number","defaults":"null","description":"To show only every <em>n</em>'th label on the axis, set the step to <em>n</em>. Setting the step to 2 shows every other label."},{"name":"series<line>--step","fullname":"series<line>.step","title":"step","parent":"series<line>","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","deprecated":false},{"name":"series<area>--step","fullname":"series<area>.step","title":"step","parent":"series<area>","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","deprecated":false},{"name":"series<arearange>--step","fullname":"series<arearange>.step","title":"step","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"false","values":"[\"left\", \"center\", \"right\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","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\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","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\"]","description":"Whether to apply steps to the line. Possible values are <code>left</code>, <code>center</code> and <code>right</code>. Prior to 1.2.5, only <code>left</code> was supported.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/line-step/\" target=\"_blank\">Step line</a>","deprecated":false},{"name":"series<scatter>--stickyTracking","fullname":"series<scatter>.stickyTracking","title":"stickyTracking","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 <code>stickyTracking</code> is false and <code>tooltip.shared</code> is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange--stickyTracking","fullname":"plotOptions.areasplinerange.stickyTracking","title":"stickyTracking","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","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 <code>mouseOut</code> 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 <code>mouseOut</code> 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 <code>stickyTracking</code> is false and <code>tooltip.shared</code> is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline--stickyTracking","fullname":"plotOptions.spline.stickyTracking","title":"stickyTracking","parent":"plotOptions-spline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<areasplinerange>--stickyTracking","fullname":"series<areasplinerange>.stickyTracking","title":"stickyTracking","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-column--stickyTracking","fullname":"plotOptions.column.stickyTracking","title":"stickyTracking","parent":"plotOptions-column","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<flags>--stickyTracking","fullname":"series<flags>.stickyTracking","title":"stickyTracking","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<areaspline>--stickyTracking","fullname":"series<areaspline>.stickyTracking","title":"stickyTracking","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<ohlc>--stickyTracking","fullname":"series<ohlc>.stickyTracking","title":"stickyTracking","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<line>--stickyTracking","fullname":"series<line>.stickyTracking","title":"stickyTracking","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-areaspline--stickyTracking","fullname":"plotOptions.areaspline.stickyTracking","title":"stickyTracking","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-candlestick--stickyTracking","fullname":"plotOptions.candlestick.stickyTracking","title":"stickyTracking","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<column>--stickyTracking","fullname":"series<column>.stickyTracking","title":"stickyTracking","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<candlestick>--stickyTracking","fullname":"series<candlestick>.stickyTracking","title":"stickyTracking","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-line--stickyTracking","fullname":"plotOptions.line.stickyTracking","title":"stickyTracking","parent":"plotOptions-line","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","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 <code>mouseOut</code> 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 <code>mouseOut</code> 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 <code>stickyTracking</code> is false and <code>tooltip.shared</code> is false, the \r tooltip will be hidden when moving the mouse between series.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>--stickyTracking","fullname":"series<arearange>.stickyTracking","title":"stickyTracking","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<polygon>--stickyTracking","fullname":"series<polygon>.stickyTracking","title":"stickyTracking","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 <code>stickyTracking</code> is false and <code>tooltip.shared</code> 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","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-ohlc--stickyTracking","fullname":"plotOptions.ohlc.stickyTracking","title":"stickyTracking","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-series--stickyTracking","fullname":"plotOptions.series.stickyTracking","title":"stickyTracking","parent":"plotOptions-series","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-flags--stickyTracking","fullname":"plotOptions.flags.stickyTracking","title":"stickyTracking","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<area>--stickyTracking","fullname":"series<area>.stickyTracking","title":"stickyTracking","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-columnrange--stickyTracking","fullname":"plotOptions.columnrange.stickyTracking","title":"stickyTracking","parent":"plotOptions-columnrange","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"plotOptions-area--stickyTracking","fullname":"plotOptions.area.stickyTracking","title":"stickyTracking","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<columnrange>--stickyTracking","fullname":"series<columnrange>.stickyTracking","title":"stickyTracking","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<spline>--stickyTracking","fullname":"series<spline>.stickyTracking","title":"stickyTracking","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Sticky tracking of mouse events. When true, the <code>mouseOut</code> 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 <code>mouseOut</code> 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 not shared. When <code>stickyTracking</code> 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, candlesticks etc.","deprecated":false},{"name":"series<area>-dataLabels--style","fullname":"series<area>.dataLabels.style","title":"style","parent":"series<area>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"plotOptions-flags-dataLabels--style","fullname":"plotOptions.flags.dataLabels.style","title":"style","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<scatter>-dataLabels--style","fullname":"series<scatter>.dataLabels.style","title":"style","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","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\" }","description":"Styles for the label.","deprecated":false},{"name":"loading--style","fullname":"loading.style","title":"style","parent":"loading","isParent":false,"returnType":"CSSObject","defaults":"","description":"CSS styles for the loading screen that covers the plot area. Defaults to:\n<pre>style: {\n\tposition: 'absolute',\n\tbackgroundColor: 'white',\n\topacity: 0.5,\n\ttextAlign: 'center'\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/loading/general/\" target=\"_blank\">Gray plot area, white text</a>"},{"name":"series<spline>-dataLabels--style","fullname":"series<spline>.dataLabels.style","title":"style","parent":"series<spline>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<areaspline>-dataLabels--style","fullname":"series<areaspline>.dataLabels.style","title":"style","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"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\" }","description":"Styles for the label.","deprecated":false},{"name":"plotOptions-flags--style","fullname":"plotOptions.flags.style","title":"style","parent":"plotOptions-flags","isParent":false,"returnType":"CSSObject","defaults":"","description":"The text styles of the flag. Defaults to:\n<pre>style: {\n\tfontSize: '11px',\n\tfontWeight: 'bold',\n\ttextAlign: 'center'\n}</pre>"},{"name":"series<columnrange>-dataLabels--style","fullname":"series<columnrange>.dataLabels.style","title":"style","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","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<pre>style: {\r\n\tcursor: 'pointer',\r\n\tcolor: '#909090',\r\n\tfontSize: '10px'\r\n\r\n}</pre>","deprecated":false},{"name":"labels-items--style","fullname":"labels.items.style","title":"style","parent":"labels-items","isParent":false,"returnType":"CSSObject","defaults":"","description":"CSS styles for each label. To position the label, use left and top like this:\n<pre>style: {\n\tleft: '100px',\n\ttop: '100px'\n}</pre>"},{"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  <code>align</code>, <code>verticalAlign</code>, <code>x</code> and <code>y</code>, but the styles are still parsed for backwards compatibility.","deprecated":true},{"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\" }","description":"Styles for the label.","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\" }","description":"Styles for the label.","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\" }","description":"Styles for the label.","deprecated":false},{"name":"yAxis-plotBands-label--style","fullname":"yAxis.plotBands.label.style","title":"style","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Object","defaults":"","description":"CSS styles for the text label."},{"name":"legend-navigation--style","fullname":"legend.navigation.style","title":"style","parent":"legend-navigation","isParent":false,"returnType":"CSSObject","defaults":"","since":"1.1.5","description":"Text styles for the legend page navigation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/navigation/\" target=\"_blank\">\n\t\t\t\tLegend page navigation demonstrated</a>"},{"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 <code>.highcharts-tooltip</code>.","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\" }","description":"Styles for the label.","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.","deprecated":false},{"name":"series<candlestick>-dataLabels--style","fullname":"series<candlestick>.dataLabels.style","title":"style","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<arearange>-dataLabels--style","fullname":"series<arearange>.dataLabels.style","title":"style","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"yAxis-crosshair-label--style","fullname":"yAxis.crosshair.label.style","title":"style","parent":"yAxis-crosshair-label","isParent":false,"returnType":"CSS","context":"","defaults":"{ \"color\": \"white\", \"fontWeight\": \"normal\", \"fontSize\": \"11px\", \"textAlign\": \"center\" }","values":"","since":"2.1","description":"Text styles for the crosshair label.","demo":"","seeAlso":"","deprecated":false},{"name":"labels--style","fullname":"labels.style","title":"style","parent":"labels","isParent":false,"returnType":"CSSObject","defaults":"","description":"Shared CSS styles for all labels. Defaults to:\n<pre>style: {\n\tcolor: '#3E576F'\n}</pre>"},{"name":"series<areasplinerange>-dataLabels--style","fullname":"series<areasplinerange>.dataLabels.style","title":"style","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","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\" }","description":"Styles for the label.","deprecated":false},{"name":"title--style","fullname":"title.style","title":"style","parent":"title","isParent":false,"returnType":"CSSObject","defaults":"{ \"color\": \"#333333\", \"fontSize\": \"16px\" }","description":"CSS styles for the title. Use this for font styling, but use <code>align</code>, <code>x</code> and <code>y</code> for text alignment.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-style/\" target=\"_blank\">Custom color and weight</a>","deprecated":false},{"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\" }","description":"Styles for the label.","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 <code>whiteSpace: 'nowrap'</code> to prevent wrapping of category labels. Use <code>textOverflow: 'none'</code> to prevent ellipsis (dots).","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\" }","description":"Styles for the label.","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\" }","description":"Styles for the label.","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 <code>whiteSpace: 'nowrap'</code> to prevent wrapping of category labels. Use <code>textOverflow: 'none'</code> to prevent ellipsis (dots).","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\" }","description":"Styles for the label.","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.","deprecated":false},{"name":"series<flags>-dataLabels--style","fullname":"series<flags>.dataLabels.style","title":"style","parent":"series<flags>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<column>-dataLabels--style","fullname":"series<column>.dataLabels.style","title":"style","parent":"series<column>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","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 <code>div</code>. 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<pre>style: {\n\tfontFamily: '\"Lucida Grande\", \"Lucida Sans Unicode\", Verdana, Arial, Helvetica, sans-serif', // default font\n\tfontSize: '12px'\n}</pre>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/style/\" target=\"_blank\">Using a serif type font</a>"},{"name":"legend-title--style","fullname":"legend.title.style","title":"style","parent":"legend-title","isParent":false,"returnType":"CSSObject","defaults":"{\"fontWeight\":\"bold\"}","since":"1.3","description":"Generic CSS styles for the legend title.","deprecated":false},{"name":"xAxis-plotLines-label--style","fullname":"xAxis.plotLines.label.style","title":"style","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Object","defaults":"","description":"CSS styles for the text label."},{"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 <code>position: \"absolute\"</code> and  left and top properties.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-style\" target=\"_blank\">Custom color and weight</a>","deprecated":false},{"name":"series<polygon>-dataLabels--style","fullname":"series<polygon>.dataLabels.style","title":"style","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"yAxis-plotLines-label--style","fullname":"yAxis.plotLines.label.style","title":"style","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Object","defaults":"","description":"CSS styles for the text label."},{"name":"plotOptions-ohlc-dataLabels--style","fullname":"plotOptions.ohlc.dataLabels.style","title":"style","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<flags>--style","fullname":"series<flags>.style","title":"style","parent":"series<flags>","isParent":false,"returnType":"CSSObject","defaults":"","description":"The text styles of the flag. Defaults to:\n<pre>style: {\n\tfontSize: '11px',\n\tfontWeight: 'bold',\n\ttextAlign: 'center'\n}</pre>"},{"name":"plotOptions-candlestick-dataLabels--style","fullname":"plotOptions.candlestick.dataLabels.style","title":"style","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"xAxis-plotBands-label--style","fullname":"xAxis.plotBands.label.style","title":"style","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Object","defaults":"","description":"CSS styles for the text label."},{"name":"series<line>-dataLabels--style","fullname":"series<line>.dataLabels.style","title":"style","parent":"series<line>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"series<ohlc>-dataLabels--style","fullname":"series<ohlc>.dataLabels.style","title":"style","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"CSSObject","defaults":"{\"color\": \"contrast\", \"fontSize\": \"11px\", \"fontWeight\": \"bold\"; \"textShadow\": \"0 0 6px contrast, 0 0 3px contrast\" }","description":"Styles for the label.","deprecated":false},{"name":"xAxis-crosshair-label--style","fullname":"xAxis.crosshair.label.style","title":"style","parent":"xAxis-crosshair-label","isParent":false,"returnType":"CSS","context":"","defaults":"{ \"color\": \"white\", \"fontWeight\": \"normal\", \"fontSize\": \"11px\", \"textAlign\": \"center\" }","values":"","since":"2.1","description":"Text styles for the crosshair label.","demo":"","seeAlso":"","deprecated":false},{"name":"subtitle","fullname":"subtitle","title":"subtitle","isParent":true,"description":"The chart's subtitle"},{"name":"series<line>-states-hover-marker--symbol","fullname":"series<line>.states.hover.marker.symbol","title":"symbol","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<areaspline>-states-hover-marker--symbol","fullname":"series<areaspline>.states.hover.marker.symbol","title":"symbol","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<ohlc>-states-hover-marker--symbol","fullname":"series<ohlc>.states.hover.marker.symbol","title":"symbol","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<scatter>-states-hover-marker--symbol","fullname":"series<scatter>.states.hover.marker.symbol","title":"symbol","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<area>-states-hover-marker--symbol","fullname":"series<area>.states.hover.marker.symbol","title":"symbol","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-series-marker--symbol","fullname":"plotOptions.series.marker.symbol","title":"symbol","parent":"plotOptions-series-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<areaspline>-marker--symbol","fullname":"series<areaspline>.marker.symbol","title":"symbol","parent":"series<areaspline>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover-marker--symbol","fullname":"plotOptions.ohlc.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<flags>-states-hover-marker--symbol","fullname":"series<flags>.states.hover.marker.symbol","title":"symbol","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<line>-data-marker--symbol","fullname":"series<line>.data.marker.symbol","title":"symbol","parent":"series<line>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<line>-marker--symbol","fullname":"series<line>.marker.symbol","title":"symbol","parent":"series<line>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<area>-marker--symbol","fullname":"series<area>.marker.symbol","title":"symbol","parent":"series<area>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<arearange>-states-hover-marker--symbol","fullname":"series<arearange>.states.hover.marker.symbol","title":"symbol","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<areasplinerange>-states-hover-marker--symbol","fullname":"series<areasplinerange>.states.hover.marker.symbol","title":"symbol","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover-marker--symbol","fullname":"plotOptions.candlestick.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<areaspline>-data-marker--symbol","fullname":"series<areaspline>.data.marker.symbol","title":"symbol","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<spline>-states-hover-marker--symbol","fullname":"series<spline>.states.hover.marker.symbol","title":"symbol","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<area>-data-marker--symbol","fullname":"series<area>.data.marker.symbol","title":"symbol","parent":"series<area>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-scatter-marker--symbol","fullname":"plotOptions.scatter.marker.symbol","title":"symbol","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-polygon-marker--symbol","fullname":"plotOptions.polygon.marker.symbol","title":"symbol","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<polygon>-states-hover-marker--symbol","fullname":"series<polygon>.states.hover.marker.symbol","title":"symbol","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-line-marker--symbol","fullname":"plotOptions.line.marker.symbol","title":"symbol","parent":"plotOptions-line-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<scatter>-marker--symbol","fullname":"series<scatter>.marker.symbol","title":"symbol","parent":"series<scatter>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<columnrange>-states-hover-marker--symbol","fullname":"series<columnrange>.states.hover.marker.symbol","title":"symbol","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<spline>-marker--symbol","fullname":"series<spline>.marker.symbol","title":"symbol","parent":"series<spline>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<spline>-data-marker--symbol","fullname":"series<spline>.data.marker.symbol","title":"symbol","parent":"series<spline>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-areaspline-marker--symbol","fullname":"plotOptions.areaspline.marker.symbol","title":"symbol","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<polygon>-marker--symbol","fullname":"series<polygon>.marker.symbol","title":"symbol","parent":"series<polygon>-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-area-marker--symbol","fullname":"plotOptions.area.marker.symbol","title":"symbol","parent":"plotOptions-area-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<polygon>-data-marker--symbol","fullname":"series<polygon>.data.marker.symbol","title":"symbol","parent":"series<polygon>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<candlestick>-states-hover-marker--symbol","fullname":"series<candlestick>.states.hover.marker.symbol","title":"symbol","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"series<column>-states-hover-marker--symbol","fullname":"series<column>.states.hover.marker.symbol","title":"symbol","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","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\"]","description":"The symbol for the button. Points to a definition function in the \r <code>Highcharts.Renderer.symbols</code> collection. The default\r <code>exportIcon</code> function is part of the exporting module.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-contextbutton-symbol/\" target=\"_blank\">Use a circle for symbol</a>","deprecated":false},{"name":"series<scatter>-data-marker--symbol","fullname":"series<scatter>.data.marker.symbol","title":"symbol","parent":"series<scatter>-data-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-flags-states-hover-marker--symbol","fullname":"plotOptions.flags.states.hover.marker.symbol","title":"symbol","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"plotOptions-spline-marker--symbol","fullname":"plotOptions.spline.marker.symbol","title":"symbol","parent":"plotOptions-spline-marker","isParent":false,"returnType":"String","defaults":"null","values":"[null, \"circle\", \"square\", \"diamond\", \"triangle\", \"triangle-down\"]","description":"<p>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\".</p>\r\n\r\n<p>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.</p>\r\n\r\n<p>Custom callbacks for symbol path generation can also be added to <code>Highcharts.SVGRenderer.prototype.symbols</code>. The callback is then used by its method name, as shown in the demo.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-symbol/\" target=\"_blank\">Predefined, graphic and custom markers</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolFill","fullname":"navigation.buttonOptions.symbolFill","title":"symbolFill","parent":"navigation-buttonOptions","isParent":false,"returnType":"Color","defaults":"#E0E0E0","description":"Fill color for the symbol within the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-symbolfill/\" target=\"_blank\">Blue symbol stroke for one of the buttons</a>","deprecated":false},{"name":"exporting-buttons-contextButton--symbolFill","fullname":"exporting.buttons.contextButton.symbolFill","title":"symbolFill","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"#A8BF77","description":"See <a class=\"internal\" href=\"#navigation.buttonOptions\">navigation.buttonOptions</a> =&gt; 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."},{"name":"legend--symbolRadius","fullname":"legend.symbolRadius","title":"symbolRadius","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","description":"The border radius of the symbol for series types that use a rectangle in the legend.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/legend/symbolradius/\" target=\"_blank\">Round symbols</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolSize","fullname":"navigation.buttonOptions.symbolSize","title":"symbolSize","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"14","description":"The pixel size of the symbol on the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"exporting-buttons-contextButton--symbolSize","fullname":"exporting.buttons.contextButton.symbolSize","title":"symbolSize","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"14","description":"The pixel size of the symbol on the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolStroke","fullname":"navigation.buttonOptions.symbolStroke","title":"symbolStroke","parent":"navigation-buttonOptions","isParent":false,"returnType":"Color","defaults":"#666","description":"The color of the symbol's stroke or line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-symbolstroke/\" target=\"_blank\">Blue symbol stroke</a>","deprecated":false},{"name":"exporting-buttons-contextButton--symbolStroke","fullname":"exporting.buttons.contextButton.symbolStroke","title":"symbolStroke","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Color","defaults":"#666","description":"The color of the symbol's stroke or line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-symbolstroke/\" target=\"_blank\">Blue symbol stroke</a>","deprecated":false},{"name":"exporting-buttons-contextButton--symbolStrokeWidth","fullname":"exporting.buttons.contextButton.symbolStrokeWidth","title":"symbolStrokeWidth","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel stroke width of the symbol on the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolStrokeWidth","fullname":"navigation.buttonOptions.symbolStrokeWidth","title":"symbolStrokeWidth","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"1","description":"The pixel stroke width of the symbol on the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"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.","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","description":"The x position of the center of the symbol inside the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolX","fullname":"navigation.buttonOptions.symbolX","title":"symbolX","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"12.5","description":"The x position of the center of the symbol inside the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","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","description":"The y position of the center of the symbol inside the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"navigation-buttonOptions--symbolY","fullname":"navigation.buttonOptions.symbolY","title":"symbolY","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"10.5","description":"The y position of the center of the symbol inside the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"subtitle--text","fullname":"subtitle.text","title":"text","parent":"subtitle","isParent":false,"returnType":"String","description":"The subtitle of the chart.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-text\" target=\"_blank\">Custom subtitle</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-text-formatted\" target=\"_blank\">formatted and linked text.</a>","deprecated":false},{"name":"xAxis-title--text","fullname":"xAxis.title.text","title":"text","parent":"xAxis-title","isParent":false,"returnType":"String","defaults":"null","description":"The actual text of the axis title. It can contain basic HTML text markup like &lt;b&gt;, &lt;i&gt; and spans with style.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/title-text/\" target=\"_blank\">Titles for both axes</a>"},{"name":"credits--text","fullname":"credits.text","title":"text","parent":"credits","isParent":false,"returnType":"String","defaults":"Highcharts.com","description":"The text for the credits label.","deprecated":false},{"name":"legend-title--text","fullname":"legend.title.text","title":"text","parent":"legend-title","isParent":false,"returnType":"String","defaults":"null","values":"","since":"1.3","description":"A text or HTML string for the title. ","demo":"","seeAlso":"","deprecated":false},{"name":"title--text","fullname":"title.text","title":"text","parent":"title","isParent":false,"returnType":"String","defaults":"null","description":"The title of the chart. To disable the title, set the <code>text</code> to <code>null</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-text/\" target=\"_blank\">Custom title</a>"},{"name":"series<flags>-data--text","fullname":"series<flags>.data.text","title":"text","parent":"series<flags>-data","isParent":false,"returnType":"String","description":"The longer text to be shown in the flag's tooltip."},{"name":"exporting-buttons-contextButton--text","fullname":"exporting.buttons.contextButton.text","title":"text","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"String","defaults":"null","values":"","since":"1.3","description":"A text string to add to the individual button. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-text/\" target=\"_blank\">Full text button</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-text-symbol/\" target=\"_blank\">combined symbol and text</a> ","seeAlso":"","deprecated":false},{"name":"navigation-buttonOptions--text","fullname":"navigation.buttonOptions.text","title":"text","parent":"navigation-buttonOptions","isParent":false,"returnType":"String","defaults":"null","values":"","since":"1.3","description":"A text string to add to the individual button. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-text/\" target=\"_blank\">Full text button</a>, <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/buttons-text-symbol/\" target=\"_blank\">combined symbol and text</a> ","seeAlso":"","deprecated":false},{"name":"yAxis-title--text","fullname":"yAxis.title.text","title":"text","parent":"yAxis-title","isParent":false,"returnType":"String","defaults":"null","description":"The actual text of the axis title. It can contain basic HTML text markup like &lt;b&gt;, &lt;i&gt; and spans with style.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/title-text/\" target=\"_blank\">Titles for both axes</a>"},{"name":"xAxis-plotBands-label--textAlign","fullname":"xAxis.plotBands.label.textAlign","title":"textAlign","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"","description":"The text alignment for the label. While <code>align</code> determines where the texts anchor point is placed within the plot band, <code>textAlign</code> determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the <code>align</code> option."},{"name":"xAxis-plotLines-label--textAlign","fullname":"xAxis.plotLines.label.textAlign","title":"textAlign","parent":"xAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"","description":"The text alignment for the label. While <code>align</code> determines where the texts anchor point is placed within the plot band, <code>textAlign</code> determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the <code>align</code> option."},{"name":"yAxis-plotLines-label--textAlign","fullname":"yAxis.plotLines.label.textAlign","title":"textAlign","parent":"yAxis-plotLines-label","isParent":false,"returnType":"String","defaults":"","description":"The text alignment for the label. While <code>align</code> determines where the texts anchor point is placed within the plot band, <code>textAlign</code> determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the <code>align</code> option."},{"name":"yAxis-plotBands-label--textAlign","fullname":"yAxis.plotBands.label.textAlign","title":"textAlign","parent":"yAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"","description":"The text alignment for the label. While <code>align</code> determines where the texts anchor point is placed within the plot band, <code>textAlign</code> determines how the text is aligned against its anchor point. Possible values are \"left\", \"center\" and \"right\". Defaults to the same as the <code>align</code> option."},{"name":"navigation-buttonOptions--theme","fullname":"navigation.buttonOptions.theme","title":"theme","parent":"navigation-buttonOptions","isParent":false,"returnType":"Object","defaults":"","values":"","since":"1.3","description":"A configuration object for the button theme. The object accepts SVG properties like <code>stroke-width</code>, <code>stroke</code> and <code>fill</code>. Tri-state button styles are supported by the <code>states.hover</code> and <code>states.select</code> objects.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-theme/\" target=\"_blank\">Theming the buttons</a>","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":"1.3","description":"A configuration object for the button theme. The object accepts SVG properties like <code>stroke-width</code>, <code>stroke</code> and <code>fill</code>. Tri-state button styles are supported by the <code>states.hover</code> and <code>states.select</code> objects.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-theme/\" target=\"_blank\">Theming the buttons</a>","seeAlso":"","deprecated":false},{"name":"lang--thousandsSep","fullname":"lang.thousandsSep","title":"thousandsSep","parent":"lang","isParent":false,"returnType":"String","defaults":" ","description":"The default thousands separator used in the <code>Highcharts.numberFormat</code> 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":"plotOptions-scatter--threshold","fullname":"plotOptions.scatter.threshold","title":"threshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<scatter>--threshold","fullname":"series<scatter>.threshold","title":"threshold","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<candlestick>--threshold","fullname":"series<candlestick>.threshold","title":"threshold","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-area--threshold","fullname":"plotOptions.area.threshold","title":"threshold","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If <code>null</code>, the area behaves like a line series with fill between the graph and the Y axis minimum."},{"name":"plotOptions-flags--threshold","fullname":"plotOptions.flags.threshold","title":"threshold","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<line>--threshold","fullname":"series<line>.threshold","title":"threshold","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<column>--threshold","fullname":"series<column>.threshold","title":"threshold","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<area>--threshold","fullname":"series<area>.threshold","title":"threshold","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If <code>null</code>, the area behaves like a line series with fill between the graph and the Y axis minimum."},{"name":"series<ohlc>--threshold","fullname":"series<ohlc>.threshold","title":"threshold","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-series--threshold","fullname":"plotOptions.series.threshold","title":"threshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-areaspline--threshold","fullname":"plotOptions.areaspline.threshold","title":"threshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If <code>null</code>, the area behaves like a line series with fill between the graph and the Y axis minimum."},{"name":"plotOptions-spline--threshold","fullname":"plotOptions.spline.threshold","title":"threshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-candlestick--threshold","fullname":"plotOptions.candlestick.threshold","title":"threshold","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<areaspline>--threshold","fullname":"series<areaspline>.threshold","title":"threshold","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"0","description":"The Y axis value to serve as the base for the area, for distinguishing between values above and below a threshold. If <code>null</code>, the area behaves like a line series with fill between the graph and the Y axis minimum."},{"name":"plotOptions-ohlc--threshold","fullname":"plotOptions.ohlc.threshold","title":"threshold","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<spline>--threshold","fullname":"series<spline>.threshold","title":"threshold","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-line--threshold","fullname":"plotOptions.line.threshold","title":"threshold","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"plotOptions-column--threshold","fullname":"plotOptions.column.threshold","title":"threshold","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"series<flags>--threshold","fullname":"series<flags>.threshold","title":"threshold","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"0","description":"The threshold, also called zero level or base level. For line type series this is only used in conjunction with <a href=\"#plotOptions.series.negativeColor\">negativeColor</a>.","seeAlso":"<a href=\"#plotOptions.series.softThreshold\">softThreshold</a>.","deprecated":false},{"name":"yAxis--tickAmount","fullname":"yAxis.tickAmount","title":"tickAmount","parent":"yAxis","isParent":false,"returnType":"Number","since":"2.1.0","description":"<p>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 <code>tickPixelInterval</code> option.</p>\r\n<p>This option only has an effect on linear axes. Datetime, logarithmic or category axes are not affected.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/tickamount/\" target=\"_blank\">8 ticks on Y axis</a>","deprecated":false},{"name":"xAxis--tickAmount","fullname":"xAxis.tickAmount","title":"tickAmount","parent":"xAxis","isParent":false,"returnType":"Number","since":"2.1.0","description":"<p>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 <code>tickPixelInterval</code> option.</p>\r\n<p>This option only has an effect on linear axes. Datetime, logarithmic or category axes are not affected.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/yaxis/tickamount/\" target=\"_blank\">8 ticks on Y axis</a>","deprecated":false},{"name":"xAxis--tickColor","fullname":"xAxis.tickColor","title":"tickColor","parent":"xAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"Color for the main tick marks.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"name":"yAxis--tickColor","fullname":"yAxis.tickColor","title":"tickColor","parent":"yAxis","isParent":false,"returnType":"Color","defaults":"#C0D0E0","description":"Color for the main tick marks.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"name":"yAxis--tickInterval","fullname":"yAxis.tickInterval","title":"tickInterval","parent":"yAxis","isParent":false,"returnType":"Mixed","defaults":"null","description":"<p>The interval of the tick marks in axis units. When <code>null</code>, the tick interval is computed to approximately follow the tickPixelInterval on linear and datetime axes. On categorized axes, a <code>null</code> tickInterval will default to 1, one category.  Note that datetime axes are based on milliseconds, so for  example an interval of one day is expressed as <code>24 * 3600 * 1000</code>.</p>\r\n<p>If the tickInterval is too dense for labels to be drawn, Highcharts may remove ticks.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/tickinterval/\" target=\"_blank\">Tick interval of 0.01 on Y axis</a>","deprecated":false},{"name":"xAxis--tickInterval","fullname":"xAxis.tickInterval","title":"tickInterval","parent":"xAxis","isParent":false,"returnType":"Mixed","defaults":"null","description":"<p>The interval of the tick marks in axis units. When <code>null</code>, the tick interval is computed to approximately follow the tickPixelInterval on linear and datetime axes. On categorized axes, a <code>null</code> tickInterval will default to 1, one category.  Note that datetime axes are based on milliseconds, so for  example an interval of one day is expressed as <code>24 * 3600 * 1000</code>.</p>\r\n<p>If the tickInterval is too dense for labels to be drawn, Highcharts may remove ticks.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/tickinterval/\" target=\"_blank\">Tick interval of 0.01 on Y axis</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>","deprecated":false},{"name":"xAxis--tickPixelInterval","fullname":"xAxis.tickPixelInterval","title":"tickPixelInterval","parent":"xAxis","isParent":false,"returnType":"Number","defaults":"","description":"If tickInterval is <code>null</code> this option sets the approximate pixel interval of the tick marks. Not applicable to categorized axis. Defaults to <code>72</code>  for the Y axis and <code>100</code> for\tthe X axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/tickpixelinterval/\" target=\"_blank\">200 px on X axis</a>"},{"name":"yAxis--tickPixelInterval","fullname":"yAxis.tickPixelInterval","title":"tickPixelInterval","parent":"yAxis","isParent":false,"returnType":"Number","defaults":"","description":"If tickInterval is <code>null</code> this option sets the approximate pixel interval of the tick marks. Not applicable to categorized axis. Defaults to <code>72</code>  for the Y axis and <code>100</code> for\tthe X axis.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/tickpixelinterval/\" target=\"_blank\">200 px on X axis</a>"},{"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 <code>inside</code> and <code>outside</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"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 <code>inside</code> and <code>outside</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"name":"xAxis--tickPositioner","fullname":"xAxis.tickPositioner","title":"tickPositioner","parent":"xAxis","isParent":false,"returnType":"Function","since":"1.1","description":"A callback function to compute on what values the ticks should be placed. Returns an array of numbers. The <code>min</code> and <code>max</code> of the axis are passed in as the first and second parameter. Options like <code>tickInterval</code> can be accessed by  <code>this.options.tickInterval</code>. The automatic tick positions are accessible through <code>this.tickPositions</code> and can be modified by the callback.Note that in stock charts, the last label is hidden by  default by the <code>showLastLabel</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/tickpositions-tickpositioner/\" target=\"_blank\">Demo of tickPositions and tickPositioner</a>","deprecated":false},{"name":"yAxis--tickPositioner","fullname":"yAxis.tickPositioner","title":"tickPositioner","parent":"yAxis","isParent":false,"returnType":"Function","since":"1.1","description":"A callback function to compute on what values the ticks should be placed. Returns an array of numbers. The <code>min</code> and <code>max</code> of the axis are passed in as the first and second parameter. Options like <code>tickInterval</code> can be accessed by  <code>this.options.tickInterval</code>. The automatic tick positions are accessible through <code>this.tickPositions</code> and can be modified by the callback.Note that in stock charts, the last label is hidden by  default by the <code>showLastLabel</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/tickpositions-tickpositioner/\" target=\"_blank\">Demo of tickPositions and tickPositioner</a>","deprecated":false},{"name":"yAxis--tickPositions","fullname":"yAxis.tickPositions","title":"tickPositions","parent":"yAxis","isParent":false,"returnType":"Array<Number>","since":"1.1","description":"A collection of hard coded tick value positions. This overrides the auto computed positions based on tickInterval and tickPixelInterval. See also <code>tickPositioner</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/tickpositions-tickpositioner/\" target=\"_blank\">Demo of tickPositions and tickPositioner</a>","deprecated":false},{"name":"xAxis--tickPositions","fullname":"xAxis.tickPositions","title":"tickPositions","parent":"xAxis","isParent":false,"returnType":"Array<Number>","since":"1.1","description":"A collection of hard coded tick value positions. This overrides the auto computed positions based on tickInterval and tickPixelInterval. See also <code>tickPositioner</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/tickpositions-tickpositioner/\" target=\"_blank\">Demo of tickPositions and tickPositioner</a>","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/ticks/\" target=\"_blank\">Formatted ticks on X axis</a>"},{"name":"global--timezoneOffset","fullname":"global.timezoneOffset","title":"timezoneOffset","parent":"global","isParent":false,"returnType":"Number","defaults":"0","since":"1.3.8","description":"The timezone offset in minutes. Positive values are west, negative values are east of UTC, as in the ECMAScript <a href=\"https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset\">getTimezoneOffset</a> method. Use this to display UTC based data in a predefined time zone. ","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/global/timezoneoffset/\" target=\"_blank\">Timezone offset</a>","seeAlso":"<a href=\"#global.getTimezoneOffset\">global.getTimezoneOffset</a>","deprecated":false},{"name":"yAxis-title","fullname":"yAxis.title","title":"title","parent":"yAxis","isParent":true},{"name":"series<flags>-data--title","fullname":"series<flags>.data.title","title":"title","parent":"series<flags>-data","isParent":false,"returnType":"String","description":"The short text to be shown on the flag."},{"name":"title","fullname":"title","title":"title","isParent":true,"description":"The chart's main title."},{"name":"series<flags>--title","fullname":"series<flags>.title","title":"title","parent":"series<flags>","isParent":false,"returnType":"Text","defaults":"\"A\"","description":"The text to display on each flag. This can be defined on series level, or  individually for each point. Defaults to <code>\"A\"</code>."},{"name":"plotOptions-flags--title","fullname":"plotOptions.flags.title","title":"title","parent":"plotOptions-flags","isParent":false,"returnType":"Text","defaults":"\"A\"","description":"The text to display on each flag. This can be defined on series level, or  individually for each point. Defaults to <code>\"A\"</code>."},{"name":"legend-title","fullname":"legend.title","title":"title","parent":"legend","isParent":true,"returnType":"Object","defaults":"","values":"","since":"1.3","description":"A title to be added on top of the legend","demo":"","seeAlso":"","deprecated":false},{"name":"xAxis-title","fullname":"xAxis.title","title":"title","parent":"xAxis","isParent":true,"description":"The axis title, showing next to the axis line."},{"name":"xAxis-plotBands--to","fullname":"xAxis.plotBands.to","title":"to","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","description":"The end position of the plot band in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"name":"yAxis-breaks--to","fullname":"yAxis.breaks.to","title":"to","parent":"yAxis-breaks","isParent":false,"returnType":"Number","since":"2.1.0","description":"The point where the break ends.","deprecated":false},{"name":"xAxis-breaks--to","fullname":"xAxis.breaks.to","title":"to","parent":"xAxis-breaks","isParent":false,"returnType":"Number","since":"2.1.0","description":"The point where the break ends.","deprecated":false},{"name":"yAxis-plotBands--to","fullname":"yAxis.plotBands.to","title":"to","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","description":"The end position of the plot band in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands/\" target=\"_blank\">Plot band on Y axis</a>"},{"name":"plotOptions-series-tooltip","fullname":"plotOptions.series.tooltip","title":"tooltip","parent":"plotOptions-series","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-column-tooltip","fullname":"plotOptions.column.tooltip","title":"tooltip","parent":"plotOptions-column","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<column>-tooltip","fullname":"series<column>.tooltip","title":"tooltip","parent":"series<column>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-tooltip","fullname":"series<line>.tooltip","title":"tooltip","parent":"series<line>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<ohlc>-tooltip","fullname":"series<ohlc>.tooltip","title":"tooltip","parent":"series<ohlc>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-flags-tooltip","fullname":"plotOptions.flags.tooltip","title":"tooltip","parent":"plotOptions-flags","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"Specific tooltip options for flag series. Flag series tooltips are different from most other types in that a flag doesn't have a data value, so the tooltip rather displays the <code>text</code> option for each point.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-area-tooltip","fullname":"plotOptions.area.tooltip","title":"tooltip","parent":"plotOptions-area","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<spline>-tooltip","fullname":"series<spline>.tooltip","title":"tooltip","parent":"series<spline>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-tooltip","fullname":"plotOptions.ohlc.tooltip","title":"tooltip","parent":"plotOptions-ohlc","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-scatter--tooltip","fullname":"plotOptions.scatter.tooltip","title":"tooltip","parent":"plotOptions-scatter","isParent":false,"returnType":"Object","defaults":"{}","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a class=\"internal\">#tooltip</a>. Overridable properties are <code>headerFormat</code>, <code>pointFormat</code>, <code>yDecimals</code>, <code>xDateFormat</code>, <code>yPrefix</code> and <code>ySuffix</code>.  Unlike other series, in a scatter plot the series.name by default shows in the headerFormat  and poin.x and point.y in the pointFormat."},{"name":"series<scatter>--tooltip","fullname":"series<scatter>.tooltip","title":"tooltip","parent":"series<scatter>","isParent":false,"returnType":"Object","defaults":"{}","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a class=\"internal\">#tooltip</a>. Overridable properties are <code>headerFormat</code>, <code>pointFormat</code>, <code>yDecimals</code>, <code>xDateFormat</code>, <code>yPrefix</code> and <code>ySuffix</code>.  Unlike other series, in a scatter plot the series.name by default shows in the headerFormat  and poin.x and point.y in the pointFormat."},{"name":"series<columnrange>-tooltip","fullname":"series<columnrange>.tooltip","title":"tooltip","parent":"series<columnrange>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-arearange-tooltip","fullname":"plotOptions.arearange.tooltip","title":"tooltip","parent":"plotOptions-arearange","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areaspline>-tooltip","fullname":"series<areaspline>.tooltip","title":"tooltip","parent":"series<areaspline>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-tooltip","fullname":"series<flags>.tooltip","title":"tooltip","parent":"series<flags>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"Specific tooltip options for flag series. Flag series tooltips are different from most other types in that a flag doesn't have a data value, so the tooltip rather displays the <code>text</code> option for each point.","demo":"","seeAlso":"","deprecated":false},{"name":"series<polygon>--tooltip","fullname":"series<polygon>.tooltip","title":"tooltip","parent":"series<polygon>","isParent":false,"returnType":"Object","defaults":"{}","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a class=\"internal\">#tooltip</a>. Overridable properties are <code>headerFormat</code>, <code>pointFormat</code>, <code>yDecimals</code>, <code>xDateFormat</code>, <code>yPrefix</code> and <code>ySuffix</code>.  Unlike other series, in a scatter plot the series.name by default shows in the headerFormat  and poin.x and point.y in the pointFormat."},{"name":"plotOptions-polygon--tooltip","fullname":"plotOptions.polygon.tooltip","title":"tooltip","parent":"plotOptions-polygon","isParent":false,"returnType":"Object","defaults":"{}","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a class=\"internal\">#tooltip</a>. Overridable properties are <code>headerFormat</code>, <code>pointFormat</code>, <code>yDecimals</code>, <code>xDateFormat</code>, <code>yPrefix</code> and <code>ySuffix</code>.  Unlike other series, in a scatter plot the series.name by default shows in the headerFormat  and poin.x and point.y in the pointFormat."},{"name":"plotOptions-areaspline-tooltip","fullname":"plotOptions.areaspline.tooltip","title":"tooltip","parent":"plotOptions-areaspline","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-line-tooltip","fullname":"plotOptions.line.tooltip","title":"tooltip","parent":"plotOptions-line","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-tooltip","fullname":"plotOptions.candlestick.tooltip","title":"tooltip","parent":"plotOptions-candlestick","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<area>-tooltip","fullname":"series<area>.tooltip","title":"tooltip","parent":"series<area>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-spline-tooltip","fullname":"plotOptions.spline.tooltip","title":"tooltip","parent":"plotOptions-spline","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip","fullname":"plotOptions.areasplinerange.tooltip","title":"tooltip","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<candlestick>-tooltip","fullname":"series<candlestick>.tooltip","title":"tooltip","parent":"series<candlestick>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-tooltip","fullname":"series<areasplinerange>.tooltip","title":"tooltip","parent":"series<areasplinerange>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","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-columnrange-tooltip","fullname":"plotOptions.columnrange.tooltip","title":"tooltip","parent":"plotOptions-columnrange","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"series<arearange>-tooltip","fullname":"series<arearange>.tooltip","title":"tooltip","parent":"series<arearange>","isParent":true,"returnType":"Object","defaults":"","values":"","since":"","description":"A configuration object for the tooltip rendering of each single series. Properties are inherited from <a href=\"#tooltip\">tooltip</a>, but only the following properties can be defined on a series level.","demo":"","seeAlso":"","deprecated":false},{"name":"yAxis--top","fullname":"yAxis.top","title":"top","parent":"yAxis","isParent":false,"returnType":"Number|String","defaults":"null","description":"<p>The top position of the Y axis. If it's a number, it is interpreted as pixel position relative to the chart.</p>\r\n<p>Since Highstock 2: If it's a percentage string, it is interpreted as percentages of the plot height, offset from plot area top.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/candlestick-and-volume/\" target=\"_blank\">Percentage height panes</a>","seeAlso":"<a href=\"#yAxis.height\">yAxis.height</a>","deprecated":false},{"name":"scrollbar--trackBackgroundColor","fullname":"scrollbar.trackBackgroundColor","title":"trackBackgroundColor","parent":"scrollbar","isParent":false,"returnType":"Color","defaults":"#eeeeee","description":"The color of the track background.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--trackBorderColor","fullname":"scrollbar.trackBorderColor","title":"trackBorderColor","parent":"scrollbar","isParent":false,"defaults":"#eeeeee","description":"The color of the border of the scrollbar track.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>","deprecated":false},{"name":"scrollbar--trackBorderRadius","fullname":"scrollbar.trackBorderRadius","title":"trackBorderRadius","parent":"scrollbar","isParent":false,"returnType":"Number","defaults":"0","description":"The corner radius of the border of the scrollbar track.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>"},{"name":"scrollbar--trackBorderWidth","fullname":"scrollbar.trackBorderWidth","title":"trackBorderWidth","parent":"scrollbar","isParent":false,"returnType":"#CCC","defaults":"1","description":"The width of the border of the scrollbar track.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/scrollbar/style/\" target=\"_blank\">Scrollbar styling</a>"},{"name":"series<area>--trackByArea","fullname":"series<area>.trackByArea","title":"trackByArea","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2.4","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/area-trackbyarea/\" target=\"_blank\">Display the tooltip when the\n\t\t\t\tarea is hovered</a>"},{"name":"series<areaspline>--trackByArea","fullname":"series<areaspline>.trackByArea","title":"trackByArea","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2.4","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/area-trackbyarea/\" target=\"_blank\">Display the tooltip when the\n\t\t\t\tarea is hovered</a>"},{"name":"plotOptions-areaspline--trackByArea","fullname":"plotOptions.areaspline.trackByArea","title":"trackByArea","parent":"plotOptions-areaspline","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2.4","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/area-trackbyarea/\" target=\"_blank\">Display the tooltip when the\n\t\t\t\tarea is hovered</a>"},{"name":"plotOptions-areasplinerange--trackByArea","fullname":"plotOptions.areasplinerange.trackByArea","title":"trackByArea","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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-arearange--trackByArea","fullname":"plotOptions.arearange.trackByArea","title":"trackByArea","parent":"plotOptions-arearange","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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-area--trackByArea","fullname":"plotOptions.area.trackByArea","title":"trackByArea","parent":"plotOptions-area","isParent":false,"returnType":"Boolean","defaults":"false","since":"2.2.4","description":"Whether the whole area or just the line should respond to mouseover tooltips and other mouse or touch events.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/area-trackbyarea/\" target=\"_blank\">Display the tooltip when the\n\t\t\t\tarea is hovered</a>"},{"name":"series<arearange>--trackByArea","fullname":"series<arearange>.trackByArea","title":"trackByArea","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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<areasplinerange>--trackByArea","fullname":"series<areasplinerange>.trackByArea","title":"trackByArea","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"true","since":"1.2.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-areasplinerange--turboThreshold","fullname":"plotOptions.areasplinerange.turboThreshold","title":"turboThreshold","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<column>--turboThreshold","fullname":"series<column>.turboThreshold","title":"turboThreshold","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<spline>--turboThreshold","fullname":"series<spline>.turboThreshold","title":"turboThreshold","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-spline--turboThreshold","fullname":"plotOptions.spline.turboThreshold","title":"turboThreshold","parent":"plotOptions-spline","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<area>--turboThreshold","fullname":"series<area>.turboThreshold","title":"turboThreshold","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-scatter--turboThreshold","fullname":"plotOptions.scatter.turboThreshold","title":"turboThreshold","parent":"plotOptions-scatter","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-series--turboThreshold","fullname":"plotOptions.series.turboThreshold","title":"turboThreshold","parent":"plotOptions-series","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-line--turboThreshold","fullname":"plotOptions.line.turboThreshold","title":"turboThreshold","parent":"plotOptions-line","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<polygon>--turboThreshold","fullname":"series<polygon>.turboThreshold","title":"turboThreshold","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-ohlc--turboThreshold","fullname":"plotOptions.ohlc.turboThreshold","title":"turboThreshold","parent":"plotOptions-ohlc","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<line>--turboThreshold","fullname":"series<line>.turboThreshold","title":"turboThreshold","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<scatter>--turboThreshold","fullname":"series<scatter>.turboThreshold","title":"turboThreshold","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-column--turboThreshold","fullname":"plotOptions.column.turboThreshold","title":"turboThreshold","parent":"plotOptions-column","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-polygon--turboThreshold","fullname":"plotOptions.polygon.turboThreshold","title":"turboThreshold","parent":"plotOptions-polygon","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-arearange--turboThreshold","fullname":"plotOptions.arearange.turboThreshold","title":"turboThreshold","parent":"plotOptions-arearange","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-columnrange--turboThreshold","fullname":"plotOptions.columnrange.turboThreshold","title":"turboThreshold","parent":"plotOptions-columnrange","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<areasplinerange>--turboThreshold","fullname":"series<areasplinerange>.turboThreshold","title":"turboThreshold","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<candlestick>--turboThreshold","fullname":"series<candlestick>.turboThreshold","title":"turboThreshold","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<arearange>--turboThreshold","fullname":"series<arearange>.turboThreshold","title":"turboThreshold","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-candlestick--turboThreshold","fullname":"plotOptions.candlestick.turboThreshold","title":"turboThreshold","parent":"plotOptions-candlestick","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<columnrange>--turboThreshold","fullname":"series<columnrange>.turboThreshold","title":"turboThreshold","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-area--turboThreshold","fullname":"plotOptions.area.turboThreshold","title":"turboThreshold","parent":"plotOptions-area","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<ohlc>--turboThreshold","fullname":"series<ohlc>.turboThreshold","title":"turboThreshold","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"plotOptions-areaspline--turboThreshold","fullname":"plotOptions.areaspline.turboThreshold","title":"turboThreshold","parent":"plotOptions-areaspline","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<areaspline>--turboThreshold","fullname":"series<areaspline>.turboThreshold","title":"turboThreshold","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"1000","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 <code>0</code> disable.","deprecated":false},{"name":"series<areaspline>--type","fullname":"series<areaspline>.type","title":"type","parent":"series<areaspline>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<columnrange>--type","fullname":"series<columnrange>.type","title":"type","parent":"series<columnrange>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<ohlc>--type","fullname":"series<ohlc>.type","title":"type","parent":"series<ohlc>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","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\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<spline>--type","fullname":"series<spline>.type","title":"type","parent":"series<spline>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<line>--type","fullname":"series<line>.type","title":"type","parent":"series<line>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<area>--type","fullname":"series<area>.type","title":"type","parent":"series<area>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<scatter>--type","fullname":"series<scatter>.type","title":"type","parent":"series<scatter>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<column>--type","fullname":"series<column>.type","title":"type","parent":"series<column>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<polygon>--type","fullname":"series<polygon>.type","title":"type","parent":"series<polygon>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<arearange>--type","fullname":"series<arearange>.type","title":"type","parent":"series<arearange>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","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\"]","description":"Default MIME type for exporting if <code>chart.exportChart()</code> is called without specifying a <code>type</code> option. Possible values are <code>image/png</code>, <code>image/jpeg</code>, <code>application/pdf</code> and <code>image/svg+xml</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/type/\" target=\"_blank\">Default type set to <code>image/jpeg</code></a>","deprecated":false},{"name":"series<flags>--type","fullname":"series<flags>.type","title":"type","parent":"series<flags>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<areasplinerange>--type","fullname":"series<areasplinerange>.type","title":"type","parent":"series<areasplinerange>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"chart--type","fullname":"chart.type","title":"type","parent":"chart","isParent":false,"returnType":"String","defaults":"line","values":"[\"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The default series type for the chart. Can be any of the chart types listed under <a href=\"#plotOptions\">plotOptions</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/type/\" target=\"_blank\">Areaspline</a>","deprecated":false},{"name":"series<candlestick>--type","fullname":"series<candlestick>.type","title":"type","parent":"series<candlestick>","isParent":false,"returnType":"String","values":"[null, \"line\", \"spline\", \"column\", \"area\", \"areaspline\", \"pie\", \"arearange\", \"areasplinerange\", \"boxplot\", \"bubble\", \"columnrange\", \"errorbar\", \"funnel\", \"gauge\", \"scatter\", \"waterfall\"]","description":"The type of series. Can be one of <code>area</code>, <code>areaspline</code>,\r\n <code>bar</code>, <code>column</code>, <code>line</code>, <code>pie</code>,\r\n <code>scatter</code>, <code>spline</code>, <code>candlestick</code> or <code>ohlc</code>. From version 1.1.7, <code>arearange</code>, <code>areasplinerange</code> and <code>columnrange</code> are supported with the highcharts-more.js component.","deprecated":false},{"name":"series<polygon>-dataGrouping--units","fullname":"series<polygon>.dataGrouping.units","title":"units","parent":"series<polygon>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<candlestick>-dataGrouping--units","fullname":"series<candlestick>.dataGrouping.units","title":"units","parent":"series<candlestick>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<arearange>-dataGrouping--units","fullname":"series<arearange>.dataGrouping.units","title":"units","parent":"series<arearange>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-areaspline-dataGrouping--units","fullname":"plotOptions.areaspline.dataGrouping.units","title":"units","parent":"plotOptions-areaspline-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-arearange-dataGrouping--units","fullname":"plotOptions.arearange.dataGrouping.units","title":"units","parent":"plotOptions-arearange-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"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<pre>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]]</pre>","demo":"","seeAlso":"","deprecated":false},{"name":"plotOptions-candlestick-dataGrouping--units","fullname":"plotOptions.candlestick.dataGrouping.units","title":"units","parent":"plotOptions-candlestick-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-spline-dataGrouping--units","fullname":"plotOptions.spline.dataGrouping.units","title":"units","parent":"plotOptions-spline-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<areaspline>-dataGrouping--units","fullname":"series<areaspline>.dataGrouping.units","title":"units","parent":"series<areaspline>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-scatter-dataGrouping--units","fullname":"plotOptions.scatter.dataGrouping.units","title":"units","parent":"plotOptions-scatter-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<area>-dataGrouping--units","fullname":"series<area>.dataGrouping.units","title":"units","parent":"series<area>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-line-dataGrouping--units","fullname":"plotOptions.line.dataGrouping.units","title":"units","parent":"plotOptions-line-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-columnrange-dataGrouping--units","fullname":"plotOptions.columnrange.dataGrouping.units","title":"units","parent":"plotOptions-columnrange-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-column-dataGrouping--units","fullname":"plotOptions.column.dataGrouping.units","title":"units","parent":"plotOptions-column-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<areasplinerange>-dataGrouping--units","fullname":"series<areasplinerange>.dataGrouping.units","title":"units","parent":"series<areasplinerange>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<columnrange>-dataGrouping--units","fullname":"series<columnrange>.dataGrouping.units","title":"units","parent":"series<columnrange>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<spline>-dataGrouping--units","fullname":"series<spline>.dataGrouping.units","title":"units","parent":"series<spline>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"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<pre>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]]</pre>","demo":"","seeAlso":"","deprecated":false},{"name":"series<line>-dataGrouping--units","fullname":"series<line>.dataGrouping.units","title":"units","parent":"series<line>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-series-dataGrouping--units","fullname":"plotOptions.series.dataGrouping.units","title":"units","parent":"plotOptions-series-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<column>-dataGrouping--units","fullname":"series<column>.dataGrouping.units","title":"units","parent":"series<column>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-area-dataGrouping--units","fullname":"plotOptions.area.dataGrouping.units","title":"units","parent":"plotOptions-area-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<ohlc>-dataGrouping--units","fullname":"series<ohlc>.dataGrouping.units","title":"units","parent":"series<ohlc>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-ohlc-dataGrouping--units","fullname":"plotOptions.ohlc.dataGrouping.units","title":"units","parent":"plotOptions-ohlc-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-areasplinerange-dataGrouping--units","fullname":"plotOptions.areasplinerange.dataGrouping.units","title":"units","parent":"plotOptions-areasplinerange-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"plotOptions-polygon-dataGrouping--units","fullname":"plotOptions.polygon.dataGrouping.units","title":"units","parent":"plotOptions-polygon-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<scatter>-dataGrouping--units","fullname":"series<scatter>.dataGrouping.units","title":"units","parent":"series<scatter>-dataGrouping","isParent":false,"returnType":"Array","defaults":"","description":"An array determining what time intervals the data is allowed to be grouped to. 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:\n<pre>units: [[\n\t'millisecond', // unit name\n\t[1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples\n], [\n\t'second',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'minute',\n\t[1, 2, 5, 10, 15, 30]\n], [\n\t'hour',\n\t[1, 2, 3, 4, 6, 8, 12]\n], [\n\t'day',\n\t[1]\n], [\n\t'week',\n\t[1]\n], [\n\t'month',\n\t[1, 3, 6]\n], [\n\t'year',\n\tnull\n]]</pre>"},{"name":"series<column>-point-events--unselect","fullname":"series<column>.point.events.unselect","title":"unselect","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-data-events--unselect","fullname":"series<scatter>.data.events.unselect","title":"unselect","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-point-events--unselect","fullname":"series<columnrange>.point.events.unselect","title":"unselect","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-data-events--unselect","fullname":"series<arearange>.data.events.unselect","title":"unselect","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-data-events--unselect","fullname":"series<areasplinerange>.data.events.unselect","title":"unselect","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-data-events--unselect","fullname":"series<candlestick>.data.events.unselect","title":"unselect","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-point-events--unselect","fullname":"series<polygon>.point.events.unselect","title":"unselect","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-point-events--unselect","fullname":"series<spline>.point.events.unselect","title":"unselect","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-point-events--unselect","fullname":"series<area>.point.events.unselect","title":"unselect","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-data-events--unselect","fullname":"series<spline>.data.events.unselect","title":"unselect","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-point-events--unselect","fullname":"series<ohlc>.point.events.unselect","title":"unselect","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-point-events--unselect","fullname":"series<areasplinerange>.point.events.unselect","title":"unselect","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-point-events--unselect","fullname":"series<flags>.point.events.unselect","title":"unselect","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-data-events--unselect","fullname":"series<polygon>.data.events.unselect","title":"unselect","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-candlestick-point-events--unselect","fullname":"plotOptions.candlestick.point.events.unselect","title":"unselect","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-data-events--unselect","fullname":"series<area>.data.events.unselect","title":"unselect","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-data-events--unselect","fullname":"series<columnrange>.data.events.unselect","title":"unselect","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-point-events--unselect","fullname":"series<areaspline>.point.events.unselect","title":"unselect","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-point-events--unselect","fullname":"series<arearange>.point.events.unselect","title":"unselect","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-data-events--unselect","fullname":"series<line>.data.events.unselect","title":"unselect","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-data-events--unselect","fullname":"series<flags>.data.events.unselect","title":"unselect","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-data-events--unselect","fullname":"series<column>.data.events.unselect","title":"unselect","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-ohlc-point-events--unselect","fullname":"plotOptions.ohlc.point.events.unselect","title":"unselect","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-flags-point-events--unselect","fullname":"plotOptions.flags.point.events.unselect","title":"unselect","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-point-events--unselect","fullname":"series<candlestick>.point.events.unselect","title":"unselect","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-data-events--unselect","fullname":"series<areaspline>.data.events.unselect","title":"unselect","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-point-events--unselect","fullname":"series<line>.point.events.unselect","title":"unselect","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-point-events--unselect","fullname":"series<scatter>.point.events.unselect","title":"unselect","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-data-events--unselect","fullname":"series<ohlc>.data.events.unselect","title":"unselect","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is unselected either programmatically or following a click on the point. One parameter, <code>event</code>, is passed to the function. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>--upColor","fullname":"series<candlestick>.upColor","title":"upColor","parent":"series<candlestick>","isParent":false,"returnType":"Color","defaults":"\"white\"","description":"The fill color of the candlestick when values are rising. Defaults to <code>\"white\"</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-color/\" target=\"_blank\">Custom colors</a>"},{"name":"plotOptions-candlestick--upColor","fullname":"plotOptions.candlestick.upColor","title":"upColor","parent":"plotOptions-candlestick","isParent":false,"returnType":"Color","defaults":"\"white\"","description":"The fill color of the candlestick when values are rising. Defaults to <code>\"white\"</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-color/\" target=\"_blank\">Custom colors</a>"},{"name":"plotOptions-candlestick--upLineColor","fullname":"plotOptions.candlestick.upLineColor","title":"upLineColor","parent":"plotOptions-candlestick","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"1.3.6","description":"The specific line color for up candle sticks. The default is to inherit the general <code>lineColor</code> setting.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-linecolor/\" target=\"_blank\">Candlestick line colors</a>","seeAlso":"","deprecated":false},{"name":"series<candlestick>--upLineColor","fullname":"series<candlestick>.upLineColor","title":"upLineColor","parent":"series<candlestick>","isParent":false,"returnType":"Color","defaults":"null","values":"","since":"1.3.6","description":"The specific line color for up candle sticks. The default is to inherit the general <code>lineColor</code> setting.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/candlestick-linecolor/\" target=\"_blank\">Candlestick line colors</a>","seeAlso":"","deprecated":false},{"name":"series<area>-data-events--update","fullname":"series<area>.data.events.update","title":"update","parent":"series<area>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-point-events--update","fullname":"series<ohlc>.point.events.update","title":"update","parent":"series<ohlc>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-flags-point-events--update","fullname":"plotOptions.flags.point.events.update","title":"update","parent":"plotOptions-flags-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-candlestick-point-events--update","fullname":"plotOptions.candlestick.point.events.update","title":"update","parent":"plotOptions-candlestick-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-data-events--update","fullname":"series<candlestick>.data.events.update","title":"update","parent":"series<candlestick>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-point-events--update","fullname":"series<spline>.point.events.update","title":"update","parent":"series<spline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-point-events--update","fullname":"series<column>.point.events.update","title":"update","parent":"series<column>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-data-events--update","fullname":"series<polygon>.data.events.update","title":"update","parent":"series<polygon>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-data-events--update","fullname":"series<areaspline>.data.events.update","title":"update","parent":"series<areaspline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-point-events--update","fullname":"series<areasplinerange>.point.events.update","title":"update","parent":"series<areasplinerange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-data-events--update","fullname":"series<columnrange>.data.events.update","title":"update","parent":"series<columnrange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<area>-point-events--update","fullname":"series<area>.point.events.update","title":"update","parent":"series<area>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-data-events--update","fullname":"series<flags>.data.events.update","title":"update","parent":"series<flags>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areaspline>-point-events--update","fullname":"series<areaspline>.point.events.update","title":"update","parent":"series<areaspline>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<ohlc>-data-events--update","fullname":"series<ohlc>.data.events.update","title":"update","parent":"series<ohlc>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-point-events--update","fullname":"series<arearange>.point.events.update","title":"update","parent":"series<arearange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<arearange>-data-events--update","fullname":"series<arearange>.data.events.update","title":"update","parent":"series<arearange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-point-events--update","fullname":"series<line>.point.events.update","title":"update","parent":"series<line>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-data-events--update","fullname":"series<scatter>.data.events.update","title":"update","parent":"series<scatter>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<scatter>-point-events--update","fullname":"series<scatter>.point.events.update","title":"update","parent":"series<scatter>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"plotOptions-ohlc-point-events--update","fullname":"plotOptions.ohlc.point.events.update","title":"update","parent":"plotOptions-ohlc-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<areasplinerange>-data-events--update","fullname":"series<areasplinerange>.data.events.update","title":"update","parent":"series<areasplinerange>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<line>-data-events--update","fullname":"series<line>.data.events.update","title":"update","parent":"series<line>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<column>-data-events--update","fullname":"series<column>.data.events.update","title":"update","parent":"series<column>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<spline>-data-events--update","fullname":"series<spline>.data.events.update","title":"update","parent":"series<spline>-data-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<flags>-point-events--update","fullname":"series<flags>.point.events.update","title":"update","parent":"series<flags>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<polygon>-point-events--update","fullname":"series<polygon>.point.events.update","title":"update","parent":"series<polygon>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<candlestick>-point-events--update","fullname":"series<candlestick>.point.events.update","title":"update","parent":"series<candlestick>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"series<columnrange>-point-events--update","fullname":"series<columnrange>.point.events.update","title":"update","parent":"series<columnrange>-point-events","isParent":false,"returnType":"Function","context":"Point","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","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","description":"Fires when the point is updated programmatically through the <code>.update()</code> method. One parameter, <code>event</code>, is passed to the function. The  new point options can be accessed through <code>event.options</code>. Returning <code>false</code> cancels the operation.","deprecated":false},{"name":"exporting--url","fullname":"exporting.url","title":"url","parent":"exporting","isParent":false,"returnType":"String","defaults":"http://export.highcharts.com","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":"legend--useHTML","fullname":"legend.useHTML","title":"useHTML","parent":"legend","isParent":false,"returnType":"Boolean","defaults":"false","description":"<p>Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the legend item texts. Prior to 2.1.7, when using HTML, <a href=\"#legend.navigation\">legend.navigation</a> was disabled.</p>","deprecated":false},{"name":"series<arearange>-dataLabels--useHTML","fullname":"series<arearange>.dataLabels.useHTML","title":"useHTML","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"plotOptions-flags--useHTML","fullname":"plotOptions.flags.useHTML","title":"useHTML","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"Whether to use HTML to render the flag texts. Using HTML allows for advanced formatting, images and reliable bi-directional text rendering. Note that exported images won't respect the HTML, and that HTML won't respect Z-index settings.","demo":"","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--useHTML","fullname":"series<flags>.dataLabels.useHTML","title":"useHTML","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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":"1.3.3","description":"<p>Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<flags>--useHTML","fullname":"series<flags>.useHTML","title":"useHTML","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"false","values":"","since":"1.3","description":"Whether to use HTML to render the flag texts. Using HTML allows for advanced formatting, images and reliable bi-directional text rendering. Note that exported images won't respect the HTML, and that HTML won't respect Z-index settings.","demo":"","seeAlso":"","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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<candlestick>-dataLabels--useHTML","fullname":"series<candlestick>.dataLabels.useHTML","title":"useHTML","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the text.","deprecated":false},{"name":"series<ohlc>-dataLabels--useHTML","fullname":"series<ohlc>.dataLabels.useHTML","title":"useHTML","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","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":"1.3.3","description":"<p>Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<column>-dataLabels--useHTML","fullname":"series<column>.dataLabels.useHTML","title":"useHTML","parent":"series<column>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<polygon>-dataLabels--useHTML","fullname":"series<polygon>.dataLabels.useHTML","title":"useHTML","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"plotOptions-flags-dataLabels--useHTML","fullname":"plotOptions.flags.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the text.","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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<spline>-dataLabels--useHTML","fullname":"series<spline>.dataLabels.useHTML","title":"useHTML","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<areaspline>-dataLabels--useHTML","fullname":"series<areaspline>.dataLabels.useHTML","title":"useHTML","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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":"1.3.3","description":"<p>Whether to <a href=\"http://docs.highcharts.com/#formatting$html\">use HTML</a> to render the labels.","demo":"","seeAlso":"","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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--useHTML","fullname":"plotOptions.ohlc.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"xAxis-labels--useHTML","fullname":"xAxis.labels.useHTML","title":"useHTML","parent":"xAxis-labels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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":"1.3.3","description":"<p>Whether to <a href=\"http://docs.highcharts.com/#formatting$html\">use HTML</a> to render the labels.","demo":"","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--useHTML","fullname":"series<areasplinerange>.dataLabels.useHTML","title":"useHTML","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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 href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/footerformat/\" target=\"_blank\">A table for value alignment</a>.  <a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/fullhtml/\" target=\"_blank\">Full HTML tooltip</a>.","deprecated":false},{"name":"series<area>-dataLabels--useHTML","fullname":"series<area>.dataLabels.useHTML","title":"useHTML","parent":"series<area>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<scatter>-dataLabels--useHTML","fullname":"series<scatter>.dataLabels.useHTML","title":"useHTML","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<columnrange>-dataLabels--useHTML","fullname":"series<columnrange>.dataLabels.useHTML","title":"useHTML","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"series<line>-dataLabels--useHTML","fullname":"series<line>.dataLabels.useHTML","title":"useHTML","parent":"series<line>-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> to render the labels.","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--useHTML","fullname":"plotOptions.candlestick.dataLabels.useHTML","title":"useHTML","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Boolean","defaults":"false","description":"Whether to <a href=\"http://www.highcharts.com/docs/chart-concepts/labels-and-string-formatting#html\">use HTML</a> 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  <code>Highcharts.dateFormat</code>. 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."},{"name":"plotOptions-polygon-zones--value","fullname":"plotOptions.polygon.zones.value","title":"value","parent":"plotOptions-polygon-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-flags-zones--value","fullname":"plotOptions.flags.zones.value","title":"value","parent":"plotOptions-flags-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-arearange-zones--value","fullname":"plotOptions.arearange.zones.value","title":"value","parent":"plotOptions-arearange-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<flags>-zones--value","fullname":"series<flags>.zones.value","title":"value","parent":"series<flags>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-column-zones--value","fullname":"plotOptions.column.zones.value","title":"value","parent":"plotOptions-column-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<ohlc>-zones--value","fullname":"series<ohlc>.zones.value","title":"value","parent":"series<ohlc>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-areasplinerange-zones--value","fullname":"plotOptions.areasplinerange.zones.value","title":"value","parent":"plotOptions-areasplinerange-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-ohlc-zones--value","fullname":"plotOptions.ohlc.zones.value","title":"value","parent":"plotOptions-ohlc-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<line>-zones--value","fullname":"series<line>.zones.value","title":"value","parent":"series<line>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-candlestick-zones--value","fullname":"plotOptions.candlestick.zones.value","title":"value","parent":"plotOptions-candlestick-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"xAxis-plotLines--value","fullname":"xAxis.plotLines.value","title":"value","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The position of the line in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<area>-zones--value","fullname":"series<area>.zones.value","title":"value","parent":"series<area>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-area-zones--value","fullname":"plotOptions.area.zones.value","title":"value","parent":"plotOptions-area-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<areaspline>-zones--value","fullname":"series<areaspline>.zones.value","title":"value","parent":"series<areaspline>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<areasplinerange>-zones--value","fullname":"series<areasplinerange>.zones.value","title":"value","parent":"series<areasplinerange>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"yAxis-plotLines--value","fullname":"yAxis.plotLines.value","title":"value","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The position of the line in axis units.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<column>-zones--value","fullname":"series<column>.zones.value","title":"value","parent":"series<column>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<candlestick>-zones--value","fullname":"series<candlestick>.zones.value","title":"value","parent":"series<candlestick>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-line-zones--value","fullname":"plotOptions.line.zones.value","title":"value","parent":"plotOptions-line-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-series-zones--value","fullname":"plotOptions.series.zones.value","title":"value","parent":"plotOptions-series-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<arearange>-zones--value","fullname":"series<arearange>.zones.value","title":"value","parent":"series<arearange>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<columnrange>-zones--value","fullname":"series<columnrange>.zones.value","title":"value","parent":"series<columnrange>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-columnrange-zones--value","fullname":"plotOptions.columnrange.zones.value","title":"value","parent":"plotOptions-columnrange-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<polygon>-zones--value","fullname":"series<polygon>.zones.value","title":"value","parent":"series<polygon>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-areaspline-zones--value","fullname":"plotOptions.areaspline.zones.value","title":"value","parent":"plotOptions-areaspline-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-spline-zones--value","fullname":"plotOptions.spline.zones.value","title":"value","parent":"plotOptions-spline-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-scatter-zones--value","fullname":"plotOptions.scatter.zones.value","title":"value","parent":"plotOptions-scatter-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<scatter>-zones--value","fullname":"series<scatter>.zones.value","title":"value","parent":"series<scatter>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"series<spline>-zones--value","fullname":"series<spline>.zones.value","title":"value","parent":"series<spline>-zones","isParent":false,"returnType":"Number","defaults":"undefined","since":"2.1.0","description":"The value up to where the zone extends, if undefined the zones stretches to the last value in the series.","deprecated":false},{"name":"plotOptions-areaspline-tooltip--valueDecimals","fullname":"plotOptions.areaspline.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-arearange-tooltip--valueDecimals","fullname":"plotOptions.arearange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-ohlc-tooltip--valueDecimals","fullname":"plotOptions.ohlc.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--valueDecimals","fullname":"plotOptions.areasplinerange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--valueDecimals","fullname":"plotOptions.columnrange.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areaspline>-tooltip--valueDecimals","fullname":"series<areaspline>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<spline>-tooltip--valueDecimals","fullname":"series<spline>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<spline>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"tooltip--valueDecimals","fullname":"tooltip.valueDecimals","title":"valueDecimals","parent":"tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<candlestick>-tooltip--valueDecimals","fullname":"series<candlestick>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-column-tooltip--valueDecimals","fullname":"plotOptions.column.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-spline-tooltip--valueDecimals","fullname":"plotOptions.spline.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-line-tooltip--valueDecimals","fullname":"plotOptions.line.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<arearange>-tooltip--valueDecimals","fullname":"series<arearange>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<arearange>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<ohlc>-tooltip--valueDecimals","fullname":"series<ohlc>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<area>-tooltip--valueDecimals","fullname":"series<area>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<area>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-series-tooltip--valueDecimals","fullname":"plotOptions.series.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--valueDecimals","fullname":"plotOptions.candlestick.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<column>-tooltip--valueDecimals","fullname":"series<column>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<column>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<columnrange>-tooltip--valueDecimals","fullname":"series<columnrange>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-area-tooltip--valueDecimals","fullname":"plotOptions.area.tooltip.valueDecimals","title":"valueDecimals","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areasplinerange>-tooltip--valueDecimals","fullname":"series<areasplinerange>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<line>-tooltip--valueDecimals","fullname":"series<line>.tooltip.valueDecimals","title":"valueDecimals","parent":"series<line>-tooltip","isParent":false,"returnType":"Number","since":"1.2","description":"How many decimals to show in each series' y value. This is overridable in each series' tooltip options object.\r The default is to preserve all decimals.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<line>-tooltip--valuePrefix","fullname":"series<line>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<line>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-line-tooltip--valuePrefix","fullname":"plotOptions.line.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"tooltip--valuePrefix","fullname":"tooltip.valuePrefix","title":"valuePrefix","parent":"tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areasplinerange>-tooltip--valuePrefix","fullname":"series<areasplinerange>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<spline>-tooltip--valuePrefix","fullname":"series<spline>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<column>-tooltip--valuePrefix","fullname":"series<column>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<column>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<candlestick>-tooltip--valuePrefix","fullname":"series<candlestick>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<columnrange>-tooltip--valuePrefix","fullname":"series<columnrange>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--valuePrefix","fullname":"plotOptions.columnrange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-series-tooltip--valuePrefix","fullname":"plotOptions.series.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<ohlc>-tooltip--valuePrefix","fullname":"series<ohlc>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<area>-tooltip--valuePrefix","fullname":"series<area>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<area>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areaspline>-tooltip--valuePrefix","fullname":"series<areaspline>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-column-tooltip--valuePrefix","fullname":"plotOptions.column.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--valuePrefix","fullname":"plotOptions.candlestick.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-arearange-tooltip--valuePrefix","fullname":"plotOptions.arearange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-ohlc-tooltip--valuePrefix","fullname":"plotOptions.ohlc.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-spline-tooltip--valuePrefix","fullname":"plotOptions.spline.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<arearange>-tooltip--valuePrefix","fullname":"series<arearange>.tooltip.valuePrefix","title":"valuePrefix","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-areaspline-tooltip--valuePrefix","fullname":"plotOptions.areaspline.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--valuePrefix","fullname":"plotOptions.areasplinerange.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-area-tooltip--valuePrefix","fullname":"plotOptions.area.tooltip.valuePrefix","title":"valuePrefix","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to prepend to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-candlestick-tooltip--valueSuffix","fullname":"plotOptions.candlestick.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-series-tooltip--valueSuffix","fullname":"plotOptions.series.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areasplinerange>-tooltip--valueSuffix","fullname":"series<areasplinerange>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"tooltip--valueSuffix","fullname":"tooltip.valueSuffix","title":"valueSuffix","parent":"tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<columnrange>-tooltip--valueSuffix","fullname":"series<columnrange>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-columnrange-tooltip--valueSuffix","fullname":"plotOptions.columnrange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-line-tooltip--valueSuffix","fullname":"plotOptions.line.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<arearange>-tooltip--valueSuffix","fullname":"series<arearange>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-areaspline-tooltip--valueSuffix","fullname":"plotOptions.areaspline.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-areasplinerange-tooltip--valueSuffix","fullname":"plotOptions.areasplinerange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<candlestick>-tooltip--valueSuffix","fullname":"series<candlestick>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<line>-tooltip--valueSuffix","fullname":"series<line>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<line>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<areaspline>-tooltip--valueSuffix","fullname":"series<areaspline>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<column>-tooltip--valueSuffix","fullname":"series<column>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<column>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-arearange-tooltip--valueSuffix","fullname":"plotOptions.arearange.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-spline-tooltip--valueSuffix","fullname":"plotOptions.spline.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-area-tooltip--valueSuffix","fullname":"plotOptions.area.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<ohlc>-tooltip--valueSuffix","fullname":"series<ohlc>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-column-tooltip--valueSuffix","fullname":"plotOptions.column.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"plotOptions-ohlc-tooltip--valueSuffix","fullname":"plotOptions.ohlc.tooltip.valueSuffix","title":"valueSuffix","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<spline>-tooltip--valueSuffix","fullname":"series<spline>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<area>-tooltip--valueSuffix","fullname":"series<area>.tooltip.valueSuffix","title":"valueSuffix","parent":"series<area>-tooltip","isParent":false,"returnType":"String","since":"1.2","description":"A string to append to each series' y value. Overridable in each series' tooltip options object.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/tooltip/valuedecimals/\" target=\"_blank\">Set decimals, prefix and suffix for the value</a>","deprecated":false},{"name":"series<flags>-dataLabels--verticalAlign","fullname":"series<flags>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<flags>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-areasplinerange-dataLabels--verticalAlign","fullname":"plotOptions.areasplinerange.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<columnrange>-dataLabels--verticalAlign","fullname":"series<columnrange>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<arearange>-dataLabels--verticalAlign","fullname":"series<arearange>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<areasplinerange>-dataLabels--verticalAlign","fullname":"series<areasplinerange>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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\"]","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-verticalalign/\" target=\"_blank\">Chart title in bottom right corner</a>","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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-plotBands-label--verticalAlign","fullname":"xAxis.plotBands.label.verticalAlign","title":"verticalAlign","parent":"xAxis-plotBands-label","isParent":false,"returnType":"String","defaults":"\"top\"","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"series<column>-dataLabels--verticalAlign","fullname":"series<column>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<column>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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\"]","description":"Vertical alignment of the label relative to the plot line. Can be one of \"top\", \"middle\" or \"bottom\".","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\"]","description":"Vertical alignment of the label relative to the plot line. Can be one of \"top\", \"middle\" or \"bottom\".","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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-candlestick-dataLabels--verticalAlign","fullname":"plotOptions.candlestick.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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\"]","description":"<p>The vertical alignment of the legend box. Can be one of <code>top</code>, <code>middle</code> or  <code>bottom</code>. Vertical position can be further determined by the <code>y</code> option.</p>\r\n\r\n<p>In the case that the legend is aligned in a corner position, the <code>layout</code> option will determine whether to place it above/below or on the side of the plot area.</p>","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>","deprecated":false},{"name":"series<polygon>-dataLabels--verticalAlign","fullname":"series<polygon>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<areaspline>-dataLabels--verticalAlign","fullname":"series<areaspline>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<candlestick>-dataLabels--verticalAlign","fullname":"series<candlestick>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<ohlc>-dataLabels--verticalAlign","fullname":"series<ohlc>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-flags-dataLabels--verticalAlign","fullname":"plotOptions.flags.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<line>-dataLabels--verticalAlign","fullname":"series<line>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<line>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<spline>-dataLabels--verticalAlign","fullname":"series<spline>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<spline>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-ohlc-dataLabels--verticalAlign","fullname":"plotOptions.ohlc.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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<area>-dataLabels--verticalAlign","fullname":"series<area>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<area>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-scatter-dataLabels--verticalAlign","fullname":"plotOptions.scatter.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"navigation-buttonOptions--verticalAlign","fullname":"navigation.buttonOptions.verticalAlign","title":"verticalAlign","parent":"navigation-buttonOptions","isParent":false,"returnType":"String","defaults":"top","values":"[\"top\", \"middle\", \"bottom\"]","description":"The vertical alignment of the buttons. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-verticalalign/\" target=\"_blank\">Buttons at lower right</a>","deprecated":false},{"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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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\"]","description":"The vertical alignment of the buttons. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-verticalalign/\" target=\"_blank\">Buttons at lower right</a>","deprecated":false},{"name":"series<scatter>-dataLabels--verticalAlign","fullname":"series<scatter>.dataLabels.verticalAlign","title":"verticalAlign","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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-spline-dataLabels--verticalAlign","fullname":"plotOptions.spline.dataLabels.verticalAlign","title":"verticalAlign","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"String","values":"[\"top\", \"middle\", \"bottom\"]","since":"1.1","description":"The vertical alignment of a data label. Can be one of <code>top</code>, <code>middle</code> or <code>bottom</code>. 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\"","description":"Vertical alignment of the label relative to the plot band. Can be one of \"top\", \"middle\" or \"bottom\".","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"subtitle--verticalAlign","fullname":"subtitle.verticalAlign","title":"verticalAlign","parent":"subtitle","isParent":false,"returnType":"String","defaults":" ","values":"[\"top\", \"middle\", \"bottom\"]","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-footnote\" target=\"_blank\">Footnote at the bottom right of plot area</a>","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<spline>--visible","fullname":"series<spline>.visible","title":"visible","parent":"series<spline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"plotOptions-flags--visible","fullname":"plotOptions.flags.visible","title":"visible","parent":"plotOptions-flags","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<column>--visible","fullname":"series<column>.visible","title":"visible","parent":"series<column>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<area>--visible","fullname":"series<area>.visible","title":"visible","parent":"series<area>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"yAxis--visible","fullname":"yAxis.visible","title":"visible","parent":"yAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"Whether axis, including axis title, line, ticks and labels, should be visible.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/visible/\">Toggle axis visibility</a>.","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<ohlc>--visible","fullname":"series<ohlc>.visible","title":"visible","parent":"series<ohlc>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<areasplinerange>--visible","fullname":"series<areasplinerange>.visible","title":"visible","parent":"series<areasplinerange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"xAxis--visible","fullname":"xAxis.visible","title":"visible","parent":"xAxis","isParent":false,"returnType":"Boolean","defaults":"true","since":"2.1.9","description":"Whether axis, including axis title, line, ticks and labels, should be visible.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/visible/\">Toggle axis visibility</a>.","deprecated":false},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<scatter>--visible","fullname":"series<scatter>.visible","title":"visible","parent":"series<scatter>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<candlestick>--visible","fullname":"series<candlestick>.visible","title":"visible","parent":"series<candlestick>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<flags>--visible","fullname":"series<flags>.visible","title":"visible","parent":"series<flags>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<line>--visible","fullname":"series<line>.visible","title":"visible","parent":"series<line>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<columnrange>--visible","fullname":"series<columnrange>.visible","title":"visible","parent":"series<columnrange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"plotOptions-ohlc--visible","fullname":"plotOptions.ohlc.visible","title":"visible","parent":"plotOptions-ohlc","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<polygon>--visible","fullname":"series<polygon>.visible","title":"visible","parent":"series<polygon>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<areaspline>--visible","fullname":"series<areaspline>.visible","title":"visible","parent":"series<areaspline>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"plotOptions-candlestick--visible","fullname":"plotOptions.candlestick.visible","title":"visible","parent":"plotOptions-candlestick","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"series<arearange>--visible","fullname":"series<arearange>.visible","title":"visible","parent":"series<arearange>","isParent":false,"returnType":"Boolean","defaults":"true","description":"Set the initial visibility of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/plotoptions/series-visibility/\" target=\"_blank\">Hidden series</a>"},{"name":"lang--weekdays","fullname":"lang.weekdays","title":"weekdays","parent":"lang","isParent":false,"returnType":"Array<String>;","defaults":"[\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"]","description":"An array containing the weekday names.\n\t\t Defaults to <code>['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']</code>."},{"name":"plotOptions-line-marker--width","fullname":"plotOptions.line.marker.width","title":"width","parent":"plotOptions-line-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-polygon-marker--width","fullname":"plotOptions.polygon.marker.width","title":"width","parent":"plotOptions-polygon-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-states-hover-marker--width","fullname":"series<scatter>.states.hover.marker.width","title":"width","parent":"series<scatter>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"yAxis-crosshair--width","fullname":"yAxis.crosshair.width","title":"width","parent":"yAxis-crosshair","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The pixel width of the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-customized/\" target=\"_blank\">Customized crosshairs</a>.","deprecated":false},{"name":"plotOptions-areaspline-marker--width","fullname":"plotOptions.areaspline.marker.width","title":"width","parent":"plotOptions-areaspline-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"xAxis-plotLines--width","fullname":"xAxis.plotLines.width","title":"width","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The width or thickness of the plot line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"plotOptions-area-marker--width","fullname":"plotOptions.area.marker.width","title":"width","parent":"plotOptions-area-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-marker--width","fullname":"series<scatter>.marker.width","title":"width","parent":"series<scatter>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-data-marker--width","fullname":"series<area>.data.marker.width","title":"width","parent":"series<area>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"yAxis-plotLines--width","fullname":"yAxis.plotLines.width","title":"width","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The width or thickness of the plot line.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-ohlc-states-hover-marker--width","fullname":"plotOptions.ohlc.states.hover.marker.width","title":"width","parent":"plotOptions-ohlc-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"xAxis-crosshair--width","fullname":"xAxis.crosshair.width","title":"width","parent":"xAxis-crosshair","isParent":false,"returnType":"Number","defaults":"1","since":"2.1","description":"The pixel width of the crosshair.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/xaxis/crosshair-customized/\" target=\"_blank\">Customized crosshairs</a>.","deprecated":false},{"name":"series<areasplinerange>-states-hover-marker--width","fullname":"series<areasplinerange>.states.hover.marker.width","title":"width","parent":"series<areasplinerange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<columnrange>-states-hover-marker--width","fullname":"series<columnrange>.states.hover.marker.width","title":"width","parent":"series<columnrange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<scatter>-data-marker--width","fullname":"series<scatter>.data.marker.width","title":"width","parent":"series<scatter>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"navigation-buttonOptions--width","fullname":"navigation.buttonOptions.width","title":"width","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"24","description":"The pixel width of the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"series<line>-data-marker--width","fullname":"series<line>.data.marker.width","title":"width","parent":"series<line>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<line>-states-hover-marker--width","fullname":"series<line>.states.hover.marker.width","title":"width","parent":"series<line>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-marker--width","fullname":"series<area>.marker.width","title":"width","parent":"series<area>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<areaspline>-marker--width","fullname":"series<areaspline>.marker.width","title":"width","parent":"series<areaspline>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"legend--width","fullname":"legend.width","title":"width","parent":"legend","isParent":false,"returnType":"Number","defaults":"null","description":"The width of the legend box.","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-series-marker--width","fullname":"plotOptions.series.marker.width","title":"width","parent":"plotOptions-series-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<ohlc>-states-hover-marker--width","fullname":"series<ohlc>.states.hover.marker.width","title":"width","parent":"series<ohlc>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<arearange>-states-hover-marker--width","fullname":"series<arearange>.states.hover.marker.width","title":"width","parent":"series<arearange>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<candlestick>-states-hover-marker--width","fullname":"series<candlestick>.states.hover.marker.width","title":"width","parent":"series<candlestick>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<areaspline>-states-hover-marker--width","fullname":"series<areaspline>.states.hover.marker.width","title":"width","parent":"series<areaspline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<column>-states-hover-marker--width","fullname":"series<column>.states.hover.marker.width","title":"width","parent":"series<column>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-spline-marker--width","fullname":"plotOptions.spline.marker.width","title":"width","parent":"plotOptions-spline-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<area>-states-hover-marker--width","fullname":"series<area>.states.hover.marker.width","title":"width","parent":"series<area>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<line>-marker--width","fullname":"series<line>.marker.width","title":"width","parent":"series<line>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<spline>-marker--width","fullname":"series<spline>.marker.width","title":"width","parent":"series<spline>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<areaspline>-data-marker--width","fullname":"series<areaspline>.data.marker.width","title":"width","parent":"series<areaspline>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<flags>-states-hover-marker--width","fullname":"series<flags>.states.hover.marker.width","title":"width","parent":"series<flags>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-flags-states-hover-marker--width","fullname":"plotOptions.flags.states.hover.marker.width","title":"width","parent":"plotOptions-flags-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<polygon>-data-marker--width","fullname":"series<polygon>.data.marker.width","title":"width","parent":"series<polygon>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<spline>-states-hover-marker--width","fullname":"series<spline>.states.hover.marker.width","title":"width","parent":"series<spline>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"plotOptions-candlestick-states-hover-marker--width","fullname":"plotOptions.candlestick.states.hover.marker.width","title":"width","parent":"plotOptions-candlestick-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"exporting-buttons-contextButton--width","fullname":"exporting.buttons.contextButton.width","title":"width","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"24","description":"The pixel width of the button.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-height/\" target=\"_blank\">Bigger buttons</a>","deprecated":false},{"name":"chart--width","fullname":"chart.width","title":"width","parent":"chart","isParent":false,"returnType":"Number","defaults":"null","description":"An explicit width for the chart. By default the width is calculated from the offset width of the containing element.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/width/\" target=\"_blank\">800px wide</a>"},{"name":"plotOptions-scatter-marker--width","fullname":"plotOptions.scatter.marker.width","title":"width","parent":"plotOptions-scatter-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<spline>-data-marker--width","fullname":"series<spline>.data.marker.width","title":"width","parent":"series<spline>-data-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<polygon>-states-hover-marker--width","fullname":"series<polygon>.states.hover.marker.width","title":"width","parent":"series<polygon>-states-hover-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"exporting--width","fullname":"exporting.width","title":"width","parent":"exporting","isParent":false,"returnType":"Number","defaults":"undefined","description":"The pixel width of charts exported to PNG or JPG. As of Highstock 1.3, the default pixel width is a function of the <a href=\"#chart.width\">chart.width</a> or <a href=\"#exporting.sourceWidth\">exporting.sourceWidth</a> and the <a href=\"#exporting.scale\">exporting.scale</a>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/exporting/width/\" target=\"_blank\">Export to 200px wide images</a>","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","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","deprecated":false},{"name":"series<polygon>-marker--width","fullname":"series<polygon>.marker.width","title":"width","parent":"series<polygon>-marker","isParent":false,"returnType":"Number","defaults":"null","since":"2.0.4","description":"Image markers only. Set the image width explicitly. When using this option, a <code>height</code> must also be set.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-marker-width-height/\" target=\"_blank\">Fixed width and height</a>","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. ","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. ","deprecated":false},{"name":"series<column>-data--x","fullname":"series<column>.data.x","title":"x","parent":"series<column>-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-plotBands-label--x","fullname":"yAxis.plotBands.label.x","title":"x","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"series<ohlc>-dataLabels--x","fullname":"series<ohlc>.dataLabels.x","title":"x","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"series<scatter>-data--x","fullname":"series<scatter>.data.x","title":"x","parent":"series<scatter>-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<spline>-dataLabels--x","fullname":"series<spline>.dataLabels.x","title":"x","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"series<candlestick>-data--x","fullname":"series<candlestick>.data.x","title":"x","parent":"series<candlestick>-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<area>-dataLabels--x","fullname":"series<area>.dataLabels.x","title":"x","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"series<scatter>-dataLabels--x","fullname":"series<scatter>.dataLabels.x","title":"x","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"title--x","fullname":"title.x","title":"x","parent":"title","isParent":false,"returnType":"Number","defaults":"0","description":"The x position of the title relative to the alignment within chart.spacingLeft and chart.spacingRight.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-align/\" target=\"_blank\">Aligned to the plot area (x = 50px \n\t\t\t= margin left - spacing left)</a>"},{"name":"series<area>-data--x","fullname":"series<area>.data.x","title":"x","parent":"series<area>-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<polygon>-dataLabels--x","fullname":"series<polygon>.dataLabels.x","title":"x","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"exporting-buttons-contextButton--x","fullname":"exporting.buttons.contextButton.x","title":"x","parent":"exporting-buttons-contextButton","isParent":false,"returnType":"Number","defaults":"-10","description":"The horizontal position of the button relative to the <code>align</code>\r\n option.","demo":" ","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--x","fullname":"plotOptions.ohlc.dataLabels.x","title":"x","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"series<ohlc>-data--x","fullname":"series<ohlc>.data.x","title":"x","parent":"series<ohlc>-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":"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."},{"name":"legend--x","fullname":"legend.x","title":"x","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","description":"The x offset of the legend relative to its horizontal alignment <code>align</code> within chart.spacingLeft and chart.spacingRight. Negative x moves it to the left, positive x moves it to the right.","deprecated":false},{"name":"series<polygon>-data--x","fullname":"series<polygon>.data.x","title":"x","parent":"series<polygon>-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":"xAxis-plotBands-label--x","fullname":"xAxis.plotBands.label.x","title":"x","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"series<arearange>-data--x","fullname":"series<arearange>.data.x","title":"x","parent":"series<arearange>-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-labels--x","fullname":"yAxis.labels.x","title":"x","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the tick position on the axis."},{"name":"series<line>-data--x","fullname":"series<line>.data.x","title":"x","parent":"series<line>-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-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. ","deprecated":false},{"name":"series<flags>-data--x","fullname":"series<flags>.data.x","title":"x","parent":"series<flags>-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<areaspline>-dataLabels--x","fullname":"series<areaspline>.dataLabels.x","title":"x","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"series<areasplinerange>-data--x","fullname":"series<areasplinerange>.data.x","title":"x","parent":"series<areasplinerange>-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<candlestick>-dataLabels--x","fullname":"series<candlestick>.dataLabels.x","title":"x","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","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. ","deprecated":false},{"name":"series<line>-dataLabels--x","fullname":"series<line>.dataLabels.x","title":"x","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"plotOptions-flags-dataLabels--x","fullname":"plotOptions.flags.dataLabels.x","title":"x","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"yAxis-title--x","fullname":"yAxis.title.x","title":"x","parent":"yAxis-title","isParent":false,"returnType":"Number","defaults":"0","since":"2.1.6","description":"Horizontal pixel offset of the title position.","deprecated":false},{"name":"xAxis-title--x","fullname":"xAxis.title.x","title":"x","parent":"xAxis-title","isParent":false,"returnType":"Number","defaults":"0","since":"2.1.6","description":"Horizontal pixel offset of the title position.","deprecated":false},{"name":"xAxis-plotLines-label--x","fullname":"xAxis.plotLines.label.x","title":"x","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<columnrange>-data--x","fullname":"series<columnrange>.data.x","title":"x","parent":"series<columnrange>-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<areaspline>-data--x","fullname":"series<areaspline>.data.x","title":"x","parent":"series<areaspline>-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<column>-dataLabels--x","fullname":"series<column>.dataLabels.x","title":"x","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"yAxis-plotLines-label--x","fullname":"yAxis.plotLines.label.x","title":"x","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Horizontal position relative the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"subtitle--x","fullname":"subtitle.x","title":"x","parent":"subtitle","isParent":false,"returnType":"Number","defaults":"0","description":"The x position of the subtitle relative to the alignment within chart.spacingLeft and chart.spacingRight.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-footnote\" target=\"_blank\">Footnote at the bottom right of plot area</a>","deprecated":false},{"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. ","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. ","deprecated":false},{"name":"series<spline>-data--x","fullname":"series<spline>.data.x","title":"x","parent":"series<spline>-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. ","deprecated":false},{"name":"series<flags>-dataLabels--x","fullname":"series<flags>.dataLabels.x","title":"x","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","deprecated":false},{"name":"plotOptions-candlestick-dataLabels--x","fullname":"plotOptions.candlestick.dataLabels.x","title":"x","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"0","description":"The x position offset of the label relative to the point. ","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. ","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<flags>--xAxis","fullname":"series<flags>.xAxis","title":"xAxis","parent":"series<flags>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<ohlc>--xAxis","fullname":"series<ohlc>.xAxis","title":"xAxis","parent":"series<ohlc>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<columnrange>--xAxis","fullname":"series<columnrange>.xAxis","title":"xAxis","parent":"series<columnrange>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<scatter>--xAxis","fullname":"series<scatter>.xAxis","title":"xAxis","parent":"series<scatter>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<area>--xAxis","fullname":"series<area>.xAxis","title":"xAxis","parent":"series<area>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"navigator--xAxis","fullname":"navigator.xAxis","title":"xAxis","parent":"navigator","isParent":false,"returnType":"Object","description":"Options for the navigator X axis. Available options are the same as any X axis, documented at <a class=\"internal\" href=\"#xAxis\">xAxis</a>. Default series options for the navigator xAxis are:\r\n<pre>xAxis: {\r\n    tickWidth: 0,\r\n    lineWidth: 0,\r\n    gridLineWidth: 1,\r\n    tickPixelInterval: 200,\r\n    labels: {\r\n        align: 'left',\r\n        style: {\r\n            color: '#888'\r\n        },\r\n        x: 3,\r\n        y: -4\r\n    }\r\n}</pre>","deprecated":false},{"name":"series<line>--xAxis","fullname":"series<line>.xAxis","title":"xAxis","parent":"series<line>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<column>--xAxis","fullname":"series<column>.xAxis","title":"xAxis","parent":"series<column>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<polygon>--xAxis","fullname":"series<polygon>.xAxis","title":"xAxis","parent":"series<polygon>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<spline>--xAxis","fullname":"series<spline>.xAxis","title":"xAxis","parent":"series<spline>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<areaspline>--xAxis","fullname":"series<areaspline>.xAxis","title":"xAxis","parent":"series<areaspline>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<areasplinerange>--xAxis","fullname":"series<areasplinerange>.xAxis","title":"xAxis","parent":"series<areasplinerange>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<candlestick>--xAxis","fullname":"series<candlestick>.xAxis","title":"xAxis","parent":"series<candlestick>","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 <a href=\"#xAxis.id\">axis id</a> or the index of the axis in the xAxis array, with 0 being the first.","deprecated":false},{"name":"series<arearange>--xAxis","fullname":"series<arearange>.xAxis","title":"xAxis","parent":"series<arearange>","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 <a href=\"#xAxis.id\">axis id</a> 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":"<p>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.</p>\r\n\t<p>See <a class=\"internal\" href=\"#Axis\">the Axis object</a> for programmatic\r\n\taccess to the axis.</p>","deprecated":false},{"name":"plotOptions-column-tooltip--xDateFormat","fullname":"plotOptions.column.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-column-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<line>-tooltip--xDateFormat","fullname":"series<line>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<line>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<ohlc>-tooltip--xDateFormat","fullname":"series<ohlc>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<ohlc>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<column>-tooltip--xDateFormat","fullname":"series<column>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<column>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<areasplinerange>-tooltip--xDateFormat","fullname":"series<areasplinerange>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<areasplinerange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<columnrange>-tooltip--xDateFormat","fullname":"series<columnrange>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<columnrange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-area-tooltip--xDateFormat","fullname":"plotOptions.area.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-area-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-ohlc-tooltip--xDateFormat","fullname":"plotOptions.ohlc.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-ohlc-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-spline-tooltip--xDateFormat","fullname":"plotOptions.spline.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-spline-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-areaspline-tooltip--xDateFormat","fullname":"plotOptions.areaspline.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-areaspline-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-arearange-tooltip--xDateFormat","fullname":"plotOptions.arearange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-arearange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<area>-tooltip--xDateFormat","fullname":"series<area>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<area>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"tooltip--xDateFormat","fullname":"tooltip.xDateFormat","title":"xDateFormat","parent":"tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-series-tooltip--xDateFormat","fullname":"plotOptions.series.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-series-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<areaspline>-tooltip--xDateFormat","fullname":"series<areaspline>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<areaspline>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-columnrange-tooltip--xDateFormat","fullname":"plotOptions.columnrange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-columnrange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-line-tooltip--xDateFormat","fullname":"plotOptions.line.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-line-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<candlestick>-tooltip--xDateFormat","fullname":"series<candlestick>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<candlestick>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-flags-tooltip--xDateFormat","fullname":"plotOptions.flags.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-flags-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-candlestick-tooltip--xDateFormat","fullname":"plotOptions.candlestick.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-candlestick-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<spline>-tooltip--xDateFormat","fullname":"series<spline>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<spline>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<flags>-tooltip--xDateFormat","fullname":"series<flags>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<flags>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"series<arearange>-tooltip--xDateFormat","fullname":"series<arearange>.tooltip.xDateFormat","title":"xDateFormat","parent":"series<arearange>-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-areasplinerange-tooltip--xDateFormat","fullname":"plotOptions.areasplinerange.tooltip.xDateFormat","title":"xDateFormat","parent":"plotOptions-areasplinerange-tooltip","isParent":false,"returnType":"String","defaults":"","description":"The format for the date in the tooltip header. If data grouping is used, the default is  a smart guess based on how close the closest points are. It is pulled from the #plotOptions.dataGrouping.dateTimeLabelFormats array."},{"name":"plotOptions-areasplinerange-dataLabels--xHigh","fullname":"plotOptions.areasplinerange.dataLabels.xHigh","title":"xHigh","parent":"plotOptions-areasplinerange-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--xHigh","fullname":"series<arearange>.dataLabels.xHigh","title":"xHigh","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--xHigh","fullname":"series<areasplinerange>.dataLabels.xHigh","title":"xHigh","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--xHigh","fullname":"series<columnrange>.dataLabels.xHigh","title":"xHigh","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--xLow","fullname":"series<columnrange>.dataLabels.xLow","title":"xLow","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--xLow","fullname":"series<arearange>.dataLabels.xLow","title":"xLow","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--xLow","fullname":"series<areasplinerange>.dataLabels.xLow","title":"xLow","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"0","since":"1.2.0","description":"X offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"series<spline>-dataLabels--y","fullname":"series<spline>.dataLabels.y","title":"y","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"plotOptions-area-dataLabels--y","fullname":"plotOptions.area.dataLabels.y","title":"y","parent":"plotOptions-area-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"yAxis-labels--y","fullname":"yAxis.labels.y","title":"y","parent":"yAxis-labels","isParent":false,"returnType":"Number","defaults":"-2","description":"The y position offset of the label relative to the tick position on the axis."},{"name":"series<column>-data--y","fullname":"series<column>.data.y","title":"y","parent":"series<column>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"series<spline>-data--y","fullname":"series<spline>.data.y","title":"y","parent":"series<spline>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"yAxis-plotBands-label--y","fullname":"yAxis.plotBands.label.y","title":"y","parent":"yAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"plotOptions-flags-dataLabels--y","fullname":"plotOptions.flags.dataLabels.y","title":"y","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<scatter>-data--y","fullname":"series<scatter>.data.y","title":"y","parent":"series<scatter>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"plotOptions-flags--y","fullname":"plotOptions.flags.y","title":"y","parent":"plotOptions-flags","isParent":false,"returnType":"Number","defaults":"-30","description":"The y position of the top left corner of the flag relative to either the series (if onSeries is defined), or the x axis. Defaults to <code>-30</code>."},{"name":"series<area>-dataLabels--y","fullname":"series<area>.dataLabels.y","title":"y","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<areaspline>-dataLabels--y","fullname":"series<areaspline>.dataLabels.y","title":"y","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<flags>-dataLabels--y","fullname":"series<flags>.dataLabels.y","title":"y","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<scatter>-dataLabels--y","fullname":"series<scatter>.dataLabels.y","title":"y","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"plotOptions-areaspline-dataLabels--y","fullname":"plotOptions.areaspline.dataLabels.y","title":"y","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<column>-dataLabels--y","fullname":"series<column>.dataLabels.y","title":"y","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<areaspline>-data--y","fullname":"series<areaspline>.data.y","title":"y","parent":"series<areaspline>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"title--y","fullname":"title.y","title":"y","parent":"title","isParent":false,"returnType":"Number","description":"The y position of the title relative to the alignment within <a href=\"#chart.spacingTop\">chart.spacingTop</a> and <a href=\"#chart.spacingBottom\">chart.spacingBottom</a>. By default it depends on the font size.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/title-verticalalign/\" target=\"_blank\">Chart title in bottom right corner</a>","deprecated":false},{"name":"series<area>-data--y","fullname":"series<area>.data.y","title":"y","parent":"series<area>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"series<line>-data--y","fullname":"series<line>.data.y","title":"y","parent":"series<line>-data","isParent":false,"returnType":"Number","defaults":"null","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","description":"The vertical offset of the button's position relative to its <code>verticalAlign</code>.\t\t\t .","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-verticalalign/\" target=\"_blank\">Buttons at lower right</a>","deprecated":false},{"name":"subtitle--y","fullname":"subtitle.y","title":"y","parent":"subtitle","isParent":false,"returnType":"Number","defaults":" null","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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/subtitle-footnote\" target=\"_blank\">Footnote at the bottom right of plot area</a>","deprecated":false},{"name":"plotOptions-polygon-dataLabels--y","fullname":"plotOptions.polygon.dataLabels.y","title":"y","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"legend--y","fullname":"legend.y","title":"y","parent":"legend","isParent":false,"returnType":"Number","defaults":"0","description":"The vertical offset of the legend relative to it's vertical alignment <code>verticalAlign</code> within chart.spacingTop and chart.spacingBottom. Negative y moves it up, positive y moves it down.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/legend/align/\" target=\"_blank\">Various legend options</a>"},{"name":"plotOptions-line-dataLabels--y","fullname":"plotOptions.line.dataLabels.y","title":"y","parent":"plotOptions-line-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"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.","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--y","fullname":"plotOptions.ohlc.dataLabels.y","title":"y","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"navigation-buttonOptions--y","fullname":"navigation.buttonOptions.y","title":"y","parent":"navigation-buttonOptions","isParent":false,"returnType":"Number","defaults":"0","description":"The vertical offset of the button's position relative to its <code>verticalAlign</code>.\t\t\t .","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/navigation/buttonoptions-verticalalign/\" target=\"_blank\">Buttons at lower right</a>","deprecated":false},{"name":"plotOptions-spline-dataLabels--y","fullname":"plotOptions.spline.dataLabels.y","title":"y","parent":"plotOptions-spline-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<ohlc>-dataLabels--y","fullname":"series<ohlc>.dataLabels.y","title":"y","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<line>-dataLabels--y","fullname":"series<line>.dataLabels.y","title":"y","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"xAxis-plotBands-label--y","fullname":"xAxis.plotBands.label.y","title":"y","parent":"xAxis-plotBands-label","isParent":false,"returnType":"Number","defaults":"","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotbands-label/\" target=\"_blank\">Plot band with labels</a>"},{"name":"series<polygon>-dataLabels--y","fullname":"series<polygon>.dataLabels.y","title":"y","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"yAxis-plotLines-label--y","fullname":"yAxis.plotLines.label.y","title":"y","parent":"yAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"series<candlestick>-dataLabels--y","fullname":"series<candlestick>.dataLabels.y","title":"y","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"plotOptions-scatter-dataLabels--y","fullname":"plotOptions.scatter.dataLabels.y","title":"y","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<flags>--y","fullname":"series<flags>.y","title":"y","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"-30","description":"The y position of the top left corner of the flag relative to either the series (if onSeries is defined), or the x axis. Defaults to <code>-30</code>."},{"name":"plotOptions-candlestick-dataLabels--y","fullname":"plotOptions.candlestick.dataLabels.y","title":"y","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"series<polygon>-data--y","fullname":"series<polygon>.data.y","title":"y","parent":"series<polygon>-data","isParent":false,"returnType":"Number","defaults":"null","description":"The y value of the point."},{"name":"plotOptions-column-dataLabels--y","fullname":"plotOptions.column.dataLabels.y","title":"y","parent":"plotOptions-column-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","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-series-dataLabels--y","fullname":"plotOptions.series.dataLabels.y","title":"y","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","description":"The y position offset of the label relative to the point. ","deprecated":false},{"name":"xAxis-plotLines-label--y","fullname":"xAxis.plotLines.label.y","title":"y","parent":"xAxis-plotLines-label","isParent":false,"returnType":"Number","defaults":"","description":"Vertical position of the text baseline relative to the alignment. Default varies by orientation.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/xaxis/plotlines/\" target=\"_blank\">Plot line on Y axis</a>"},{"name":"yAxis","fullname":"yAxis","title":"yAxis","isParent":true,"description":"<p>The Y axis or value axis. In case of multiple axes, the yAxis\r\n\tnode is an array of configuration objects.</p>\r\n\t<p>See <a class=\"internal\" href=\"#axis.object\">the Axis object</a> for programmatic\r\n\taccess to the axis.</p>","deprecated":false},{"name":"series<ohlc>--yAxis","fullname":"series<ohlc>.yAxis","title":"yAxis","parent":"series<ohlc>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<column>--yAxis","fullname":"series<column>.yAxis","title":"yAxis","parent":"series<column>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<arearange>--yAxis","fullname":"series<arearange>.yAxis","title":"yAxis","parent":"series<arearange>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<areaspline>--yAxis","fullname":"series<areaspline>.yAxis","title":"yAxis","parent":"series<areaspline>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<spline>--yAxis","fullname":"series<spline>.yAxis","title":"yAxis","parent":"series<spline>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<columnrange>--yAxis","fullname":"series<columnrange>.yAxis","title":"yAxis","parent":"series<columnrange>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<line>--yAxis","fullname":"series<line>.yAxis","title":"yAxis","parent":"series<line>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<area>--yAxis","fullname":"series<area>.yAxis","title":"yAxis","parent":"series<area>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<areasplinerange>--yAxis","fullname":"series<areasplinerange>.yAxis","title":"yAxis","parent":"series<areasplinerange>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<flags>--yAxis","fullname":"series<flags>.yAxis","title":"yAxis","parent":"series<flags>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"navigator--yAxis","fullname":"navigator.yAxis","title":"yAxis","parent":"navigator","isParent":false,"returnType":"Object","defaults":"","description":"Options for the navigator Y axis. Available options are the same as any y axis, documented at <a class=\"internal\" href=\"#yAxis\">yAxis</a>. Default series options for the navigator yAxis are:\n<pre>yAxis: {\n\tgridLineWidth: 0,\n\tstartOnTick: false,\n\tendOnTick: false,\n\tminPadding: 0.1,\n\tmaxPadding: 0.1,\n\tlabels: {\n\t\tenabled: false\n\t},\n\ttitle: {\n\t\ttext: null\n\t},\n\ttickWidth: 0\n}</pre>"},{"name":"series<candlestick>--yAxis","fullname":"series<candlestick>.yAxis","title":"yAxis","parent":"series<candlestick>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<scatter>--yAxis","fullname":"series<scatter>.yAxis","title":"yAxis","parent":"series<scatter>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<polygon>--yAxis","fullname":"series<polygon>.yAxis","title":"yAxis","parent":"series<polygon>","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","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 <a href=\"#yAxis.id\">axis id</a> or the index of the axis in the yAxis array, with 0 being the first.","deprecated":false},{"name":"series<areasplinerange>-dataLabels--yHigh","fullname":"series<areasplinerange>.dataLabels.yHigh","title":"yHigh","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--yHigh","fullname":"series<columnrange>.dataLabels.yHigh","title":"yHigh","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","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":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--yHigh","fullname":"series<arearange>.dataLabels.yHigh","title":"yHigh","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"-6","since":"1.2.0","description":"Y offset of the higher data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<areasplinerange>-dataLabels--yLow","fullname":"series<areasplinerange>.dataLabels.yLow","title":"yLow","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<arearange>-dataLabels--yLow","fullname":"series<arearange>.dataLabels.yLow","title":"yLow","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"series<columnrange>-dataLabels--yLow","fullname":"series<columnrange>.dataLabels.yLow","title":"yLow","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"16","since":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","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":"1.2.0","description":"Y offset of the lower data labels relative to the point value.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/arearange-datalabels/\" target=\"_blank\">Data labels on range series</a>","seeAlso":"","deprecated":false},{"name":"plotOptions-ohlc-dataLabels--zIndex","fullname":"plotOptions.ohlc.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-ohlc-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-areaspline-dataLabels--zIndex","fullname":"plotOptions.areaspline.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-areaspline-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-plotBands--zIndex","fullname":"yAxis.plotBands.zIndex","title":"zIndex","parent":"yAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","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.","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":"1.2.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<flags>--zIndex","fullname":"series<flags>.zIndex","title":"zIndex","parent":"series<flags>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<polygon>--zIndex","fullname":"series<polygon>.zIndex","title":"zIndex","parent":"series<polygon>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"xAxis-plotLines--zIndex","fullname":"xAxis.plotLines.zIndex","title":"zIndex","parent":"xAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The z index of the plot line within the chart."},{"name":"series<column>-dataLabels--zIndex","fullname":"series<column>.dataLabels.zIndex","title":"zIndex","parent":"series<column>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<area>-dataLabels--zIndex","fullname":"series<area>.dataLabels.zIndex","title":"zIndex","parent":"series<area>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<scatter>-dataLabels--zIndex","fullname":"series<scatter>.dataLabels.zIndex","title":"zIndex","parent":"series<scatter>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<arearange>-dataLabels--zIndex","fullname":"series<arearange>.dataLabels.zIndex","title":"zIndex","parent":"series<arearange>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<candlestick>--zIndex","fullname":"series<candlestick>.zIndex","title":"zIndex","parent":"series<candlestick>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","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":"1.2.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":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"yAxis-plotLines--zIndex","fullname":"yAxis.plotLines.zIndex","title":"zIndex","parent":"yAxis-plotLines","isParent":false,"returnType":"Number","defaults":"null","description":"The z index of the plot line within the chart."},{"name":"series<areasplinerange>-dataLabels--zIndex","fullname":"series<areasplinerange>.dataLabels.zIndex","title":"zIndex","parent":"series<areasplinerange>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-polygon-dataLabels--zIndex","fullname":"plotOptions.polygon.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-polygon-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-candlestick-dataLabels--zIndex","fullname":"plotOptions.candlestick.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-candlestick-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-scatter-dataLabels--zIndex","fullname":"plotOptions.scatter.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-scatter-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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":"1.2.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":"1.2.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<area>--zIndex","fullname":"series<area>.zIndex","title":"zIndex","parent":"series<area>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<line>--zIndex","fullname":"series<line>.zIndex","title":"zIndex","parent":"series<line>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<ohlc>--zIndex","fullname":"series<ohlc>.zIndex","title":"zIndex","parent":"series<ohlc>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<flags>-dataLabels--zIndex","fullname":"series<flags>.dataLabels.zIndex","title":"zIndex","parent":"series<flags>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<areaspline>-dataLabels--zIndex","fullname":"series<areaspline>.dataLabels.zIndex","title":"zIndex","parent":"series<areaspline>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<scatter>--zIndex","fullname":"series<scatter>.zIndex","title":"zIndex","parent":"series<scatter>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","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":"1.2.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-flags-dataLabels--zIndex","fullname":"plotOptions.flags.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-flags-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<column>--zIndex","fullname":"series<column>.zIndex","title":"zIndex","parent":"series<column>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<arearange>--zIndex","fullname":"series<arearange>.zIndex","title":"zIndex","parent":"series<arearange>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<candlestick>-dataLabels--zIndex","fullname":"series<candlestick>.dataLabels.zIndex","title":"zIndex","parent":"series<candlestick>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-series-dataLabels--zIndex","fullname":"plotOptions.series.dataLabels.zIndex","title":"zIndex","parent":"plotOptions-series-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<spline>-dataLabels--zIndex","fullname":"series<spline>.dataLabels.zIndex","title":"zIndex","parent":"series<spline>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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":"1.2.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<spline>--zIndex","fullname":"series<spline>.zIndex","title":"zIndex","parent":"series<spline>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<polygon>-dataLabels--zIndex","fullname":"series<polygon>.dataLabels.zIndex","title":"zIndex","parent":"series<polygon>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<columnrange>-dataLabels--zIndex","fullname":"series<columnrange>.dataLabels.zIndex","title":"zIndex","parent":"series<columnrange>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<columnrange>--zIndex","fullname":"series<columnrange>.zIndex","title":"zIndex","parent":"series<columnrange>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","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":"1.2.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<line>-dataLabels--zIndex","fullname":"series<line>.dataLabels.zIndex","title":"zIndex","parent":"series<line>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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-crosshair--zIndex","fullname":"xAxis.crosshair.zIndex","title":"zIndex","parent":"xAxis-crosshair","isParent":false,"returnType":"Number","defaults":"2","since":"2.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.","deprecated":false},{"name":"series<areasplinerange>--zIndex","fullname":"series<areasplinerange>.zIndex","title":"zIndex","parent":"series<areasplinerange>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"xAxis-plotBands--zIndex","fullname":"xAxis.plotBands.zIndex","title":"zIndex","parent":"xAxis-plotBands","isParent":false,"returnType":"Number","defaults":"null","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.","deprecated":false},{"name":"yAxis-crosshair--zIndex","fullname":"yAxis.crosshair.zIndex","title":"zIndex","parent":"yAxis-crosshair","isParent":false,"returnType":"Number","defaults":"2","since":"2.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.","deprecated":false},{"name":"series<areaspline>--zIndex","fullname":"series<areaspline>.zIndex","title":"zIndex","parent":"series<areaspline>","isParent":false,"returnType":"Number","defaults":"","values":"","since":"","description":"Define the visual z index of the series.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex-default/\" target=\"_blank\">With no z index, the series defined last are on top</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-zindex/\" target=\"_blank\">with a z index, the series with the highest z index is on top</a>.","seeAlso":"","deprecated":false},{"name":"series<ohlc>-dataLabels--zIndex","fullname":"series<ohlc>.dataLabels.zIndex","title":"zIndex","parent":"series<ohlc>-dataLabels","isParent":false,"returnType":"Number","defaults":"6","values":"","since":"1.2.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<area>--zoneAxis","fullname":"series<area>.zoneAxis","title":"zoneAxis","parent":"series<area>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-areasplinerange--zoneAxis","fullname":"plotOptions.areasplinerange.zoneAxis","title":"zoneAxis","parent":"plotOptions-areasplinerange","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-polygon--zoneAxis","fullname":"plotOptions.polygon.zoneAxis","title":"zoneAxis","parent":"plotOptions-polygon","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-candlestick--zoneAxis","fullname":"plotOptions.candlestick.zoneAxis","title":"zoneAxis","parent":"plotOptions-candlestick","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-flags--zoneAxis","fullname":"plotOptions.flags.zoneAxis","title":"zoneAxis","parent":"plotOptions-flags","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-columnrange--zoneAxis","fullname":"plotOptions.columnrange.zoneAxis","title":"zoneAxis","parent":"plotOptions-columnrange","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<column>--zoneAxis","fullname":"series<column>.zoneAxis","title":"zoneAxis","parent":"series<column>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-area--zoneAxis","fullname":"plotOptions.area.zoneAxis","title":"zoneAxis","parent":"plotOptions-area","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<polygon>--zoneAxis","fullname":"series<polygon>.zoneAxis","title":"zoneAxis","parent":"series<polygon>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-scatter--zoneAxis","fullname":"plotOptions.scatter.zoneAxis","title":"zoneAxis","parent":"plotOptions-scatter","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-line--zoneAxis","fullname":"plotOptions.line.zoneAxis","title":"zoneAxis","parent":"plotOptions-line","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-areaspline--zoneAxis","fullname":"plotOptions.areaspline.zoneAxis","title":"zoneAxis","parent":"plotOptions-areaspline","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-series--zoneAxis","fullname":"plotOptions.series.zoneAxis","title":"zoneAxis","parent":"plotOptions-series","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<scatter>--zoneAxis","fullname":"series<scatter>.zoneAxis","title":"zoneAxis","parent":"series<scatter>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<columnrange>--zoneAxis","fullname":"series<columnrange>.zoneAxis","title":"zoneAxis","parent":"series<columnrange>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<areasplinerange>--zoneAxis","fullname":"series<areasplinerange>.zoneAxis","title":"zoneAxis","parent":"series<areasplinerange>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-arearange--zoneAxis","fullname":"plotOptions.arearange.zoneAxis","title":"zoneAxis","parent":"plotOptions-arearange","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-ohlc--zoneAxis","fullname":"plotOptions.ohlc.zoneAxis","title":"zoneAxis","parent":"plotOptions-ohlc","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<areaspline>--zoneAxis","fullname":"series<areaspline>.zoneAxis","title":"zoneAxis","parent":"series<areaspline>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<ohlc>--zoneAxis","fullname":"series<ohlc>.zoneAxis","title":"zoneAxis","parent":"series<ohlc>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<flags>--zoneAxis","fullname":"series<flags>.zoneAxis","title":"zoneAxis","parent":"series<flags>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<arearange>--zoneAxis","fullname":"series<arearange>.zoneAxis","title":"zoneAxis","parent":"series<arearange>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<spline>--zoneAxis","fullname":"series<spline>.zoneAxis","title":"zoneAxis","parent":"series<spline>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-column--zoneAxis","fullname":"plotOptions.column.zoneAxis","title":"zoneAxis","parent":"plotOptions-column","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-spline--zoneAxis","fullname":"plotOptions.spline.zoneAxis","title":"zoneAxis","parent":"plotOptions-spline","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<candlestick>--zoneAxis","fullname":"series<candlestick>.zoneAxis","title":"zoneAxis","parent":"series<candlestick>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"series<line>--zoneAxis","fullname":"series<line>.zoneAxis","title":"zoneAxis","parent":"series<line>","isParent":false,"returnType":"String","defaults":"y","since":"2.1.0","description":"Defines the Axis on which the zones are applied.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-zoneaxis-x/\" target=\"_blank\">Zones on the X-Axis</a>","seeAlso":"<a href=\"#plotOption.series.zones\">zones</a>","deprecated":false},{"name":"plotOptions-areaspline-zones","fullname":"plotOptions.areaspline.zones","title":"zones","parent":"plotOptions-areaspline","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<areaspline>-zones","fullname":"series<areaspline>.zones","title":"zones","parent":"series<areaspline>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-candlestick-zones","fullname":"plotOptions.candlestick.zones","title":"zones","parent":"plotOptions-candlestick","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-column-zones","fullname":"plotOptions.column.zones","title":"zones","parent":"plotOptions-column","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<arearange>-zones","fullname":"series<arearange>.zones","title":"zones","parent":"series<arearange>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<polygon>-zones","fullname":"series<polygon>.zones","title":"zones","parent":"series<polygon>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-flags-zones","fullname":"plotOptions.flags.zones","title":"zones","parent":"plotOptions-flags","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-arearange-zones","fullname":"plotOptions.arearange.zones","title":"zones","parent":"plotOptions-arearange","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<spline>-zones","fullname":"series<spline>.zones","title":"zones","parent":"series<spline>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-ohlc-zones","fullname":"plotOptions.ohlc.zones","title":"zones","parent":"plotOptions-ohlc","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-area-zones","fullname":"plotOptions.area.zones","title":"zones","parent":"plotOptions-area","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<ohlc>-zones","fullname":"series<ohlc>.zones","title":"zones","parent":"series<ohlc>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-spline-zones","fullname":"plotOptions.spline.zones","title":"zones","parent":"plotOptions-spline","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<scatter>-zones","fullname":"series<scatter>.zones","title":"zones","parent":"series<scatter>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<column>-zones","fullname":"series<column>.zones","title":"zones","parent":"series<column>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<columnrange>-zones","fullname":"series<columnrange>.zones","title":"zones","parent":"series<columnrange>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-scatter-zones","fullname":"plotOptions.scatter.zones","title":"zones","parent":"plotOptions-scatter","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<line>-zones","fullname":"series<line>.zones","title":"zones","parent":"series<line>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<candlestick>-zones","fullname":"series<candlestick>.zones","title":"zones","parent":"series<candlestick>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-polygon-zones","fullname":"plotOptions.polygon.zones","title":"zones","parent":"plotOptions-polygon","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-areasplinerange-zones","fullname":"plotOptions.areasplinerange.zones","title":"zones","parent":"plotOptions-areasplinerange","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<area>-zones","fullname":"series<area>.zones","title":"zones","parent":"series<area>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<areasplinerange>-zones","fullname":"series<areasplinerange>.zones","title":"zones","parent":"series<areasplinerange>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-series-zones","fullname":"plotOptions.series.zones","title":"zones","parent":"plotOptions-series","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-columnrange-zones","fullname":"plotOptions.columnrange.zones","title":"zones","parent":"plotOptions-columnrange","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"series<flags>-zones","fullname":"series<flags>.zones","title":"zones","parent":"series<flags>","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"plotOptions-line-zones","fullname":"plotOptions.line.zones","title":"zones","parent":"plotOptions-line","isParent":true,"returnType":"Array","since":"2.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 <code>zoneAxis</code> option.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/series/color-zones-simple/\" target=\"_blank\">Color zones</a>","seeAlso":"<a href=\"#plotOption.series.zoneAxis\">zoneAxis</a>","deprecated":false},{"name":"chart--zoomType","fullname":"chart.zoomType","title":"zoomType","parent":"chart","isParent":false,"returnType":"String","defaults":"\"\"","values":"[null, \"x\", \"y\", \"xy\"]","description":"Decides in what dimensions the user can zoom by dragging the mouse. Can be one of <code>x</code>, <code>y</code> or <code>xy</code>.","demo":"<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/basic-line/\" target=\"_blank\">None by default</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/zoomtype-x/\" target=\"_blank\">x</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/zoomtype-y/\" target=\"_blank\">y</a>,\r\n\t\t\t<a href=\"http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/chart/zoomtype-xy/\" target=\"_blank\">xy</a>","deprecated":false}];
