Browse Source

Add box plot doc

doc_major_dots
Florian Mounier 11 years ago
parent
commit
ff18da4cf2
  1. 18
      pages/chart_types.rst
  2. 24
      pages/home.rst

18
pages/chart_types.rst

@ -202,6 +202,24 @@ Simple Kiviat diagram:
radar_chart.add('IE', [43, 41, 59, 79, 144, 136, 34, 102])
Box plot
--------
Basic
~~~~~
Here's some whiskers:
.. pygal-code::
box_plot = pygal.Box()
box_plot.title = 'V8 benchmark results'
box_plot.add('Chrome', [6395, 8212, 7520, 7218, 12464, 1660, 2123, 8607])
box_plot.add('Firefox', [7473, 8099, 11700, 2651, 6361, 1044, 3797, 9450])
box_plot.add('Opera', [3472, 2933, 4203, 5229, 5810, 1828, 9013, 4669])
box_plot.add('IE', [43, 41, 59, 79, 144, 136, 34, 102])
Dot charts
----------

24
pages/home.rst

@ -5,7 +5,7 @@
Presentation
============
pygal 1.1.0 is a dynamic SVG charting library.
pygal 1.3.0 is a dynamic SVG charting library.
.. class:: thumbs
@ -42,25 +42,27 @@ pygal 1.1.0 is a dynamic SVG charting library.
It features various graph types:
- `Bar charts </chart_types/#bar-charts-histograms>`_
- `Bar charts </chart_types/#idbar-charts-histograms>`_
- `Line charts </chart_types/#line-charts>`_
- `Line charts </chart_types/#idline-charts>`_
- `XY charts </chart_types/#xy-charts>`_
- `XY charts </chart_types/#idxy-charts>`_
- `Pie charts </chart_types/#pies>`_
- `Pie charts </chart_types/#idpies>`_
- `Radar charts </chart_types/#radar-charts>`_
- `Radar charts </chart_types/#idradar-charts>`_
- `Dot charts </chart_types/#dot-charts>`_
- `Box plot </chart_types/#idbox-plot>`_
- `Pyramid charts </chart_types/#pyramid-charts>`_
- `Dot charts </chart_types/#iddot-charts>`_
- `Funnel charts </chart_types/#funnel-charts>`_
- `Pyramid charts </chart_types/#idpyramid-charts>`_
- `Gauge charts </chart_types/#gauge-charts>`_
- `Funnel charts </chart_types/#idfunnel-charts>`_
- `Worldmap charts </chart_types/#worldmap-charts>`_
- `Gauge charts </chart_types/#idgauge-charts>`_
- `Worldmap charts </chart_types/#idworldmap-charts>`_

Loading…
Cancel
Save