Class/Object

com.highstock.config

Navigator

Related Docs: object Navigator | package config

Permalink

class Navigator extends Object

Annotations
@RawJSType() @ScalaJSDefined()
Note

JavaScript name: navigator

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Navigator
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Navigator()

    Permalink

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. val adaptToUpdatedData: UndefOr[Boolean]

    Permalink

    Whether the navigator and scrollbar should adapt to updated data in the base X axis.

    Whether the navigator and scrollbar should adapt to updated data in the base X axis. This should be false when loading data asynchronously, to prevent circular loading.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val baseSeries: Any

    Permalink

    An integer identifying the index to use for the base series, or a string representing the id of the series.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val enabled: UndefOr[Boolean]

    Permalink

    Enable or disable the navigator.

    Enable or disable the navigator.

  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. val handles: UndefOr[CleanJsObject[NavigatorHandles]]

    Permalink

    Options for the handles for dragging the zoomed area.

    Options for the handles for dragging the zoomed area.

    Example:
    1. Colored handles

  14. def hasOwnProperty(v: String): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. val height: UndefOr[Double]

    Permalink

    The height of the navigator.

    The height of the navigator.

  17. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Definition Classes
    Object
  19. val margin: UndefOr[Double]

    Permalink

    The distance from the nearest element, the X axis or X axis labels.

    The distance from the nearest element, the X axis or X axis labels.

  20. val maskFill: UndefOr[|[String, Object]]

    Permalink

    The color of the mask covering the areas of the navigator series that are currently not visible in the main series.

    The color of the mask covering the areas of the navigator series that are currently not visible in the main series. The default color is bluish with an opacity of 0.3 to see the series below.

  21. val maskInside: UndefOr[Boolean]

    Permalink

    Whether the mask should be inside the range marking the zoomed range, or outside.

    Whether the mask should be inside the range marking the zoomed range, or outside. In Highstock 1.x it was always false.

    Since

    2.0

  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  25. val outlineColor: UndefOr[|[String, Object]]

    Permalink

    The color of the line marking the currently zoomed area in the navigator.

    The color of the line marking the currently zoomed area in the navigator.

  26. val outlineWidth: UndefOr[Double]

    Permalink

    The width of the line marking the currently zoomed area in the navigator.

    The width of the line marking the currently zoomed area in the navigator.

  27. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  28. val series: UndefOr[Object]

    Permalink

    Options for the navigator series.

    Options for the navigator series. Available options are the same as any series, documented at plotOptions and series.

    Unless data is explicitly defined on navigator.series, the data is borrowed from the first series in the chart.

    Default series options for the navigator series are:

    series: {
    	type: 'areaspline',
    	color: '#4572A7',
    	fillOpacity: 0.05,
    	dataGrouping: {
    		smoothed: true
    	},
    	lineWidth: 1,
    	marker: {
    		enabled: false
    	}
    }
    

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  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( ... )
  36. val xAxis: UndefOr[Object]

    Permalink

    Options for the navigator X axis.

    Options for the navigator X axis. Available options are the same as any X axis, documented at xAxis. Default series options for the navigator xAxis are:

    xAxis: {
        tickWidth: 0,
        lineWidth: 0,
        gridLineWidth: 1,
        tickPixelInterval: 200,
        labels: {
            align: 'left',
            style: {
                color: '#888'
            },
            x: 3,
            y: -4
        }
    }
    

  37. val yAxis: UndefOr[Object]

    Permalink

    Options for the navigator Y axis.

    Options for the navigator Y axis. Available options are the same as any y axis, documented at yAxis. Default series options for the navigator yAxis are:

    yAxis: {
    	gridLineWidth: 0,
    	startOnTick: false,
    	endOnTick: false,
    	minPadding: 0.1,
    	maxPadding: 0.1,
    	labels: {
    		enabled: false
    	},
    	title: {
    		text: null
    	},
    	tickWidth: 0
    }
    

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped