graphviz-2009.5.1: GraphViz wrapper for Haskell.

MaintainerIvan.Miljenovic@gmail.com

Data.GraphViz.Attributes

Description

This module defines the various attributes that different parts of a GraphViz graph can have. Note that when using this module, you may need to either import it or Prelude qualified or hiding LT, as this module exports a constructor with the same name.

Documentation

data ColorType Source

Constructors

RGB 

Fields

red :: Word8
 
green :: Word8
 
blue :: Word8
 
RGBA 

Fields

red :: Word8
 
green :: Word8
 
blue :: Word8
 
alpha :: Word8
 

data DirType Source

Constructors

Forward 
Back 
Both 
None 

Instances

data PageDir Source

Constructors

BL 
BR 
TL 
TR 
RB 
RT 
LB 
LT 

Instances

data Point Source

Constructors

Point Int Int 
PointD Double Double 

Instances

newtype PointList Source

Constructors

PointList [Point] 

data Rect Source

Constructors

Rect Point Point 

Instances

data ScaleType Source

Constructors

Scale 
NoScale 
FitX 
FitY