plots-0.1.0.2: Diagrams based plotting library.

Copyright(C) 2016 Christopher Chalmers
LicenseBSD-style (see the file LICENSE)
MaintainerChristopher Chalmers
Stabilityexperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Plots.Axis.Title

Description

The title used for a plot.

Synopsis

Documentation

data Title b v n Source #

Instances

(Renderable (Text n) b, TypeableFloat n) => Default (Title b V2 n) Source # 

Methods

def :: Title b V2 n #

HasPlacement (Title b v n) Source # 
HasGap (Title b v n) Source # 

Methods

gap :: Lens' (Title b v n) (N (Title b v n)) Source #

HasVisibility (Title b v n) Source # 

Methods

visible :: Lens' (Title b v n) Bool Source #

hidden :: Lens' (Title b v n) Bool Source #

HasTitle (Title b v n) b Source # 

Methods

title :: Lens' (Title b v n) (Title b (V (Title b v n)) (N (Title b v n))) Source #

titleText :: Lens' (Title b v n) String Source #

titleStyle :: Lens' (Title b v n) (Style (V (Title b v n)) (N (Title b v n))) Source #

titlePlacement :: Lens' (Title b v n) Placement Source #

titleGap :: Lens' (Title b v n) (N (Title b v n)) Source #

type V (Title b v n) Source # 
type V (Title b v n) = v
type N (Title b v n) Source # 
type N (Title b v n) = n

class HasTitle a b | a -> b where Source #

Minimal complete definition

title

Methods

title :: Lens' a (Title b (V a) (N a)) Source #

titleText :: Lens' a String Source #

The text used for the title. If the string is empty, no title is drawn.

Default is ""

titleStyle :: Lens' a (Style (V a) (N a)) Source #

The style applied to the title.

Default is mempty.

titlePlacement :: Lens' a Placement Source #

The placement of the title against the axis.

Default is mempty.

titleGap :: Lens' a (N a) Source #

The gap between the axis and the title.

Default is mempty.

Instances

HasTitle (Title b v n) b Source # 

Methods

title :: Lens' (Title b v n) (Title b (V (Title b v n)) (N (Title b v n))) Source #

titleText :: Lens' (Title b v n) String Source #

titleStyle :: Lens' (Title b v n) (Style (V (Title b v n)) (N (Title b v n))) Source #

titlePlacement :: Lens' (Title b v n) Placement Source #

titleGap :: Lens' (Title b v n) (N (Title b v n)) Source #

HasTitle (Axis b c n) b Source # 

Methods

title :: Lens' (Axis b c n) (Title b (V (Axis b c n)) (N (Axis b c n))) Source #

titleText :: Lens' (Axis b c n) String Source #

titleStyle :: Lens' (Axis b c n) (Style (V (Axis b c n)) (N (Axis b c n))) Source #

titlePlacement :: Lens' (Axis b c n) Placement Source #

titleGap :: Lens' (Axis b c n) (N (Axis b c n)) Source #

drawTitle :: TypeableFloat n => BoundingBox V2 n -> Title b V2 n -> QDiagram b V2 n Any Source #

Render the title and place it around the bounding box.