Chart-1.9.3: A library for generating 2D Charts and Plots
Copyright(c) Tim Docker 2010 2014
LicenseBSD-style (see chart/COPYRIGHT)
Safe HaskellNone
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
Enum PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Eq PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Methods

(==) :: PlotIndex -> PlotIndex -> Bool

(/=) :: PlotIndex -> PlotIndex -> Bool

Integral PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Num PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Ord PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Methods

compare :: PlotIndex -> PlotIndex -> Ordering

(<) :: PlotIndex -> PlotIndex -> Bool

(<=) :: PlotIndex -> PlotIndex -> Bool

(>) :: PlotIndex -> PlotIndex -> Bool

(>=) :: PlotIndex -> PlotIndex -> Bool

max :: PlotIndex -> PlotIndex -> PlotIndex

min :: PlotIndex -> PlotIndex -> PlotIndex

Real PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Methods

toRational :: PlotIndex -> Rational

Show PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

Methods

showsPrec :: Int -> PlotIndex -> ShowS

show :: PlotIndex -> String

showList :: [PlotIndex] -> ShowS

PlotValue PlotIndex Source # 
Instance details

Defined in Graphics.Rendering.Chart.Axis.Indexed

autoIndexAxis :: Integral i => [String] -> [i] -> AxisData 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.