Object/Trait

io.udash.wrappers.highcharts.config.axis

ColorAxis

Related Docs: trait ColorAxis | package axis

Permalink

object ColorAxis

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

Type Members

  1. final class DataClassColor extends AnyVal

    Permalink
  2. final class InterpolationType extends AnyVal

    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. object DataClassColor

    Permalink
  5. object InterpolationType

    Permalink
  6. def apply(className: UndefOr[String] = js.undefined, dataClassColor: UndefOr[DataClassColor] = js.undefined, dataClasses: UndefOr[Seq[ColorAxisDataClasses]] = js.undefined, endOnTick: UndefOr[Boolean] = js.undefined, events: UndefOr[ColorAxisEvents] = js.undefined, gridLineColor: UndefOr[Color] = js.undefined, gridLineDashStyle: UndefOr[DashStyle] = js.undefined, gridLineWidth: UndefOr[Double] = js.undefined, id: UndefOr[String] = js.undefined, labels: UndefOr[ColorAxisLabel] = js.undefined, lineColor: UndefOr[Color] = js.undefined, lineWidth: UndefOr[Double] = js.undefined, marker: UndefOr[ColorAxisMarker] = js.undefined, max: UndefOr[Double] = js.undefined, maxColor: UndefOr[Color] = js.undefined, maxPadding: UndefOr[Double] = js.undefined, min: UndefOr[Double] = js.undefined, minColor: UndefOr[Color] = js.undefined, minPadding: UndefOr[Double] = js.undefined, minorGridLineColor: UndefOr[Color] = js.undefined, minorGridLineDashStyle: UndefOr[String] = js.undefined, minorGridLineWidth: UndefOr[Double] = js.undefined, minorTickColor: UndefOr[Color] = js.undefined, minorTickInterval: UndefOr[|[String, Double]] = js.undefined, minorTickLength: UndefOr[Double] = js.undefined, minorTickPosition: UndefOr[String] = js.undefined, minorTickWidth: UndefOr[Double] = js.undefined, reversed: UndefOr[Boolean] = js.undefined, showFirstLabel: UndefOr[Boolean] = js.undefined, showLastLabel: UndefOr[Boolean] = js.undefined, startOnTick: UndefOr[Boolean] = js.undefined, stops: UndefOr[Seq[(Double, Color)]] = js.undefined, tickColor: UndefOr[Color] = js.undefined, tickInterval: UndefOr[Double] = js.undefined, tickLength: UndefOr[Double] = js.undefined, tickPixelInterval: UndefOr[Double] = js.undefined, tickPosition: UndefOr[String] = js.undefined, tickPositioner: UndefOr[(PositionerEvent) ⇒ Any] = js.undefined, tickPositions: UndefOr[Seq[Double]] = js.undefined, tickWidth: UndefOr[Double] = js.undefined, type: UndefOr[InterpolationType] = js.undefined): ColorAxis

    Permalink

    dataClassColor

    Determines how to set each data class' color if no individual color is set. The default value, tween, computes intermediate colors between minColor and maxColor. The other possible value, category, pulls colors from the global or chart specific colors array.

    dataClasses

    An array of data classes or ranges for the choropleth map. If none given, the color axis is scalar and values are distributed as a gradient between the minimum and maximum colors.

    endOnTick

    Whether to force the axis to end on a tick. Use this option with the maxPadding option to control the axis end.

    events

    Event handlers for the axis.

    gridLineColor

    Color of the grid lines extending from the axis across the gradient.

    gridLineDashStyle

    The dash or dot style of the grid lines. For possible values, see this demonstration.

    gridLineWidth

    The width of the grid lines extending from the axis across the gradient of a scalar color axis.

    id

    An id for the axis. This can be used after render time to get a pointer to the axis object through chart.get().

    labels

    The axis labels show the number for each tick.. For more live examples on label options, see xAxis.labels in the Highcharts API.

    lineColor

    The color of the line marking the axis itself.

    lineWidth

    The width of the line marking the axis itself.

    marker

    The triangular marker on a scalar color axis that points to the value of the hovered area. To disable the marker, set marker: null.

    max

    The maximum value of the axis in terms of map point values. If null, the max value is automatically calculated. If the endOnTick option is true, the max value might be rounded up.

    maxColor

    The color to represent the maximum of the color axis. Unless dataClasses or stops are set, the gradient ends at this value.. . If dataClasses are set, the color is based on minColor and maxColor unless a color is set for each data class, or the dataClassColor is set.

    maxPadding

    Padding of the max value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer.

    min

    The minimum value of the axis in terms of map point values. If null, the min value is automatically calculated. If the startOnTick option is true, the min value might be rounded down.

    minColor

    The color to represent the minimum of the color axis. Unless dataClasses or stops are set, the gradient starts at this value.. . If dataClasses are set, the color is based on minColor and maxColor unless a color is set for each data class, or the dataClassColor is set.

    minPadding

    Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer.

    minorGridLineColor

    Color of the minor, secondary grid lines.

    minorGridLineDashStyle

    The dash or dot style of the minor grid lines. For possible values, see this demonstration.

    minorGridLineWidth

    Width of the minor, secondary grid lines.

    minorTickColor

    Color for the minor tick marks.

    minorTickInterval

    Tick interval in scale units for the minor ticks. On a linear axis, if "auto", . the minor tick interval is calculated as a fifth of the tickInterval. If. null, minor ticks are not shown.. On logarithmic axes, the unit is the power of the value. For example, setting. the minorTickInterval to 1 puts one tick on each of 0.1, 1, 10, 100 etc. Setting. the minorTickInterval to 0.1 produces 9 ticks between 1 and 10, . 10 and 100 etc. A minorTickInterval of "auto" on a log axis results in a best guess,. attempting to enter approximately 5 minor ticks between each major tick.. . If user settings dictate minor ticks to become too dense, they don't make sense, and will be ignored to prevent performance problems.

    minorTickLength

    The pixel length of the minor tick marks.

    minorTickPosition

    The position of the minor tick marks relative to the axis line. Can be one of inside and outside.

    minorTickWidth

    The pixel width of the minor tick mark.

    reversed

    Whether to reverse the axis so that the highest number is closest to the origin. Defaults to false in a horizontal legend and true in a vertical legend, where the smallest value starts on top.

    showFirstLabel

    If labels are enabled, whether to show the first tick label.

    showLastLabel

    If labels are enabled, whether to show the last tick label.

    startOnTick

    Whether to force the axis to start on a tick. Use this option with the maxPadding option to control the axis start.

    stops

    Color stops for the gradient of a scalar color axis. Use this in cases where a linear gradient between a minColor and maxColor is not sufficient. The stops is an array of tuples, where the first item is a float between 0 and 1 assigning the relative position in the gradient, and the second item is the color.

    tickColor

    Color for the main tick marks.

    tickInterval

    The interval of the tick marks in axis units. When null, the tick interval is computed to approximately follow the tickPixelInterval.

    tickLength

    The pixel length of the main tick marks.

    tickPixelInterval

    If tickInterval is null this option sets the approximate pixel interval of the tick marks.

    tickPosition

    The position of the major tick marks relative to the axis line. Can be one of inside and outside.

    tickPositioner

    A callback function returning array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval.

    tickPositions

    An array defining where the ticks are laid out on the axis. This overrides the default behaviour of tickPixelInterval and tickInterval.

    tickWidth

    The pixel width of the major tick marks.

  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  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. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped