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
|
.. SPDX-License-Identifier: BSD-2-Clause
Copyright 2013-2023, John McNamara, jmcnamara@cpan.org
.. _ex_chart_date_axis:
Example: Date Axis Chart
========================
Date Category Axes are a special case of Category axes in Excel which give them
some of the properties of Values axes.
For example, Excel doesn't normally allow minimum and maximum values to be set
for category axes. However, date axes are an exception.
.. image:: _images/chart_date_axis.png
:scale: 75 %
In XlsxWriter Date Category Axes are set using the ``date_axis`` option in
:func:`set_x_axis` or :func:`set_y_axis`::
chart.set_x_axis({'date_axis': True})
If used, the ``min`` and ``max`` values should be set as Excel times or dates.
.. literalinclude:: ../../../examples/chart_date_axis.py
|