| Safe Haskell | None | 
|---|
Graphics.Rendering.Chart.Plot.Lines
Description
Line plots
- data  PlotLines x y = PlotLines {
- _plot_lines_title :: String
 - _plot_lines_style :: LineStyle
 - _plot_lines_values :: [[(x, y)]]
 - _plot_lines_limit_values :: [[(Limit x, Limit y)]]
 
 - defaultPlotLines :: PlotLines x y
 - defaultPlotLineStyle :: LineStyle
 - hlinePlot :: String -> LineStyle -> b -> Plot a b
 - vlinePlot :: String -> LineStyle -> a -> Plot a b
 - plot_lines_title :: forall x y. Lens' (PlotLines x y) String
 - plot_lines_style :: forall x y. Lens' (PlotLines x y) LineStyle
 - plot_lines_values :: forall x y. Lens' (PlotLines x y) [[(x, y)]]
 - plot_lines_limit_values :: forall x y. Lens' (PlotLines x y) [[(Limit x, Limit y)]]
 
Documentation
Value defining a series of (possibly disjointed) lines, and a style in which to render them.
Constructors
| PlotLines | |
Fields 
  | |
defaultPlotLines :: PlotLines x ySource
Deprecated: Use the according Data.Default instance!
hlinePlot :: String -> LineStyle -> b -> Plot a bSource
Helper function to plot a single horizontal line.
vlinePlot :: String -> LineStyle -> a -> Plot a bSource
Helper function to plot a single vertical line.
plot_lines_title :: forall x y. Lens' (PlotLines x y) StringSource
plot_lines_style :: forall x y. Lens' (PlotLines x y) LineStyleSource
plot_lines_values :: forall x y. Lens' (PlotLines x y) [[(x, y)]]Source