Packages

package options

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package histogram
  2. package histogram2d

Type Members

  1. sealed trait Anchor extends AnyRef

    Used to anchor the legend in place.

  2. case class ColorBar(title: Opt[String] = Blank, title_side: Opt[Side] = Blank) extends Component with Product with Serializable

    This case class represents a color bar for a plot.

  3. trait ErrorBar extends Component

    This specifies the behaviour of an error bar.

  4. final case class Legend(x: Opt[Double] = Blank, y: Opt[Double] = Blank, orientation: Opt[Orientation] = Blank, xanchor: Opt[Anchor] = Blank, yanchor: Opt[Anchor] = Blank) extends Component with Product with Serializable

    This case class specifies the legend for a chart.

    This case class specifies the legend for a chart.

    x

    : x-coordinate for positioning legend on the chart.

    y

    : y-coordinate for positioning the legend on the chart.

    orientation

    : Specifies whether the legend is horizontal or vertical.

    xanchor

    : Specifies what point on the bottom of the chart to use as the x-coordinate.

    yanchor

    : Specifies what point on the side of the chart to use as the y-coordinate.

  5. final case class Line[T](width: Double = 0.5, color: Opt[List[T]] = Empty)(implicit evidence$1: Color[T]) extends Component with Product with Serializable

    This case class specifies how a line is rendered for a plot.

    This case class specifies how a line is rendered for a plot.

    width

    : Sets the line width.

    color

    : Sets the color for the line.

  6. final case class Margin(l: Opt[Int] = Blank, r: Opt[Int] = Blank, t: Opt[Int] = Blank, b: Opt[Int] = Blank) extends Component with Product with Serializable

    This case class specifies margins (in px).

    This case class specifies margins (in px). Margins can be used by a number of different components.

  7. final case class Marker[T0, T1](symbol: Opt[SymbolShape] = Blank, color: Opt[List[T0]] = Empty, line: Opt[Line[T1]] = Blank, size: Opt[List[Int]] = Empty, colorbar_options: Opt[ColorBar] = Blank)(implicit evidence$1: Color[T0], evidence$2: Color[T1]) extends Component with Product with Serializable

    Configures a Marker component for the chart.

    Configures a Marker component for the chart.

    symbol

    : Specifies what symbol the marker will use on the chart.

    color

    : Specifies the color for the symbol on a chart.

    line

    : This configures the line for the marker. This is another Line component.

  8. case class XError(mode: ErrorMode, visible: Boolean = true, value: Opt[Double] = Blank, array: Opt[List[Double]] = Empty) extends ErrorBar with Product with Serializable
  9. case class YError(mode: ErrorMode, visible: Boolean = true, value: Opt[Double] = Blank, array: Opt[List[Double]] = Empty) extends ErrorBar with Product with Serializable

Value Members

  1. case object AUTO extends Anchor with Product with Serializable

    Automatically positions the legend.

  2. case object CENTER extends Anchor with Product with Serializable

    Positions the legend in the center.

  3. case object CONSTANT extends ErrorMode with Product with Serializable

    The error bar length corresponds to a constant value.

  4. case object DATA extends ErrorMode with Product with Serializable

    The error bar length corresponds the value set by the user.

  5. case object LEFT extends Anchor with Product with Serializable

    Positions the legend to the left.

  6. case object PERCENT extends ErrorMode with Product with Serializable

    The error bar length corresponds to a percentage of the underlying data.

  7. case object RIGHT extends Anchor with Product with Serializable

    Positions the legend to the right.

  8. case object SQRT extends ErrorMode with Product with Serializable

    The error bar length corresponds to the square root of the underlying data.

Ungrouped