Trait

com.highmaps.api

Point

Related Doc: package api

Permalink

trait Point extends Object

Annotations
@RawJSType() @native()
Note

JavaScript name: Point

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Point
  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. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Object
  14. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  17. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  18. def remove(redraw: Boolean = ???, animation: Any = ???): 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.

  19. def select(select: Boolean = ???, accumulate: Boolean = ???): Unit

    Permalink

    Select or unselect the point.

    Select or unselect the point.

    select

    When true, the point is selected. When false, the point is unselected. When null or undefined, the selection state is toggled.

    accumulate

    When true, the selection is added to other selected points. When false, other selected points are deselected. Internally in Highcharts,selected points are accumulated on Control, Shift or Cmd clicking the point.

  20. val selected: Boolean

    Permalink

    Whether the point is selected or not.

  21. val series: CleanJsObject[Series]

    Permalink

    The series object associated with the point.

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. def update(options: Any = ???, redraw: Boolean = ???, animation: Any = ???): Unit

    Permalink

    Update the point with new values.

    Update the point with new values.

    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.

  26. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  27. val visible: Any

    Permalink

    For certain series types, like pie.

    For certain series types, like pie. Whether the Point instance is visible.

  28. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. val x: Double

    Permalink

    The x value for the point.

  32. val y: Double

    Permalink

    The y value for the point.

  33. def zoomTo(): Unit

    Permalink

    Zoom in on the point using the global animation.

    Zoom in on the point using the global animation.

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped