Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Chart Graphics.Rendering.Chart.Plot.FillBetween Value specifying a plot filling the area between two sets of Y coordinates, given common X coordinates.
PlotFillBetween :: String -> FillStyle -> Maybe LineStyle -> [(x, (y, y))] -> PlotFillBetween x yChart Graphics.Rendering.Chart.Plot.FillBetween No documentation available.
-
Chart Graphics.Rendering.Chart.Plot.Hidden Value defining some hidden x and y values. The values are not displayed, but they still affect axis scaling.
PlotHidden :: [x] -> [y] -> PlotHidden x yChart Graphics.Rendering.Chart.Plot.Hidden No documentation available.
-
Chart Graphics.Rendering.Chart.Plot.Histogram No documentation available.
-
Chart Graphics.Rendering.Chart.Plot.Histogram No documentation available.
-
Chart Graphics.Rendering.Chart.Plot.Lines Value defining a series of (possibly disjointed) lines, and a style in which to render them.
PlotLines :: String -> LineStyle -> [[(x, y)]] -> [[(Limit x, Limit y)]] -> PlotLines x yChart Graphics.Rendering.Chart.Plot.Lines No documentation available.
module Graphics.Rendering.Chart.Plot.
Pie A basic pie chart. Pie charts are handled different to other plots, in that they have their own layout, and can't be composed with other plots. A pie chart is rendered with code in the following form:
values :: [PieItem] values = [...] layout :: PieLayout layout = pie_plot ^: pie_data ^= values $ def renderable = toRenderable layout
-
Chart Graphics.Rendering.Chart.Plot.Pie No documentation available.