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

Graphics.Rendering.Chart.Axis.Indexed

Description

Calculate and render indexed axes

Synopsis

Documentation

newtype PlotIndex Source #

Type for capturing values plotted by index number (ie position in a list) rather than a numerical value.

Constructors

PlotIndex 

Fields

Instances

Instances details
PlotValue PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Enum PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Num PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Integral PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Real PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Show PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Eq PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Ord PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

autoIndexAxis' :: Integral i => Bool -> [String] -> AxisFn i Source #

Create an axis for values indexed by position. The list of strings are the labels to be used.

addIndexes :: [a] -> [(PlotIndex, a)] Source #

Augment a list of values with index numbers for plotting.