File: example_chart_pie.rst

package info (click to toggle)
xlsxwriter 3.1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 56,308 kB
  • sloc: python: 51,511; javascript: 7,768; sh: 284; makefile: 195; perl: 75
file content (30 lines) | stat: -rw-r--r-- 811 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.. SPDX-License-Identifier: BSD-2-Clause
   Copyright 2013-2023, John McNamara, jmcnamara@cpan.org

.. _ex_chart_pie:

Example: Pie Chart
==================

Example of creating Excel Pie charts. Chart 1 in the following example is:

.. image:: _images/chart_pie1.png
   :scale: 75 %

Chart 2 shows how to set segment colors.

It is possible to define chart colors for most types of XlsxWriter charts via
the :func:`add_series()` method. However, Pie charts are a special case since
each segment is represented as a point and as such it is necessary to assign
formatting to each point in the series.

.. image:: _images/chart_pie2.png
   :scale: 75 %

Chart 3 shows how to rotate the segments of the chart:

.. image:: _images/chart_pie3.png
   :scale: 75 %


.. literalinclude:: ../../../examples/chart_pie.py