Chart-1.9.5: A library for generating 2D Charts and Plots
Copyright(c) Anton Vorontsov <anton@enomsg.org> 2014
LicenseBSD-style (see chart/COPYRIGHT)
Safe HaskellNone
LanguageHaskell98

Graphics.Rendering.Chart.Plot.Vectors

Description

Vector plots

Documentation

data PlotVectors x y #

Constructors

PlotVectors 

Fields

Instances

Instances details
Default (PlotVectors x y) # 
Instance details

Defined in Graphics.Rendering.Chart.Plot.Vectors

Methods

def :: PlotVectors x y #

data VectorStyle #

Instances

Instances details
Default VectorStyle # 
Instance details

Defined in Graphics.Rendering.Chart.Plot.Vectors

Methods

def :: VectorStyle #

plot_vectors_mapf :: forall x y f. Functor f => (((x, y) -> (x, y)) -> f ((x, y) -> (x, y))) -> PlotVectors x y -> f (PlotVectors x y) #

plot_vectors_grid :: forall x y f. Functor f => ([(x, y)] -> f [(x, y)]) -> PlotVectors x y -> f (PlotVectors x y) #

plot_vectors_title :: forall x y f. Functor f => (String -> f String) -> PlotVectors x y -> f (PlotVectors x y) #

plot_vectors_style :: forall x y f. Functor f => (VectorStyle -> f VectorStyle) -> PlotVectors x y -> f (PlotVectors x y) #

plot_vectors_scale :: forall x y f. Functor f => (Double -> f Double) -> PlotVectors x y -> f (PlotVectors x y) #

plot_vectors_values :: forall x y f. Functor f => ([((x, y), (x, y))] -> f [((x, y), (x, y))]) -> PlotVectors x y -> f (PlotVectors x y) #