Trait

com.highmaps.api

Axis

Related Doc: package api

Permalink

trait Axis extends Object

Annotations
@RawJSType() @native()
Note

JavaScript name: Axis

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Axis
  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 getExtremes(): Object

    Permalink

    Get the current extremes for the axis.

    Get the current extremes for the axis. The returned object contains:

    <dl> <dt>dataMax:</dt>

    The maximum value of the axis' associated series.

    <dt>dataMin:</dt>

    The minimum value of the axis' associated series.

    <dt>max:</dt>

    The maximum axis value, either automatic or set manually. If the max option is not set, maxPadding is 0 and endOnTick is false, this value will be the same as dataMax.

    <dt>min:</dt>

    The minimum axis value, either automatic or set manually. If the min option is not set, minPadding is 0 and startOnTick is false, this value will be the same as dataMin.
    </dl>

  11. def hasOwnProperty(v: String): Boolean

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

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

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

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

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

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

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

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

    Permalink

    Remove an axis from the chart.

    Remove an axis from the chart. Usually in maps we have only one X and one Y axis which are defined from start, so this method is not used.

    redraw

    Defaults to true. Whether to redraw the chart following the remove.

  20. def setExtremes(min: Double = ???, max: Double = ???, redraw: Boolean = ???, animation: Any = ???): Unit

    Permalink

    Set the minimum and maximum of the axes after render time.

    Set the minimum and maximum of the axes after render time. The setExtremes method will not allow a range lower than the minRange option.

    In Highmaps, the X and Y axis will preserve the aspect ratio, so zooming on one axis will affect the other.

    min

    The new minimum value

    max

    The new maximum value

    redraw

    Defaults to true. Whether to redraw the chart or wait for an explicit call to chart.redraw().

    animation

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

  21. def setTitle(title: Object = ???, redraw: Boolean = ???): Unit

    Permalink

    Update the title of the axis after render time.

    Update the title of the axis after render time. In Highmaps, X and Y axis titles are hidden by default.

    title

    The new title options on the same format as given in xAxis.title.

    redraw

    Whether to redraw the chart now or hold until the next chart.redraw()

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

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

    Permalink
    Definition Classes
    Object
  24. def toPixels(value: Double = ???, paneCoordinates: Boolean = ???): Double

    Permalink

    Translates a value in terms of axis units in to pixels within the chart.

    Translates a value in terms of axis units in to pixels within the chart.

    value

    A value in terms of axis units.

  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. def toValue(pixel: Double = ???, paneCoordinates: Boolean = ???): Double

    Permalink

    Translate a pixel position along the axis to a value in terms of axis units.

    Translate a pixel position along the axis to a value in terms of axis units.

    pixel

    A pixel position along the axis.

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

    Permalink

    Update an axis object with a new set of options.

    Update an axis object with a new set of options. The options are merged with the existing options, so only new or altered options need to be specified.

    options

    The new options that will be merged in with existing options on the axis.

  28. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  29. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped