Class

io.udash.wrappers.highcharts.api.Point

PointExt

Related Doc: package Point

Permalink

implicit final class PointExt extends AnyVal

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

Instance Constructors

  1. new PointExt(point: Point)

    Permalink

Value Members

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

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

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

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  7. val point: Point

    Permalink
  8. def remove(redraw: Boolean = true, animation: Animation = Animation.Enabled): Unit

    Permalink

    Remove the point from the series.

    Remove the point from the series.

    redraw

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

    animation

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

  9. def slice(sliced: Boolean, redraw: Boolean = true, animation: Animation = Animation.Enabled): Unit

    Permalink

    Slice out or set back in a pie chart slice.

    Slice out or set back in a pie chart slice. This is the default way of Highcharts to visualize that a pie point is selected.

    sliced

    When true, the point is sliced out. When false, the point is set in. When null or undefined, the sliced state is toggled.

    redraw

    Defaults to true. Whether to redraw the chart after the point is altered.

    animation

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

  10. def toString(): String

    Permalink
    Definition Classes
    Any
  11. def update(options: BaseSeriesData[_], redraw: Boolean = true, animation: Animation = Animation.Enabled): Unit

    Permalink

    Update the point with new values.

    Update the point with new values.

    options

    The point options. Point options are handled as described under the series<type>.data item for each series type. For example for a line series, if options is a single number, the point will be given that number as the main y value. If it is an array, it will be interpreted as x and y values respectively. If it is an object, advanced options are applied.

    redraw

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

    animation

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

Inherited from AnyVal

Inherited from Any

Ungrouped