File: Plot.hs

package info (click to toggle)
haskell-chart 1.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 384 kB
  • sloc: haskell: 4,680; makefile: 3
file content (38 lines) | stat: -rw-r--r-- 1,558 bytes parent folder | download | duplicates (5)
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
37
38
-----------------------------------------------------------------------------
-- |
-- 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,
    module Graphics.Rendering.Chart.Plot.Histogram,
) 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
import Graphics.Rendering.Chart.Plot.Histogram