Trait

com.highstock.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. def addPlotBand(options: Object = ???): Unit

    Permalink

    Add a plot band after render time.

    Add a plot band after render time.

    options

    A configuration object consisting of the same members as options.xAxis.plotBands

  5. def addPlotLine(options: Object = ???): Unit

    Permalink

    Add a plot line after render time.

    Add a plot line after render time.

    options

    A configuration object consisting of the same members as options.xAxis.plotLines

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  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 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>

  13. def hasOwnProperty(v: String): Boolean

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Object
  21. def removePlotBand(id: String = ???): Unit

    Permalink

    Remove a plot band by its id.

    Remove a plot band by its id.

    id

    The plot band's id as given in the original configuration object or in the addPlotBand method.

  22. def removePlotLine(id: String = ???): Unit

    Permalink

    Remove a plot line by its id.

    Remove a plot line by its id.

    id

    The plot line's id as given in the original configuration object or in the addPlotLine method.

  23. def setCompare(compare: String = ???, redraw: Boolean = ???): Unit

    Permalink

    Set the compare mode on all series belonging to an Y axis after render time.

    Set the compare mode on all series belonging to an Y axis after render time.

    compare

    The compare mode, can be one of null, "value" or "percent".

    Example:
    1. Set compare

    Since

    1.3

  24. def setDataGrouping(dataGrouping: Object = ???, redraw: Boolean = ???): Unit

    Permalink

    Set the data grouping and optionally redraw all series belonging to this axis.

    Set the data grouping and optionally redraw all series belonging to this axis.

    dataGrouping

    A dataGrouping configuration like shown at series.dataGrouping. Use false to disable data grouping dynamically.

    Since

    2.1.6

  25. 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. If the startOnTick and endOnTick options are true, the minimum and maximum values are rounded off to the nearest tick. To prevent this, these options can be set to false before calling setExtremes. Also, setExtremes will not allow a range lower than the minRange option, which by default is the range of five points.

    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.

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

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

    Permalink
    Definition Classes
    Object
  28. 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.

    Since

    1.3

  29. def toString(): String

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

    Since

    1.3

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

    Since

    3.0

  32. def valueOf(): Any

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. 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