Safe Haskell | None |
---|
Graphics.Rendering.Chart.Plot
Description
- data Plot = Plot {
- plot_render :: PointMapFn -> CRender ()
- plot_render_legend :: Rect -> CRender ()
- plot_all_points :: [Point]
- class ToPlot a where
- data PlotPoints = PlotPoints {}
- data PlotErrBars = PlotErrBars {}
- data PlotLines = PlotLines {}
- data PlotFillBetween = PlotFillBetween {}
- data ErrPoint = ErrPoint {}
- defaultPlotLineStyle :: CairoLineStyle
- defaultPlotPoints :: PlotPoints
- defaultPlotErrBars :: PlotErrBars
- defaultPlotFillBetween :: PlotFillBetween
- defaultPlotLines :: PlotLines
Documentation
Interface to control plotting on a 2D area.
Constructors
Plot | |
Fields
|
a type class abstracting the conversion of a value to a Plot.
data PlotPoints Source
Value defining a series of datapoints, and a style in which to render them
Constructors
PlotPoints | |
Fields |
Instances
data PlotErrBars Source
Value defining a series of error intervals, and a style in which to render them
Constructors
PlotErrBars | |
Instances
Value defining a series of (possibly disjointed) lines, and a style in which to render them
Constructors
PlotLines | |
Fields
|
data PlotFillBetween Source
Value specifying a plot filling the area between two sets of Y coordinates, given common X coordinates.
Constructors
PlotFillBetween | |
Fields |
Instances
Value for holding a point with associated error bounds for each axis.