Trait

com.highcharts.api

Series

Related Doc: package api

Permalink

trait Series extends Object

Annotations
@RawJSType() @native()
Note

JavaScript name: Series

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Series
  2. Object
  3. Any
  4. AnyRef
  5. 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 addPoint(options: Object = ???, redraw: Boolean = ???, shift: Boolean = ???, animation: Any = ???): Unit

    Permalink

    Add a point to the series after render time.

    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.

    animation

    Defaults to true. When true, the graph will be animated with default animation options. The animation can also be a configuration object with properties duration and easing.

    Since

    1.2.0

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val chart: CleanJsObject[Chart]

    Permalink

    Read only.

    Read only. The chart that the series belongs to.

    Since

    1.2.0

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val data: Array[CleanJsObject[Point]]

    Permalink

    Read only.

    Read only. An array with the series' data point objects.

    Since

    1.2.0

  9. final def eq(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hide(): Unit

    Permalink

    Hides the series if visible.

    Hides the series if visible. If the chart.ignoreHiddenSeries option is true, the chart is redrawn without this series.

    Since

    1.2.0

  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  18. val name: String

    Permalink

    The series' name as given in the options.

    The series' name as given in the options.

    Since

    1.2.0

  19. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  22. val options: Object

    Permalink

    Read only.

    Read only. The series' options.

    Since

    1.2.0

  23. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  24. def remove(redraw: Boolean = ???): Unit

    Permalink

    Remove the series from the chart.

    Remove the series from the chart.

    redraw

    Defaults to true. Whether to redraw the chart after the series is removed.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.

    Since

    1.2.0

  25. def removePoint(index: Object = ???, redraw: Boolean = ???, animation: Any = ???): Unit

    Permalink

    Remove a point from the series.

    Remove a point from the series. Unlike the Point.remove method, this can also be done on a point that is not instanciated because it is outside the view or subject to data grouping.

    index

    The index of the point in the data array.

    Since

    4.1.0

  26. def select(selected: Boolean = ???): Unit

    Permalink

    Select or unselect the series.

    Select or unselect the series. This means its selected property is set,the checkbox in the legend is toggled and when selected, the series is returned in the chart.getSelectedSeries() method.

    Since

    1.2.0

  27. val selected: Boolean

    Permalink

    Read only.

    Read only. The series' selected state as set by series.select().

    Since

    1.2.0

  28. def setData(data: Array[Any] = ???, redraw: Boolean = ???, animation: Any = ???, updatePoints: Boolean = ???): Unit

    Permalink

    Apply a new set of data to the series and optionally redraw it.

    Apply a new set of data to the series and optionally redraw it. The new data array is passed by reference (except in case of updatePoints), and may later be mutated when updating the chart data.

    Note the difference in behaviour when setting the same amount of points, or a different amount of points, as handled by the updatePoints parameter.

    Since

    1.2.0

  29. def setVisible(visible: Boolean = ???, redraw: Boolean = ???): Unit

    Permalink

    A utility function to show or hide the series with an optional redraw.

    A utility function to show or hide the series with an optional redraw.

    visible

    Whether to show or hide the series. If undefined, the visibility is toggled.

    redraw

    Defaults to true. Whether to redraw the chart after the series is altered.If doing more operations on the chart, it is a good idea to set redraw to false and call chart.redraw() after.

  30. def show(): Unit

    Permalink

    Shows the series if hidden.

    Shows the series if hidden.

    Since

    1.2.0

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. val type: String

    Permalink

    Read only.

    Read only. The series' type, like "line", "area" etc.

    Since

    1.2.0

  35. def update(options: Object = ???, redraw: Boolean = ???): Unit

    Permalink

    Update the series with a new set of options.

    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 are removed, and it is initiated from scratch. Therefore, this method is more performance expensive than some other utility methods like setData or setVisible.

    options

    New options that will be merged into the series' existing options.

    Since

    3.0

  36. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  37. val visible: Boolean

    Permalink

    Read only.

    Read only. The series' visibility state as set by series.show(), series.hide(), or the initial configuration.

    Since

    1.2.0

  38. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. val xAxis: CleanJsObject[Axis]

    Permalink

    Read only.

    Read only. The unique xAxis object associated with the series.

    Since

    1.2.0

  42. val yAxis: CleanJsObject[Axis]

    Permalink

    Read only.

    Read only. The unique yAxis object associated with the series.

    Since

    1.2.0

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped