Packages

object XAxisLabels

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

Value Members

  1. def apply(align: UndefOr[String] = js.undefined, enabled: UndefOr[Boolean] = js.undefined, format: UndefOr[String] = js.undefined, formatter: UndefOr[Function] = js.undefined, maxStaggerLines: UndefOr[Double] = js.undefined, overflow: UndefOr[String] = js.undefined, rotation: UndefOr[Double] = js.undefined, staggerLines: UndefOr[Double] = js.undefined, step: UndefOr[Double] = js.undefined, style: UndefOr[Object] = js.undefined, useHTML: UndefOr[Boolean] = js.undefined, x: UndefOr[Double] = js.undefined, y: UndefOr[Double] = js.undefined, zIndex: UndefOr[Double] = js.undefined): XAxisLabels

    align

    What part of the string the given position is anchored to. If left, the left side of the string is at the axis position. Can be one of "left", "center" or "right". Defaults to an intelligent guess based on which side of the chart the axis is on and the rotation of the label.

    enabled

    Enable or disable the axis labels.

    format

    A format string for the axis label.

    formatter

    Callback JavaScript function to format the label. The value is given by this.value. Additional properties for this are. axis, chart, isFirst and isLast. The value of the default label formatter can be retrieved by calling this.axis.defaultLabelFormatter.call(this) within the function.. . Defaults to: .

    function() {. 	return this.value;. }
    

    maxStaggerLines

    Horizontal axis only. When staggerLines is not set, maxStaggerLines defines how many lines the axis is allowed to add to automatically avoid overlapping X labels. Set to 1 to disable overlap detection.

    overflow

    How to handle overflowing labels on horizontal axis. Can be undefined or "justify". If "justify", labels will not render outside the plot area. If there is room to move it, it will be aligned to the edge, else it will be removed.

    rotation

    Rotation of the labels in degrees.

    staggerLines

    Horizontal axes only. The number of lines to spread the labels over to make room or tighter labels. .

    step

    To show only every n'th label on the axis, set the step to n. Setting the step to 2 shows every other label.

    style

    CSS styles for the label.

    useHTML

    Whether to use HTML to render the labels.

    x

    The x position offset of the label relative to the tick position on the axis.

    y

    The y position offset of the label relative to the tick position on the axis. The default makes it adapt to the font size on bottom axis.

    zIndex

    The Z index for the axis labels.