Chart-1.9.5: A library for generating 2D Charts and Plots
Copyright(c) Tim Docker 2006 2014
LicenseBSD-style (see chart/COPYRIGHT)
Safe HaskellNone
LanguageHaskell98

Graphics.Rendering.Chart.Plot.FillBetween

Contents

Description

Plots that fill the area between two lines.

Synopsis

Documentation

data PlotFillBetween x y #

Value specifying a plot filling the area between two sets of Y coordinates, given common X coordinates.

Instances

Instances details
ToPlot PlotFillBetween # 
Instance details

Defined in Graphics.Rendering.Chart.Plot.FillBetween

Methods

toPlot :: PlotFillBetween x y -> Plot x y #

Default (PlotFillBetween x y) # 
Instance details

Defined in Graphics.Rendering.Chart.Plot.FillBetween

Methods

def :: PlotFillBetween x y #

Accessors

These accessors are generated by template haskell

plot_fillbetween_title :: forall x y f. Functor f => (String -> f String) -> PlotFillBetween x y -> f (PlotFillBetween x y) #

plot_fillbetween_style :: forall x y f. Functor f => (FillStyle -> f FillStyle) -> PlotFillBetween x y -> f (PlotFillBetween x y) #

plot_fillbetween_values :: forall x1 y1 x2 y2 f. Functor f => ([(x1, (y1, y1))] -> f [(x2, (y2, y2))]) -> PlotFillBetween x1 y1 -> f (PlotFillBetween x2 y2) #