#Series

##Properties

Datatype Property name Property description Default Value
String Color   null
Data Data An array of data points for the series. The points can be given in three ways: <ol><li>An array of numerical values. In this case, the numberical values will be interpreted and y values, and x values will be automatically calculated, either starting at 0 and incrementing by 1, or from pointStart and pointInterval given in the plotOptions. If the axis is has categories, these will be used. This option is not available for range series. Example:<pre>data: [0, 5, 3, 5]</pre></li><li><p>An array of arrays with two values. In this case, the first value is the x value and the second is the y value. If the first value is a string, it is applied as the name of the point, and the x value is incremented following the above rules.</p><p>For range series, the arrays will be interpreted as [x, low, high]. In this cases, the X value can be skipped altogether to make use of pointStart and pointRange. Example:
data: 5, 2], [6, 3], [8, 2
  • An array of objects with named values. In this case the objects are point configuration objects as seen below.

    Range series values are given by

  • low and high.</p>Example:<pre>data: [{ name: 'Point 1', color: '#00FF00', y: 0}, { name: 'Point 2', color: '#FF00FF', y: 5}]</pre></li></ol>
    null
    String DataParser   null
    String DataURL   null
    Nullable Index The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend. null
    Nullable LegendIndex The sequential index of the series in the legend. <div class="demo">Try it: Legend in opposite order</div>. null
    String Name The name of the series as shown in the legend, tooltip etc. null
    PlotOptionsArea PlotOptionsArea   null
    PlotOptionsArearange PlotOptionsArearange   null
    PlotOptionsAreaspline PlotOptionsAreaspline   null
    PlotOptionsAreasplinerange PlotOptionsAreasplinerange   null
    PlotOptionsBar PlotOptionsBar   null
    PlotOptionsBoxplot PlotOptionsBoxplot   null
    PlotOptionsBubble PlotOptionsBubble   null
    PlotOptionsColumn PlotOptionsColumn   null
    PlotOptionsColumnrange PlotOptionsColumnrange   null
    PlotOptionsFunnel PlotOptionsFunnel   null
    PlotOptionsGauge PlotOptionsGauge   null
    PlotOptionsLine PlotOptionsLine   null
    PlotOptionsPie PlotOptionsPie   null
    PlotOptionsScatter PlotOptionsScatter   null
    PlotOptionsSeries PlotOptionsSeries   null
    PlotOptionsSpline PlotOptionsSpline   null
    PlotOptionsWaterfall PlotOptionsWaterfall   null
    String Stack 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. null
    String TooltipPointCustomFormatter   null
    Nullable Type The type of series. Can be one of area, areaspline, bar, column, line, pie, scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component. null
    String UpColor   null
    String XAxis When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first. Default: 0 null
    String YAxis When using dual or multiple x axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first. Default: 0 null

    ##Methods

    ###Equals(System.Object) Determines whether the specified System.Object is equal to the current System.Object.

    Parameters:

    Returns:

    true if the specified System.Object is equal to the current System.Object; otherwise, false.


    ###GetHashCode() Serves as a hash function for a particular type.

    Returns:

    A hash code for the current System.Object.


    ###GetType() Gets the System.Type of the current instance.

    Returns:

    The System.Type instance that represents the exact runtime type of the current instance.


    ###ToString() Returns a System.String that represents the current System.Object.

    Returns:

    A System.String that represents the current System.Object.