/usr/share/doc/libghc-chart-doc/html/Graphics-Rendering-Chart.html is in libghc-chart-doc 1.8.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Graphics.Rendering.Chart</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script src="file:///usr/share/javascript/mathjax/MathJax.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();setSynopsis("mini_Graphics-Rendering-Chart.html");};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="src/Graphics-Rendering-Chart.html">Source</a></li><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">Chart-1.8.1: A library for generating 2D Charts and Plots</p></div><div id="content"><div id="module-header"><table class="info"><tr><th>Copyright</th><td>(c) Tim Docker 2006-2013</td></tr><tr><th>License</th><td>BSD-style (see chart/COPYRIGHT)</td></tr><tr><th>Safe Haskell</th><td>None</td></tr><tr><th>Language</th><td>Haskell98</td></tr></table><p class="caption">Graphics.Rendering.Chart</p></div><div id="description"><p class="caption">Description</p><div class="doc"><p>A framework for creating 2D charts in Haskell.</p><p>For the simplest API, see the <a href="Graphics-Rendering-Chart-Easy.html">Graphics.Rendering.Chart.Easy</a>
module.</p><p>When more control is required, understanding the various data types
is necessary. The basic model is that you define a value
representing a chart to be displayed (eg. a <code><a href="Graphics-Rendering-Chart-Layout.html#t:Layout">Layout</a></code>), and then
convert it to a <code><a href="Graphics-Rendering-Chart-Renderable.html#t:Renderable">Renderable</a></code> by applying <code><a href="Graphics-Rendering-Chart-Renderable.html#v:toRenderable">toRenderable</a></code>. This
<code><a href="Graphics-Rendering-Chart-Renderable.html#t:Renderable">Renderable</a></code> is then actually output by calling a function in an
appropriate graphics backend, eg <code>renderableToFile</code>.</p><p>Currently, there are three types of charts:</p><ul><li><code><a href="Graphics-Rendering-Chart-Layout.html#t:Layout">Layout</a></code> is a standard XY chart</li><li><code><a href="Graphics-Rendering-Chart-Layout.html#t:LayoutLR">LayoutLR</a></code> is an XY chart with independent left
and right axes</li><li><code><a href="Graphics-Rendering-Chart-Plot-Pie.html#t:PieLayout">PieLayout</a></code> is a pie chart</li></ul><p><code><a href="Graphics-Rendering-Chart-Layout.html#t:Layout">Layout</a></code> and <code><a href="Graphics-Rendering-Chart-Layout.html#t:LayoutLR">LayoutLR</a></code> charts can be stacked vertically using
the <code><a href="Graphics-Rendering-Chart-Layout.html#t:StackedLayouts">StackedLayouts</a></code> type.</p><p><code><a href="Graphics-Rendering-Chart-Renderable.html#t:Renderable">Renderable</a></code>s can be composed in arbitrary ways using the
<a href="Graphics-Rendering-Chart-Grid.html">Graphics.Rendering.Chart.Grid</a> module.</p><p>Many of the record structure involved in the API have a large
number of fields. <code>Lens</code>es are provided to access each field. Also,
for each record type, there is generally a default value, which can
be accessed through the <code>def</code> value of the <code>Default</code> typeclass.</p></div></div><div id="interface"><h1>Documentation</h1><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Geometry.html">Graphics.Rendering.Chart.Geometry</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Drawing.html">Graphics.Rendering.Chart.Drawing</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Renderable.html">Graphics.Rendering.Chart.Renderable</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Layout.html">Graphics.Rendering.Chart.Layout</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Axis.html">Graphics.Rendering.Chart.Axis</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Plot.html">Graphics.Rendering.Chart.Plot</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Legend.html">Graphics.Rendering.Chart.Legend</a></p></div><div class="top"><p class="src">module <a href="Graphics-Rendering-Chart-Backend-Types.html">Graphics.Rendering.Chart.Backend.Types</a></p></div></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.17.2</p></div></body></html>
|