Safe Haskell | None |
---|
Functions to plot sets of points, marked in various styles.
- data PlotPoints x y = PlotPoints {
- _plot_points_title :: String
- _plot_points_style :: PointStyle
- _plot_points_values :: [(x, y)]
- defaultPlotPoints :: PlotPoints 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 | |
|
ToPlot PlotPoints | |
Default (PlotPoints x y) |
defaultPlotPoints :: PlotPoints x ySource
Deprecated: Use the according Data.Default instance!
Accessors
These accessors are generated by template haskell
plot_points_title :: forall x y. Lens' (PlotPoints x y) StringSource
plot_points_style :: forall x y. Lens' (PlotPoints x y) PointStyleSource
plot_points_values :: forall x y x y. Lens (PlotPoints x y) (PlotPoints x y) [(x, y)] [(x, y)]Source