package options
- Alphabetic
- Public
- Protected
Package Members
- package histogram
- package histogram2d
Type Members
- sealed trait Anchor extends AnyRef
Used to anchor the legend in place.
- 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.
- trait ErrorBar extends Component
This specifies the behaviour of an error bar.
- 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.
- 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.
- 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.
- 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.
- case class XError(mode: ErrorMode, visible: Boolean = true, value: Opt[Double] = Blank, array: Opt[List[Double]] = Empty) extends ErrorBar with Product with Serializable
- 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
- case object AUTO extends Anchor with Product with Serializable
Automatically positions the legend.
- case object CENTER extends Anchor with Product with Serializable
Positions the legend in the center.
- case object CONSTANT extends ErrorMode with Product with Serializable
The error bar length corresponds to a constant value.
- case object DATA extends ErrorMode with Product with Serializable
The error bar length corresponds the value set by the user.
- case object LEFT extends Anchor with Product with Serializable
Positions the legend to the left.
- case object PERCENT extends ErrorMode with Product with Serializable
The error bar length corresponds to a percentage of the underlying data.
- case object RIGHT extends Anchor with Product with Serializable
Positions the legend to the right.
- case object SQRT extends ErrorMode with Product with Serializable
The error bar length corresponds to the square root of the underlying data.
This is the API documentation for Picta, a graphing library for Scala.
More detailed documentation about using the library can be found at https://acse-fk4517.github.io/picta-docs/.
Click on the following link to get started with the API docs: https://acse-fk4517.github.io/picta-docs/pages/api/org/carbonateresearch/picta/index.html