plot-0.1.2.1: lib/Graphics/Rendering/Plot/Figure/Plot/Axis.hs
-----------------------------------------------------------------------------
-- |
-- Module : Graphics.Rendering.Plot.Figure.Plot.Axis
-- Copyright : (c) A. V. H. McPhail 2010
-- License : BSD3
--
-- Maintainer : haskell.vivian.mcphail <at> gmail <dot> com
-- Stability : provisional
-- Portability : portable
--
-- Axis
--
-----------------------------------------------------------------------------
module Graphics.Rendering.Plot.Figure.Plot.Axis (
Axis
, AxisType(..),AxisSide(..),AxisPosn(..)
, Tick(..), TickValues, GridLines
, setTicks
, setGridlines
, setTickLabelFormat
, withAxisLabel
, withAxisLine
, withGridLine
) where
-----------------------------------------------------------------------------
import Control.Monad.State
import Control.Monad.Reader
import Graphics.Rendering.Plot.Types
import Graphics.Rendering.Plot.Defaults
-----------------------------------------------------------------------------
changeLineType :: LineType -> AxisData -> AxisData
changeLineType lt ax = ax { _line_type = lt }
changeMinorTicks :: (Ticks -> Ticks) -> AxisData -> AxisData
changeMinorTicks t ax = ax { _minor_ticks = t (_minor_ticks ax) }
changeMajorTicks :: (Ticks -> Ticks) -> AxisData -> AxisData
changeMajorTicks t ax = ax { _major_ticks = t (_major_ticks ax) }
changeTickFormat :: TickFormat -> AxisData -> AxisData
changeTickFormat tf ax = ax { _tick_format = tf }
changeLabel :: (TextEntry -> TextEntry) -> AxisData -> AxisData
changeLabel f ax = ax { _label = f (_label ax) }
-----------------------------------------------------------------------------
-- | format the axis line
withAxisLine :: Line () -> Axis ()
withAxisLine m = do
l <- gets _line_type
lo <- asks _lineoptions
let lt = execLine m lo l
modify $ \s -> s { _line_type = lt }
-- | format the grid lines
withGridLine :: Tick -> Line () -> Axis ()
withGridLine t m = do
lo <- asks _lineoptions
(lt',v) <- case t of
Minor -> do
(Ticks lt'' v') <- gets _minor_ticks
return (lt'',v')
Major -> do
(Ticks lt'' v') <- gets _major_ticks
return (lt'',v')
let lt = execLine m lo lt'
case t of
Minor -> modify $ \s -> s { _minor_ticks = Ticks lt v }
Major -> modify $ \s -> s { _major_ticks = Ticks lt v }
-- | format the axis ticks
setTicks :: Tick -> TickValues -> Axis ()
setTicks Minor ts = modify $ \s -> changeMinorTicks (setTickValues ts) s
setTicks Major ts = modify $ \s -> changeMajorTicks (setTickValues ts) s
-- | should gridlines be displayed?
setGridlines :: Tick -> GridLines -> Axis ()
setGridlines Minor gl = modify $ \s -> changeMinorTicks (setTickGridlines (if gl then defaultGridLine else NoLine)) s
setGridlines Major gl = modify $ \s -> changeMajorTicks (setTickGridlines (if gl then defaultGridLine else NoLine)) s
-- | printf format that takes one argument, the tick value
setTickLabelFormat :: String -> Axis ()
setTickLabelFormat tf = modify $ \s -> changeTickFormat tf s
-- | operate on the axis label
withAxisLabel :: Text () -> Axis ()
withAxisLabel m = do
ax <- get
to <- asks _textoptions
put $ ax { _label = execText m to (_label ax) }
-----------------------------------------------------------------------------