Copyright | Copyright (c) 2012-2015, David Sorokin <david.sorokin@gmail.com> |
---|---|
License | BSD3 |
Maintainer | David Sorokin <david.sorokin@gmail.com> |
Stability | experimental |
Safe Haskell | None |
Language | Haskell98 |
Tested with: GHC 7.8.3
The module defines a type class for rendering charts.
- class ChartRendering r where
- renderableChartExtension :: r -> String
- renderChart :: r -> (Int, Int) -> FilePath -> Renderable c -> IO (PickFn c)
Documentation
class ChartRendering r where Source
A type class of chart renderers.
renderableChartExtension :: r -> String Source
The file extension used when rendering.
renderChart :: r -> (Int, Int) -> FilePath -> Renderable c -> IO (PickFn c) Source
Generate an image file with the specified path for the given chart. The width and height are passed in the second argument to the function.