Trait/Object

io.udash.wrappers.highcharts.api

Series

Related Docs: object Series | package api

Permalink

trait Series extends Object

Annotations
@RawJSType() @native()
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: BaseSeriesData[_], redraw: Boolean = js.native, shift: Boolean = js.native, animation: |[Boolean, Object] = js.native): 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.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val chart: Chart

    Permalink

    Read only.

    Read only. The chart that the series belongs to.

  7. def clone(): AnyRef

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. 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.

  15. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Definition Classes
    Object
  17. val name: String

    Permalink

    The series' name as given in the options.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  21. val options: config.series.Series

    Permalink

    Read only.

    Read only. The series' options.

  22. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  23. def remove(redraw: Boolean = js.native): 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.

  24. def select(selected: Boolean = js.native): 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.

  25. def selected: Boolean

    Permalink

    Read only.

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

  26. def setData(data: |[|[Array[Double], Array[Array[Double]]], Array[Object]], redraw: Boolean = js.native, animation: |[Boolean, Object] = js.native, updatePoints: Boolean = js.native): 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. Note the difference in behaviour when setting the same amount of points, or a different amount of points, as handled by the updatePoints parameter.

  27. def setVisible(visible: Boolean, redraw: Boolean = js.native): 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.

  28. def show(): Unit

    Permalink

    Shows the series if hidden.

    Shows the series if hidden.

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

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

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

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

    Permalink

    Read only.

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

  33. def update(options: config.series.Series, redraw: Boolean = js.native): 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 is 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.

  34. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  35. val visible: Boolean

    Permalink

    Read only.

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

  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. val xAxis: XAxis

    Permalink

    Read only.

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

  40. val yAxis: YAxis

    Permalink

    Read only.

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

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped