Package

scalatikz.pgf.plots

types

Permalink

package types

Visibility
  1. Public
  2. All

Type Members

  1. case class Bar(coordinates: Coordinates2D, barColor: Color, lineStyle: LineStyle, lineSize: LineSize, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, pattern: Pattern, opacity: Double, barWidth: Double, nodesNearCoords: Boolean, horizontal: Boolean) extends PGFPlot with Product with Serializable

    Permalink

    Creates 2D bars of the data in X against the corresponding values in Y.

    Creates 2D bars of the data in X against the corresponding values in Y.

    coordinates

    sequence of x, y points in the Euclidean space

    barColor

    bar color

    lineStyle

    line style

    lineSize

    line size

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    pattern

    a pattern to fill the bars

    opacity

    opacity of the bars

    barWidth

    the bars width

    nodesNearCoords

    depict nodes near coords

    horizontal

    horizontal stems extending from Y-axis to X values

  2. case class ErrorArea(coordinates: Coordinates2D, error: Coordinates2D, lineType: LineType, lineColor: Color, lineStyle: LineStyle, lineSize: LineSize, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, fillColor: Color, opacity: Double) extends PGFPlot with Product with Serializable

    Permalink

    Creates a 2D line of the data in X against the corresponding values in Y along an error area around the 2D line.

    Creates a 2D line of the data in X against the corresponding values in Y along an error area around the 2D line.

    coordinates

    sequence of X, Y points in the Euclidean space

    error

    sequence of X, Y error points

    lineType

    line type (sharp, const or smooth)

    lineColor

    line color

    lineStyle

    line style

    lineSize

    line size

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    fillColor

    color of the error area

    opacity

    opacity of the error area

  3. case class ErrorBar(coordinates: Coordinates2D, error: Coordinates2D, barColor: Color, lineStyle: LineStyle, lineSize: LineSize, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, pattern: Pattern, opacity: Double, barWidth: Double, horizontal: Boolean) extends PGFPlot with Product with Serializable

    Permalink

    Creates 2D bars of the data in X against the corresponding values in Y along vertical and/or horizontal error bars at each data point.

    Creates 2D bars of the data in X against the corresponding values in Y along vertical and/or horizontal error bars at each data point.

    coordinates

    sequence of X, Y points in the Euclidean space

    error

    sequence of X, Y error points

    barColor

    bar color

    lineStyle

    line style

    lineSize

    line size

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    pattern

    a pattern to fill the bars

    opacity

    opacity of the bars

    barWidth

    the bars width

    horizontal

    horizontal stems extending from Y-axis to X values

  4. case class ErrorLine(coordinates: Coordinates2D, error: Coordinates2D, lineType: LineType, lineColor: Color, lineStyle: LineStyle, lineSize: LineSize, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double) extends PGFPlot with Product with Serializable

    Permalink

    Creates a 2D line of the data in X against the corresponding values in Y along vertical and/or horizontal error bars at each data point.

    Creates a 2D line of the data in X against the corresponding values in Y along vertical and/or horizontal error bars at each data point.

    coordinates

    sequence of X, Y points in the Euclidean space

    error

    sequence of X, Y error points

    lineType

    line type (sharp, const or smooth)

    lineColor

    line color

    lineStyle

    line style

    lineSize

    line size

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

  5. case class ErrorScatter(coordinates: Coordinates2D, error: Coordinates2D, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double) extends PGFPlot with Product with Serializable

    Permalink

    Creates a scatter of data points along vertical and/or horizontal error bars at each data point

    Creates a scatter of data points along vertical and/or horizontal error bars at each data point

    coordinates

    sequence of X, Y points in the Euclidean space

    error

    sequence of X, Y error points

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    Note

    Scatter plot is also called a bubble plot.

  6. case class Line(coordinates: Coordinates2D, lineType: LineType, lineColor: Color, lineStyle: LineStyle, lineSize: LineSize, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, pattern: Pattern, fillColor: Option[Color], opacity: Double) extends PGFPlot with Product with Serializable

    Permalink

    Creates a 2D line of the data in X against the corresponding values in Y.

    Creates a 2D line of the data in X against the corresponding values in Y. Optionally it fills the area under the curve.

    coordinates

    sequence of X, Y points in the Euclidean space.

    lineType

    type of line (sharp, const or smooth)

    lineColor

    line color

    lineStyle

    line style

    lineSize

    line size

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    pattern

    a fill pattern for the area under the curve

    fillColor

    pattern color

    opacity

    opacity of the area under the curve

  7. case class Mesh(coordinates: Coordinates2D, lineStyle: LineStyle, lineSize: LineSize) extends PGFPlot with Product with Serializable

    Permalink

    Creates a 2D mesh line of the data in Y versus the corresponding values in X.

    Creates a 2D mesh line of the data in Y versus the corresponding values in X.

    coordinates

    sequence of x, y points in the Euclidean space

    lineStyle

    line style

    lineSize

    line size

  8. case class MeshScatter(coordinates: Coordinates2D, marker: Mark, markSize: Double) extends PGFPlot with Product with Serializable

    Permalink

    Creates a scatter mesh of data points.

    Creates a scatter mesh of data points.

    coordinates

    sequence of X, Y points in the Euclidean space

    marker

    mark style

    markSize

    mark size

    Note

    Scatter plot is also called a bubble plot.

  9. trait PGFPlot extends AnyRef

    Permalink
  10. case class Scatter(coordinates: Coordinates2D, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, nodesNearCoords: Boolean) extends PGFPlot with Product with Serializable

    Permalink

    Creates a scatter of data points.

    Creates a scatter of data points.

    coordinates

    sequence of X, Y points in the Euclidean space

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    nodesNearCoords

    depict nodes near coords

    Note

    Scatter plot is also called a bubble plot.

  11. case class Stem(coordinates: Coordinates2D, lineColor: Color, marker: Mark, markStrokeColor: Color, markFillColor: Color, markSize: Double, nodesNearCoords: Boolean, horizontal: Boolean) extends PGFPlot with Product with Serializable

    Permalink

    Creates stems of the given data extending from the X-axis to their corresponding y values.

    Creates stems of the given data extending from the X-axis to their corresponding y values. The data values along the Y-axis are indicated by marks terminating each stem.

    coordinates

    sequence of X, Y points in the Euclidean space

    lineColor

    line color

    marker

    mark style

    markStrokeColor

    mark stroke color

    markFillColor

    mark fill color

    markSize

    mark size

    nodesNearCoords

    depict nodes near coords

    horizontal

    horizontal stems extending from Y-axis to X values

    Note

    You can also create horizontal stems extending from Y-axis to X values.

Ungrouped