Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data GraphOptions = GraphOptions {}
- data GraphvizOutput
- data Rose a = Rose a (Map Pid a)
- printDotGraph :: GraphOptions -> Rose [String] -> IO ()
Documentation
data GraphvizOutput #
The possible Graphviz output formats (that is, those that actually produce a file).
Bmp | Windows Bitmap Format. |
Canon | Pretty-printed Dot output with no layout performed. |
DotOutput | Reproduces the input along with layout information. |
XDot (Maybe Version) | As with |
Eps | Encapsulated PostScript. |
Fig | FIG graphics language. |
Gd | Internal GD library format. |
Gd2 | Compressed version of |
Gif | Graphics Interchange Format. |
Ico | Icon image file format. |
Imap | Server-side imagemap. |
Cmapx | Client-side imagemap. |
ImapNP | As for |
CmapxNP | As for |
Jpeg | The JPEG image format. |
Portable Document Format. | |
Plain | Simple text format. |
PlainExt | As for |
Png | Portable Network Graphics format. |
Ps | PostScript. |
Ps2 | PostScript for PDF. |
Svg | Scalable Vector Graphics format. |
SvgZ | Compressed SVG format. |
Tiff | Tagged Image File Format. |
Vml | Vector Markup Language; |
VmlZ | Compressed VML format; |
Vrml | Virtual Reality Modeling Language
format; requires nodes to have a
third dimension set via the |
WBmp | Wireless BitMap format; monochrome format usually used for mobile computing devices. |
WebP | Google's WebP format; requires Graphviz >= 2.29.0. |
Instances
Eq GraphvizOutput | |
Defined in Data.GraphViz.Commands (==) :: GraphvizOutput -> GraphvizOutput -> Bool # (/=) :: GraphvizOutput -> GraphvizOutput -> Bool # | |
Ord GraphvizOutput | |
Defined in Data.GraphViz.Commands compare :: GraphvizOutput -> GraphvizOutput -> Ordering # (<) :: GraphvizOutput -> GraphvizOutput -> Bool # (<=) :: GraphvizOutput -> GraphvizOutput -> Bool # (>) :: GraphvizOutput -> GraphvizOutput -> Bool # (>=) :: GraphvizOutput -> GraphvizOutput -> Bool # max :: GraphvizOutput -> GraphvizOutput -> GraphvizOutput # min :: GraphvizOutput -> GraphvizOutput -> GraphvizOutput # | |
Read GraphvizOutput | |
Defined in Data.GraphViz.Commands readsPrec :: Int -> ReadS GraphvizOutput # readList :: ReadS [GraphvizOutput] # | |
Show GraphvizOutput | |
Defined in Data.GraphViz.Commands showsPrec :: Int -> GraphvizOutput -> ShowS # show :: GraphvizOutput -> String # showList :: [GraphvizOutput] -> ShowS # | |
GraphvizResult GraphvizOutput | |
Defined in Data.GraphViz.Commands outputCall :: GraphvizOutput -> String |
printDotGraph :: GraphOptions -> Rose [String] -> IO () Source #