Skip to content

Commit eff843c

Browse files
authored
Merge pull request #55 from highcharts-for-python/52-align-to-js-v11-1
PR for v.1.2.0
2 parents 63fdcc3 + 60f16c9 commit eff843c

File tree

136 files changed

+2639
-145
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+2639
-145
lines changed

CHANGES.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Release 1.2.0
2+
=========================================
3+
4+
* **ENHANCEMENT:** Align the API to **Highcharts (JS) v.11.1** (#52). In particular, this includes:
5+
6+
* Added ``AccessibilityPoint.description_format`` property.
7+
* Added support for ``.legend_symbol`` to plot options and series options.
8+
* Added ``.border_radius`` support to ``FunnelOptions`` and ``FunnelSeries``.
9+
* Added ``.interpolation`` support to ``HeatmapOptions`` and descendents.
10+
* Added ``.point_description_format`` support to ``SeriesOptions`` and descendents.
11+
* Added ``.fill_space`` support to ``TreegraphOptions`` and descendents.
12+
* Added ``.crossing`` support to axes.
13+
* Added ``.format`` support to ``Tooltip``.
14+
15+
* **ENHANCEMENT:** Added support for the inclusion of scripts based on features used in the chart (#12).
16+
* **ENHANCEMENT:** Added ``dict`` support to ``.style`` property on labels and titles.
17+
* **DOCS:** Various documentation updates and fixes.
18+
* **DEPENDENCY:** Bumped ``requests`` version for security patch.
19+
20+
------------------
21+
122
Release 1.1.1
223
=========================================
324

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ visualization library, with full integration into the robust Python ecosystem, i
1515
dataframe.
1616
* ...and even more use-case specific integrations across the broader toolkit.
1717

18-
The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.0.0.
18+
The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.1.0.
1919

2020
**COMPLETE DOCUMENTATION:** https://core-docs.highchartspython.com/en/latest/index.html
2121

@@ -71,7 +71,7 @@ Before you install, please be aware of the following "hard" dependencies:
7171
* Highcharts Core (JS) v.10.2 or higher (not technically a Python dependency, but
7272
it won't work with earlier versions of Highcharts)
7373
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
74-
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.28 or higher
74+
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
7575
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__
7676
v.1.5 or higher
7777

docs/_contributors.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
* Chris Modzelewski (`@hcpchris <https://github.com/hcpchris>`__ / `@insightindustry <https://github.com/insightindustry>`__)
2-
* Erin Modzelewski (`@EBModz <https://github.com/EBModz>`__)
2+
* Erin Modzelewski (`@EBModz <https://github.com/EBModz>`__)
3+
* Jitendra Mishra (`@jmishra01 <https://github.com/jmishra01>`__)

docs/_dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
not work properly if your rendering layer does not leverage Highcharts Core (JS).
3333

3434
* `esprima-python <https://github.com/Kronuz/esprima-python>`_ v.4.0 or higher
35-
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.28 or higher
35+
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.31 or higher
3636
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`_
3737
v.1.5 or higher
3838

383 KB
Loading

docs/api.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ Core Components
232232
- :class:`ScrollablePlotArea <highcharts_core.options.chart.scrollable_plot_area.ScrollablePlotArea>`
233233
* - :mod:`.options.chart.zooming <highcharts_core.options.chart.zooming>`
234234
- :class:`ZoomingOptions <highcharts_core.options.chart.zooming.ZoomingOptions>`
235+
:class:`MouseWheelOptions <highcharts_core.options.chart.zooming.MouseWheelOptions>`
235236
* - :mod:`.options.credits <highcharts_core.options.credits>`
236237
- :class:`Credits <highcharts_core.options.credits.Credits>`
237238
:class:`CreditStyleOptions <highcharts_core.options.credits.CreditStyleOptions>`

docs/api/options/chart/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ Sub-components
7878
- :class:`ScrollablePlotArea <highcharts_core.options.chart.scrollable_plot_area.ScrollablePlotArea>`
7979
* - :mod:`.options.chart.zooming <highcharts_core.options.chart.zooming>`
8080
- :class:`ZoomingOptions <highcharts_core.options.chart.zooming.ZoomingOptions>`
81+
:class:`MouseWheelOptions <highcharts_core.options.chart.zooming.MouseWheelOptions>`

docs/api/options/chart/zooming.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,21 @@ class: :class:`ZoomingOptions <highcharts_core.options.chart.zooming.ZoomingOpti
2626
:parts: -1
2727

2828
|
29+
30+
---------------------------
31+
32+
********************************************************************************************************************
33+
class: :class:`MouseWheelOptions <highcharts_core.options.chart.zooming.MouseWheelOptions>`
34+
********************************************************************************************************************
35+
36+
.. autoclass:: MouseWheelOptions
37+
:members:
38+
:inherited-members:
39+
40+
.. collapse:: Class Inheritance
41+
42+
.. inheritance-diagram:: MouseWheelOptions
43+
:top-classes: highcharts_core.metaclasses.HighchartsMeta, highcharts_core.metaclasses.HighchartsMeta
44+
:parts: -1
45+
46+
|

docs/api/options/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ Sub-components
161161
- :class:`ScrollablePlotArea <highcharts_core.options.chart.scrollable_plot_area.ScrollablePlotArea>`
162162
* - :mod:`.options.chart.zooming <highcharts_core.options.chart.zooming>`
163163
- :class:`ZoomingOptions <highcharts_core.options.chart.zooming.ZoomingOptions>`
164+
:class:`MouseWheelOptions <highcharts_core.options.chart.zooming.MouseWheelOptions>`
164165
* - :mod:`.options.credits <highcharts_core.options.credits>`
165166
- :class:`Credits <highcharts_core.options.credits.Credits>`
166167
:class:`CreditStyleOptions <highcharts_core.options.credits.CreditStyleOptions>`

docs/demos.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ we recommend that you click the following badge:
7474
:target: https://mybinder.org/v2/gh/highcharts-for-python/highcharts-for-python-demos/HEAD
7575
:alt: Binder: Highcharts for Python Demos
7676

77-
This will clone the `Highcharts for Python Demos <https://github.com/highcharts-for-python-demos>`__
77+
This will clone the `Highcharts for Python Demos <https://github.com/highcharts-for-python/highcharts-for-python-demos>`__
7878
source repository within a Docker image, and launch `Jupyter Lab <https://jupyter.org>`__ within that
7979
Docker container. This will then let you browse, edit, and run any of the Jupyter Notebooks contained
80-
within the `Highcharts for Python Demos <https://github.com/highcharts-for-python-demos>`__ repo.
80+
within the `Highcharts for Python Demos <https://github.com/highcharts-for-python/highcharts-for-python-demos>`__ repo.
8181

8282
How the Demos are Organized
8383
==============================
@@ -122,4 +122,4 @@ Running Demos Locally
122122
.. note::
123123

124124
You can run the demos locally by following instructions in the
125-
`Highcharts for Python Demos <https://github.com/highcharts-for-python-demos>`__ Github repo's README.
125+
`Highcharts for Python Demos <https://github.com/highcharts-for-python/highcharts-for-python-demos>`__ Github repo's README.

0 commit comments

Comments
 (0)