File: Plot.hs

package info (click to toggle)
haskell-chart 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 336 kB
  • ctags: 1
  • sloc: haskell: 3,916; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 1,459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
-----------------------------------------------------------------------------
-- |
-- Module      :  Graphics.Rendering.Chart.Plot
-- Copyright   :  (c) Tim Docker 2006
-- License     :  BSD-style (see chart/COPYRIGHT)
--
-- Code to calculate and render various types of plots.
--

module Graphics.Rendering.Chart.Plot(
    module Graphics.Rendering.Chart.Plot.Types,
    module Graphics.Rendering.Chart.Plot.Lines,
    module Graphics.Rendering.Chart.Plot.Vectors,
    module Graphics.Rendering.Chart.Plot.Points,
    module Graphics.Rendering.Chart.Plot.FillBetween,
    module Graphics.Rendering.Chart.Plot.ErrBars,
    module Graphics.Rendering.Chart.Plot.Candle,
    module Graphics.Rendering.Chart.Plot.Bars,
    module Graphics.Rendering.Chart.Plot.Hidden,
    module Graphics.Rendering.Chart.Plot.Annotation,
    module Graphics.Rendering.Chart.Plot.AreaSpots,
    module Graphics.Rendering.Chart.Plot.Pie,
) where

import Graphics.Rendering.Chart.Plot.Types
import Graphics.Rendering.Chart.Plot.Lines
import Graphics.Rendering.Chart.Plot.Vectors
import Graphics.Rendering.Chart.Plot.Points
import Graphics.Rendering.Chart.Plot.FillBetween
import Graphics.Rendering.Chart.Plot.ErrBars
import Graphics.Rendering.Chart.Plot.Candle
import Graphics.Rendering.Chart.Plot.Bars
import Graphics.Rendering.Chart.Plot.Hidden
import Graphics.Rendering.Chart.Plot.Annotation
import Graphics.Rendering.Chart.Plot.AreaSpots
import Graphics.Rendering.Chart.Plot.Pie