Browse Source

Merge pull request #334 from jkdf2/master

Give charts a descriptive title.
pull/335/merge
Mounier Florian 8 years ago committed by GitHub
parent
commit
67ff494399
  1. 4
      docs/index.rst

4
docs/index.rst

@ -9,6 +9,7 @@ Sexy python charting
.. pygal:: 300 200
chart = pygal.HorizontalBar(y_label_rotation=-25)
chart.title = 'Horizontal Bar Chart with Rotated Y Labels'
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('alpha', [1, 2, 3, 1, 2])
chart.add('beta', [4, 3, 0, 1, 2])
@ -16,6 +17,7 @@ Sexy python charting
.. pygal:: 300 200
chart = pygal.Line(x_label_rotation=25, fill=True, interpolate='cubic')
chart.title = 'Line Chart with Rotated X Labels, Fill, and Cubic Interpolation'
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('alpha', [1, 2, 3, 1, 2])
chart.add('beta', [4, 3, 0, 1, 2])
@ -23,6 +25,7 @@ Sexy python charting
.. pygal:: 300 200
chart = pygal.Pie()
chart.title = 'An Ordinary Pie Chart'
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('alpha', [1, 2, 3, 1, 2])
chart.add('beta', [4, 3, 0, 1, 2])
@ -30,6 +33,7 @@ Sexy python charting
.. pygal:: 300 200
chart = pygal.Radar(fill=True)
chart.title = 'Radar Chart with Fill'
chart.x_labels = 'one', 'two', 'three', 'four', 'five'
chart.add('alpha', [1, 2, 3, 1, 2])
chart.add('beta', [4, 3, 0, 1, 2])

Loading…
Cancel
Save