Skip to content

Commit 350acb6

Browse files
committed
Updated documentation.
1 parent d1fb167 commit 350acb6

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ 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.2.0.
19+
The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.3.0.
2020

2121
**Highcharts Maps for Python** is fully integrated with the broader Python ecosystem,
22-
offerin gnative integrations with:
22+
offering native integrations with:
2323

2424
* **Jupyter Labs/Notebook**. You can now produce high-end and interactive plots and
2525
renders using the full suite of Highcharts visualization capabilities.
@@ -85,7 +85,7 @@ Before you install, please be aware of the following "hard" dependencies:
8585
* Python 3.10 or higher
8686
* Highcharts Maps (JS) v.10.2 or higher (not technically a Python dependency, but
8787
it won't work with earlier versions of Highcharts)
88-
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.3 or higher
88+
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.6 or higher
8989
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
9090
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
9191
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__
@@ -324,7 +324,7 @@ Hello World, and Basic Usage
324324
# EXAMPLE 1.
325325
# Using dicts
326326
my_chart.title = {
327-
'align': 'center'
327+
'align': 'center',
328328
'floating': True,
329329
'text': 'The Title for My Chart',
330330
'use_html': False,

docs/_dependencies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Not technically a Python dependency, but obviously **Highcharts Maps for Python**
3333
will not work properly if your rendering layer does not leverage Highcharts Maps.
3434

35-
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.3.0 or higher
35+
* `highcharts-core <https://core-docs.highchartspython.com>`_ v.1.6.0 or higher
3636
* `esprima-python <https://github.com/Kronuz/esprima-python>`_ v.4.0 or higher
3737
* `requests <https://requests.readthedocs.io/en/latest/>`_ v.2.31 or higher
3838
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`_

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Highcharts Maps for Python
3737

3838
.. sidebar:: Version Compatibility
3939

40-
**Latest Highcharts (JS) version supported:** v.11.2.0
40+
**Latest Highcharts (JS) version supported:** v.11.3.0
4141

4242
**Highcharts Maps for Python** is designed to be compatible with:
4343

@@ -319,7 +319,7 @@ Hello World, and Basic Usage
319319
# EXAMPLE 1.
320320
# Using dicts
321321
my_chart.title = {
322-
'align': 'center'
322+
'align': 'center',
323323
'floating': True,
324324
'text': 'The Title for My Chart',
325325
'use_html': False,

docs/tutorials/_assembling_a_chart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ from a :class:`pandas.DataFrame <pandas:pandas.DataFrame>`,
1818
1919
# From a Numpy ndarray
2020
21-
my_chart = Chart.from_array(data = as_ndarray, series_type = 'line')
21+
my_chart = Chart.from_array(as_ndarray, series_type = 'line')
2222
2323
# From a Python dict
2424

docs/tutorials/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ or Python :class:`dict <python:dict>`:
9292
df = pandas.DataFrame(my_iterable, columns=['x', 'y'])
9393
9494
# As a Numpy ndarray
95-
as_ndarray = numpy.as_ndarray(my_iterable)
95+
as_ndarray = numpy.asarray(my_iterable)
9696
9797
# As a Python dict
9898
as_dict = {'x': x[0], 'y': x[1] for x in my_iterable}

0 commit comments

Comments
 (0)