Object/Class

com.highcharts.config

Series

Related Docs: class Series | package config

Permalink

object Series

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Series
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(data: UndefOr[Array[|[|[Object, Array[Any]], Double]]] = js.undefined, dataParser: UndefOr[Function] = js.undefined, dataURL: UndefOr[String] = js.undefined, id: UndefOr[String] = js.undefined, index: UndefOr[Double] = js.undefined, legendIndex: UndefOr[Double] = js.undefined, name: UndefOr[String] = js.undefined, stack: UndefOr[String] = js.undefined, type: UndefOr[String] = js.undefined, xAxis: UndefOr[|[Double, String]] = js.undefined, yAxis: UndefOr[|[Double, String]] = js.undefined, zIndex: UndefOr[Double] = js.undefined): Series

    Permalink

    data

    An array of data points for the series. The points can be given in three ways:. .

    • An array 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 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:.
      data: [0, 5, 3, 5]
      
      - 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.. 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.. . Example:.
      data: [{. 	name: 'Point 1',. 	color: '#00FF00',. 	y: 0. }, {. 	name: 'Point 2',. 	color: '#FF00FF',. 	y: 5. }]
      
      Note that line series and derived types like spline and area, require data to be sorted by X because it interpolates mouse coordinates for the tooltip. Column and scatter series, where each point has its own mouse event, does not require sorting.
    dataParser

    This method is deprecated as of version 2.0. Instead, use options preprocessing as described in the docs.

    dataURL

    This method is deprecated as of version 2.0. Instead, load the data using jQuery.ajax and use options preprocessing as described in the docs.

    id

    An id for the series. This can be used after render time to get a pointer to the series object through chart.get().

    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.

    legendIndex

    The sequential index of the series in the legend. Try it: Legend in opposite order .

    name

    The name of the series as shown in the legend, tooltip etc.

    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.

    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.

    yAxis

    When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.

    zIndex

    Define the visual z index of the series.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped