gnuplot-0.3.3.1: 2D and 3D plots using gnuplot

Graphics.Gnuplot.Frame.OptionSet

Synopsis

Documentation

data T graph Source

deflt :: T graphSource

The default options contain what we expect as default value in gnuplot. We need an entry for every option that cannot be reset by unset.

add :: T -> [String] -> T graph -> T graphSource

Add an option with arguments as plain strings. This is very flexible, but not very safe. Use it only as fall-back, if there is no specific setter function in Graphics.Gnuplot.Frame.OptionSet.

remove :: T -> T graph -> T graphSource

Remove an option.

size :: C graph => Double -> Double -> T graph -> T graphSource

title :: C graph => String -> T graph -> T graphSource

xRange :: C graph => (Double, Double) -> T graph -> T graphSource

yRange :: C graph => (Double, Double) -> T graph -> T graphSource

xLabel :: C graph => String -> T graph -> T graphSource

yLabel :: C graph => String -> T graph -> T graphSource