Skip to content

Commit 4176e85

Browse files
authored
Merge pull request #24 from highcharts-for-python/develop
PR for v.1.2.0
2 parents 8a8378c + 31808bd commit 4176e85

Some content is hidden

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

48 files changed

+1097
-63
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Release 1.2.0
2+
=========================================
3+
4+
* **ENHANCEMENT:** Align the API to **Highcharts (JS) v.11.1** (#21). In particular, this includes:
5+
6+
* Changes inherited from **Highcharts Core for Python v.1.2.0**. See `here <https://core-docs.highchartspython.com/en/latest/history.html#release-1-2-0>`__.
7+
* Added ``TiledWebMapOptions`` / ``TiledWebMapSeries`` support.
8+
9+
* **ENHANCEMENT:** Added support for the inclusion of scripts based on features used in the chart (#6).
10+
* **ENHANCEMENT:** Added ``dict`` support to ``options.series.labels.SeriesLabel.style`` and ``utility_classes.data_labels.DataLabel.style``.
11+
* **BUGFIX:** Fixed de-serialization error in ``options.series.data.geometric.GeometricZData`` which
12+
prevented the population of ``.properties``.
13+
* **DOCS:** Several documentation fixes.
14+
* **DEPENDENCY:** Bumped ``requests`` version for security patch.
15+
16+
---------------------
17+
118
Release 1.1.1
219
=========================================
320

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ JavaScript data visualization library.
1616
* The **Highcharts Export Server** - enabling the programmatic creation of static
1717
(downloadable) data visualizations
1818

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

2121
**Highcharts Maps for Python** is fully integrated with the broader Python ecosystem,
2222
offerin gnative integrations with:
@@ -87,7 +87,7 @@ Before you install, please be aware of the following "hard" dependencies:
8787
it won't work with earlier versions of Highcharts)
8888
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.0 or higher
8989
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
90-
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.28 or higher
90+
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
9191
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__
9292
v.1.5 or higher
9393
* `topojson <https://mattijn.github.io/topojson/>`__ v.1.5 or higher

docs/_contributors.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* Chris Modzelewski (`@insightindustry <https://github.com/insightindustry>`_)
1+
* Chris Modzelewski (`@hcpchris <https://github.com/hcpchris>`__ / `@insightindustry <https://github.com/insightindustry>`__)

docs/_dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.0.0 or higher
3636
* `esprima-python <https://github.com/Kronuz/esprima-python>`_ v.4.0 or higher
37-
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.28 or higher
37+
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.31 or higher
3838
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`_
3939
v.1.5 or higher
4040
* `topojson <https://mattijn.github.io/topojson/>`_ v.1.5 or higher
383 KB
Loading

docs/api.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,9 @@ Core Components
412412
- :class:`SplineOptions <highcharts_maps.options.plot_options.spline.SplineOptions>`
413413
* - :mod:`.options.plot_options.sunburst <highcharts_maps.options.plot_options.sunburst>`
414414
- :class:`SunburstOptions <highcharts_maps.options.plot_options.sunburst.SunburstOptions>`
415+
* - :mod:`.options.plot_options.tiledwebmap <highcharts_maps.options.plot_options.tiledwebmap'>`
416+
- :class:`TiledWebMapOptions <highcharts_maps.options.plot_options.tiledwebmap.TiledWebMapOptions>`
417+
:class:`ProviderOptions <highcharts_maps.options.plot_options.tiledwebmap.ProviderOptions>`
415418
* - :mod:`.options.plot_options.timeline <highcharts_maps.options.plot_options.timeline>`
416419
- :class:`TimelineOptions <highcharts_maps.options.plot_options.timeline.TimelineOptions>`
417420
* - :mod:`.options.plot_options.treegraph <highcharts_maps.options.plot_options.treegraph>`
@@ -579,6 +582,8 @@ Core Components
579582
- :class:`SplineSeries <highcharts_maps.options.series.spline.SplineSeries>`
580583
* - :mod:`.options.series.sunburst <highcharts_maps.options.series.sunburst>`
581584
- :class:`SunburstSeries <highcharts_maps.options.series.sunburst.SunburstSeries>`
585+
* - :mod:`.options.series.tiledwebmap <highcharts_maps.options.series.tiledwebmap'>`
586+
- :class:`TiledWebMapSeries <highcharts_maps.options.series.tiledwebmap.TiledWebMapSeries>`
582587
* - :mod:`.options.series.timeline <highcharts_maps.options.series.timeline>`
583588
- :class:`TimelineSeries <highcharts_maps.options.series.timeline.TimelineSeries>`
584589
* - :mod:`.options.series.treegraph <highcharts_maps.options.series.treegraph>`

docs/api/options/index.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,9 @@ Sub-components
365365
- :class:`SplineOptions <highcharts_maps.options.plot_options.spline.SplineOptions>`
366366
* - :mod:`.options.plot_options.sunburst <highcharts_maps.options.plot_options.sunburst>`
367367
- :class:`SunburstOptions <highcharts_maps.options.plot_options.sunburst.SunburstOptions>`
368+
* - :mod:`.options.plot_options.tiledwebmap <highcharts_maps.options.plot_options.tiledwebmap'>`
369+
- :class:`TiledWebMapOptions <highcharts_maps.options.plot_options.tiledwebmap.TiledWebMapOptions>`
370+
:class:`ProviderOptions <highcharts_maps.options.plot_options.tiledwebmap.ProviderOptions>`
368371
* - :mod:`.options.plot_options.timeline <highcharts_maps.options.plot_options.timeline>`
369372
- :class:`TimelineOptions <highcharts_maps.options.plot_options.timeline.TimelineOptions>`
370373
* - :mod:`.options.plot_options.treegraph <highcharts_maps.options.plot_options.treegraph>`
@@ -532,6 +535,8 @@ Sub-components
532535
- :class:`SplineSeries <highcharts_maps.options.series.spline.SplineSeries>`
533536
* - :mod:`.options.series.sunburst <highcharts_maps.options.series.sunburst>`
534537
- :class:`SunburstSeries <highcharts_maps.options.series.sunburst.SunburstSeries>`
538+
* - :mod:`.options.series.tiledwebmap <highcharts_maps.options.series.tiledwebmap'>`
539+
- :class:`TiledWebMapSeries <highcharts_maps.options.series.tiledwebmap.TiledWebMapSeries>`
535540
* - :mod:`.options.series.timeline <highcharts_maps.options.series.timeline>`
536541
- :class:`TimelineSeries <highcharts_maps.options.series.timeline.TimelineSeries>`
537542
* - :mod:`.options.series.treegraph <highcharts_maps.options.series.treegraph>`

docs/api/options/plot_options/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
sonification
5252
spline
5353
sunburst
54+
tiledwebmap
5455
timeline
5556
treegraph
5657
treemap
@@ -214,6 +215,9 @@ Sub-components
214215
- :class:`SplineOptions <highcharts_maps.options.plot_options.spline.SplineOptions>`
215216
* - :mod:`.options.plot_options.sunburst <highcharts_maps.options.plot_options.sunburst>`
216217
- :class:`SunburstOptions <highcharts_maps.options.plot_options.sunburst.SunburstOptions>`
218+
* - :mod:`.options.plot_options.tiledwebmap <highcharts_maps.options.plot_options.tiledwebmap'>`
219+
- :class:`TiledWebMapOptions <highcharts_maps.options.plot_options.tiledwebmap.TiledWebMapOptions>`
220+
:class:`ProviderOptions <highcharts_maps.options.plot_options.tiledwebmap.ProviderOptions>`
217221
* - :mod:`.options.plot_options.timeline <highcharts_maps.options.plot_options.timeline>`
218222
- :class:`TimelineOptions <highcharts_maps.options.plot_options.timeline.TimelineOptions>`
219223
* - :mod:`.options.plot_options.treegraph <highcharts_maps.options.plot_options.treegraph>`
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
##########################################################################################
2+
:mod:`.tiledwebmap <highcharts_maps.options.plot_options.tiledwebmap>`
3+
##########################################################################################
4+
5+
.. contents:: Module Contents
6+
:local:
7+
:depth: 3
8+
:backlinks: entry
9+
10+
--------------
11+
12+
.. module:: highcharts_maps.options.plot_options.tiledwebmap
13+
14+
********************************************************************************************************************
15+
class: :class:`TiledWebMapOptions <highcharts_maps.options.plot_options.tiledwebmap.TiledWebMapOptions>`
16+
********************************************************************************************************************
17+
18+
.. autoclass:: TiledWebMapOptions
19+
:members:
20+
:inherited-members:
21+
22+
.. collapse:: Class Inheritance
23+
24+
.. inheritance-diagram:: TiledWebMapOptions
25+
:top-classes: highcharts_maps.metaclasses.HighchartsMeta, highcharts_core.metaclasses.HighchartsMeta
26+
:parts: -1
27+
28+
|
29+
30+
---------------------------
31+
32+
********************************************************************************************************************
33+
class: :class:`ProviderOptions <highcharts_maps.options.plot_options.tiledwebmap.ProviderOptions>`
34+
********************************************************************************************************************
35+
36+
.. autoclass:: ProviderOptions
37+
:members:
38+
:inherited-members:
39+
40+
.. collapse:: Class Inheritance
41+
42+
.. inheritance-diagram:: ProviderOptions
43+
:top-classes: highcharts_maps.metaclasses.HighchartsMeta, highcharts_core.metaclasses.HighchartsMeta
44+
:parts: -1
45+
46+
|

docs/api/options/series/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
series_generator
4747
spline
4848
sunburst
49+
tiledwebmap
4950
timeline
5051
treegraph
5152
treemap
@@ -214,6 +215,8 @@ Sub-components
214215
- :class:`SplineSeries <highcharts_maps.options.series.spline.SplineSeries>`
215216
* - :mod:`.options.series.sunburst <highcharts_maps.options.series.sunburst>`
216217
- :class:`SunburstSeries <highcharts_maps.options.series.sunburst.SunburstSeries>`
218+
* - :mod:`.options.series.tiledwebmap <highcharts_maps.options.series.tiledwebmap'>`
219+
- :class:`TiledWebMapSeries <highcharts_maps.options.series.tiledwebmap.TiledWebMapSeries>`
217220
* - :mod:`.options.series.timeline <highcharts_maps.options.series.timeline>`
218221
- :class:`TimelineSeries <highcharts_maps.options.series.timeline.TimelineSeries>`
219222
* - :mod:`.options.series.treegraph <highcharts_maps.options.series.treegraph>`

0 commit comments

Comments
 (0)