Trait

com.highmaps.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.

    Example:
    1. Add point

  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.

  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.

  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.

  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.

  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.

  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.

  25. def select(selected|null: 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.

  26. val selected: Boolean

    Permalink

    Read only.

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

  27. def setData(data: 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. Note that this method throws away all points and creates new ones. For updating the values of existing points, use Point.update() 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 setData.

  28. 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.

  29. def show(): Unit

    Permalink

    Shows the series if hidden.

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

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

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

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

    Permalink

    Read only.

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

  34. 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 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.

  35. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  36. val visible: Boolean

    Permalink

    Read only.

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

  37. final def wait(): Unit

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

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

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

    Permalink

    Read only.

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

  41. val yAxis: CleanJsObject[Axis]

    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