Copyright | (c) Tim Docker 2006 2014 |
---|---|
License | BSD-style (see chart/COPYRIGHT) |
Safe Haskell | Safe-Inferred |
Language | Haskell98 |
Functions to plot sets of points, marked in various styles.
Synopsis
- data PlotPoints x y = PlotPoints {
- _plot_points_title :: String
- _plot_points_style :: PointStyle
- _plot_points_values :: [(x, y)]
- plot_points_title :: forall x y. Lens' (PlotPoints x y) String
- plot_points_style :: forall x y. Lens' (PlotPoints x y) PointStyle
- plot_points_values :: forall x y x y. Lens (PlotPoints x y) (PlotPoints x y) [(x, y)] [(x, y)]
Documentation
data PlotPoints x y Source #
Value defining a series of datapoints, and a style in which to render them.
PlotPoints | |
|
Instances
ToPlot PlotPoints Source # | |
Defined in Graphics.Rendering.Chart.Plot.Points toPlot :: PlotPoints x y -> Plot x y Source # | |
Default (PlotPoints x y) Source # | |
Defined in Graphics.Rendering.Chart.Plot.Points def :: PlotPoints x y # |
Accessors
These accessors are generated by template haskell
plot_points_title :: forall x y. Lens' (PlotPoints x y) String Source #
plot_points_style :: forall x y. Lens' (PlotPoints x y) PointStyle Source #
plot_points_values :: forall x y x y. Lens (PlotPoints x y) (PlotPoints x y) [(x, y)] [(x, y)] Source #